@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #040507;
  --bg-secondary: #0b0b0f;
  --bg-card: rgba(18, 18, 22, 0.74);
  --bg-card-hover: rgba(28, 28, 35, 0.92);

  --accent-gold: #ba9b5d;
  --accent-gold-2: #edcf9f;
  --accent-gold-dim: rgba(189, 145, 84, 0.25);
  --accent-bronze: #8b6a42;
  --accent-beige: #d4c1a0;
  --accent-white: #fdfdfd;
  --accent-silver: #ebebeb;

  --text-primary: #f9f8f2;
  --text-secondary: rgba(255, 255, 255, 0.73);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-gold: var(--accent-gold);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.35);
  --text-gold: var(--accent-gold);

  --btn-bg: var(--accent-gold);
  --btn-text: #000000;
  --btn-border: #000000;
  --btn-hover-bg: #f0c84b;
  --btn-outline-bg: #ffffff;
  --btn-outline-text: #000000;
  --btn-outline-border: #000000;
  --btn-outline-hover-bg: #f8f8f8;
  --btn-outline-hover-text: #000000;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 14px;

  --shadow-spotlight: 0 0 80px -20px rgba(206, 178, 93, 0.2);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px rgba(206, 178, 93, 0.15);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition-fast: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-med: 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-slow: 0.8s cubic-bezier(0.19, 1, 0.22, 1);

  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Outfit', 'Inter', sans-serif;

  --space-unit: 1rem;
  --space-xs: calc(var(--space-unit) * 0.25);
  --space-sm: calc(var(--space-unit) * 0.5);
  --space-md: var(--space-unit);
  --space-lg: calc(var(--space-unit) * 1.5);
  --space-xl: calc(var(--space-unit) * 2.5);
  --space-2xl: calc(var(--space-unit) * 4);
  --space-3xl: calc(var(--space-unit) * 6);

  --accent-purple: #a29bfe;
  --accent-cyan: #00cec9;
  --navbar-height: 84px;
}

.novis-verified-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 4px;
}
.novis-verified-badge i {
  font-size: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  min-height: 100vh;
}

body.novis-theme-light {
  --bg-primary: #f5f6f8;
  --bg-secondary: #ffffff;
  --bg-card: rgba(245, 246, 248, 0.85);
  --bg-card-hover: rgba(230, 232, 239, 0.95);
  --text-primary: #1a1a1f;
  --text-secondary: rgba(30, 30, 37, 0.8);
  --text-muted: rgba(30, 30, 37, 0.5);
  --glass-bg: rgba(255,255,255,0.6);
  --glass-border: rgba(160,160,170,0.4);
  --shadow-card: 0 20px 40px rgba(0,0,0,0.07);
}

body.novis-theme-dark {
  --bg-primary: #030303;
  --bg-secondary: #0a0a0c;
  --bg-card: rgba(18, 18, 22, 0.7);
  --bg-card-hover: rgba(26, 26, 34, 0.85);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.35);
}

body.en-dir {
  direction: ltr;
  font-family: var(--font-en);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 100px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  opacity: 0.8;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 20px auto 0;
  border-radius: 99px;
}

.desktop-only {
  display: flex;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ar);
  font-weight: 950;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
}

.heading-lg {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
}

.heading-md {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
}

.heading-sm {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
}

.body-lg {
  font-size: 1.125rem;
}

.body-md {
  font-size: 1rem;
}

.body-sm {
  font-size: 0.875rem;
}

.text-gold {
  color: var(--accent-gold);
}

.text-purple {
  color: var(--accent-purple);
}

.text-muted {
  color: var(--text-muted);
}

.text-red {
  color: #ff7675;
}

.text-green {
  color: #55efc4;
}

.text-cyan {
  color: var(--accent-cyan);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-primary {
  color: var(--text-primary);
}

.body-xs {
  font-size: 0.75rem;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-4,
  .grid-3,
  .grid-2,
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold-dim);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.liquid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 10% 20%, rgba(207, 175, 129, 0.28), transparent 30%),
              radial-gradient(circle at 80% 80%, rgba(20, 24, 30, 0.8), transparent 45%),
              linear-gradient(120deg, #040408 0%, #0f1015 50%, #07070b 100%);
  filter: blur(60px);
  opacity: 0.72;
  pointer-events: none;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(217, 182, 125, 0.32) 0%, transparent 68%);
  border-radius: 50%;
  animation: float-blob 18s infinite alternate;
}

.liquid-blob:nth-child(2) {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  width: 40vw;
  height: 40vw;
  right: -10%;
  top: -10%;
  animation-duration: 25s;
}

@keyframes float-blob {
  0% {
    transform: translate(-10%, -10%) scale(1);
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
  }
}

.chrome-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.15;
  background-image:
    radial-gradient(at 0% 0%, rgba(226, 192, 68, 0.15) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(255, 255, 255, 0.1) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(226, 192, 68, 0.15) 0, transparent 50%);
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  height: 68px;
  width: max-content;
  min-width: 600px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  background: #000000;
  border: 2px solid #222;
  border-radius: 100px;
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.8);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 11px 0 0 rgba(0, 0, 0, 0.8);
  border-color: #333;
}

.navbar-container {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.navbar-logo {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: scale(1.1);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

.nav-link i {
  font-size: 1rem;
  color: var(--text-muted);
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent-gold);
  background: rgba(206, 178, 93, 0.08);
  border-color: rgba(206, 178, 93, 0.15);
}

.nav-link.active i {
  color: var(--accent-gold);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-med);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--navbar-height) 0 0;
  background: rgba(11, 11, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-med);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav .nav-link {
  font-size: 1.3rem;
  padding: 12px 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 36px;
  border-radius: var(--radius-md);
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid #000000;
  position: relative;
  user-select: none;
  outline: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.btn-gold {
  background: var(--btn-bg, #c8aa68);
  color: var(--btn-text, #111);
  box-shadow: 0 6px 0 0 rgba(148, 108, 39, 0.82);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: #f0c84b;
  box-shadow: 0 8px 0 0 #8a7336;
}

.btn-gold:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 0 #8a7336;
}

.btn-outline {
  background: #fff;
  color: #000;
  box-shadow: 0 6px 0 0 #d4d4d4;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: #f8f8f8;
  box-shadow: 0 8px 0 0 #d4d4d4;
}

.btn-outline:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 0 #d4d4d4;
}

.btn-info {
  background: #55efc4;
  color: #000;
  border-color: #38b185;
  box-shadow: 0 6px 0 0 #32a372;
}

.btn-info:hover {
  transform: translateY(-2px);
  background: #4de0b6;
  box-shadow: 0 8px 0 0 #2f8f67;
}

.btn-info:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 0 #2f8f67;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-gamid-3d {
  background: linear-gradient(135deg, #ceb25d 0%, #f0c84b 50%, #8a7336 100%) !important;
  color: #000 !important;
  border: 3px solid #000 !important;
  box-shadow: 0 4px 0 0 #5d4d24, 0 8px 0 0 rgba(0, 0, 0, 0.9) !important;
  padding: 10px 24px !important;
  border-radius: 14px !important;
  font-weight: 950 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gamid-3d::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}

.btn-gamid-3d:hover::before {
  left: 100%;
}

.btn-gamid-3d:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 5px 0 0 #5d4d24, 0 12px 0 0 rgba(0, 0, 0, 0.9) !important;
  filter: brightness(1.1);
}

.btn-gamid-3d:active {
  transform: translateY(4px) !important;
  box-shadow: 0 2px 0 0 #5d4d24, 0 4px 0 0 rgba(0, 0, 0, 0.9) !important;
}

.btn-ghost:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.5);
}

.novis-dropdown {
  position: relative;
  display: inline-block;
}

.novis-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 2.5px solid #222;
  border-radius: 50px;
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-en);
  font-size: 0.85rem;
  box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.8);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  user-select: none;
}

.novis-dropdown:hover .novis-dropdown-trigger {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 0 rgba(0, 0, 0, 0.8);
  border-color: var(--accent-gold);
}

.novis-dropdown-content {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: #0a0a0f;
  border: 4px solid #000;
  outline: 2px solid #222;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 10px 0 0 rgba(0, 0, 0, 1);
  display: none;
  z-index: 2000;
  transform-origin: top left;
  animation: novisFadeIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.novis-dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.novis-dropdown:hover .novis-dropdown-content {
  display: block;
}

@keyframes novisFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all 0.2s;
  margin-bottom: 4px;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--accent-gold);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-right: 22px;
}

.dropdown-item.admin-item {
  background: linear-gradient(135deg, #ceb25d 0%, #f0c84b 100%);
  color: #000;
  margin-top: 10px;
  box-shadow: 0 4px 0 0 #5d4d24;
}

.dropdown-item.admin-item i {
  color: #000;
}

.dropdown-item.admin-item:hover {
  filter: brightness(1.1);
  padding-right: 22px;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 #5d4d24;
}

.dropdown-item.logout-item {
  color: #ff6b7a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
  padding-top: 15px;
}

.dropdown-item.logout-item i {
  color: #ff6b7a;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  box-shadow: 0 4px 0 0 currentColor;
}

.btn-sm.btn-gold {
  box-shadow: 0 4px 0 0 #8a7336;
}

.btn-sm.btn-outline {
  box-shadow: 0 4px 0 0 #d4d4d4;
}

.btn-sm:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 inherit;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.2rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #000;
  background: var(--bg-card);
  color: #fff;
  box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
}

.btn-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.5);
}

.btn-icon:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.5);
}

.novis-3d-card {
  background: var(--bg-card);
  border: 3px solid #000;
  border-radius: 24px;
  box-shadow: 0 12px 0 0 rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.novis-3d-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 0 0 rgba(0, 0, 0, 0.8), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.novis-3d-card:active {
  transform: translateY(4px);
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.8);
}

.novis-3d-badge {
  background: #000;
  border: 2px solid #222;
  border-radius: 10px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.6);
  transition: all 0.2s;
}

.novis-3d-badge i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.novis-3d-badge span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
  font-family: var(--font-en);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.novis-3d-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.6);
  border-color: var(--accent-gold);
}

.novis-panel {
  background: #08080c;
  border: 3px solid #000;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 0 0 rgba(0, 0, 0, 0.8);
  position: relative;
  margin-bottom: 40px;
}

.novis-panel:hover {
  transform: none;
}

.novis-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: #000;
  border: 2px solid #111;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}

.novis-row:hover {
  background: #0a0a0f;
  border-color: var(--accent-gold);
  transform: translateX(-5px);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.4);
}

.novis-row-content {
  display: flex;
  flex-direction: column;
}

.novis-row-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.novis-row-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.novis-row-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

.novis-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.novis-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.novis-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #222;
  border: 2px solid #000;
  transition: .4s;
  border-radius: 34px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.novis-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 2px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 4px 0 0 #d4d4d4;
  border: 1px solid #000;
}

input:checked+.novis-slider {
  background-color: var(--accent-gold);
}

input:checked+.novis-slider:before {
  transform: translateX(28px);
  box-shadow: 0 4px 0 0 #8a7336;
}

.novis-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  background: #222;
  border: 2px solid #000;
  border-radius: 10px;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.novis-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  border: 2px solid #000;
  border-radius: 50%;
  box-shadow: 0 4px 0 0 #8a7336;
  cursor: pointer;
  transition: transform 0.1s;
}

.novis-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.novis-range::-webkit-slider-thumb:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 #8a7336;
}

.card {
  background: var(--bg-card);
  border: 2px solid #000;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 0 rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.member-id-card {
  width: 100%;
  max-width: 320px;
  height: 480px;
  background: #1a1a1e;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all var(--transition-med);
  user-select: none;
  cursor: pointer;
}

.member-id-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}

.id-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.heartbeat-icon {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.8;
}

.id-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.id-card-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.id-card-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #ceb25d;
  margin-bottom: 20px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(206, 178, 93, 0.3);
}

.id-name {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-en);
}

.id-rank {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.id-card-footer {
  margin-top: auto;
}

.id-number-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}

.id-number {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-family: var(--font-en);
}

.fingerprint-icon {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 2.5rem;
  color: #fff;
  opacity: 0.4;
}

.tilt-parent {
  perspective: 1000px;
}

.tilt-child {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

.section {
  padding: var(--space-3xl) var(--space-xl);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: var(--space-md) auto 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(206, 178, 93, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 24px;
}

.liquid-text {
  font-family: var(--font-ar);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  display: inline-block;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.font-en {
  font-family: var(--font-en);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-tagline {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '✦';
  margin: 0 10px;
  opacity: 0.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.scroll-indicator .arrow {
  font-size: 1.2rem;
  color: var(--accent-gold);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.stats-section {
  background: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.stat-number {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(108, 92, 231, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition-med);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(108, 92, 231, 0.3));
  box-shadow: var(--shadow-gold);
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  flex-shrink: 0;
}

.news-card-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card-hover));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.news-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.cat-server_news {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
}

.cat-events {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-purple);
}

.cat-interviews {
  background: rgba(0, 206, 201, 0.15);
  color: var(--accent-cyan);
}

.cat-highlights {
  background: rgba(253, 121, 168, 0.15);
  color: var(--accent-pink);
}

.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--glass-border);
}

.news-featured {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  min-height: 280px;
}

.news-featured .news-card-placeholder {
  width: 300px;
  min-width: 300px;
  height: 100%;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.news-featured .news-card-body {
  padding: var(--space-xl);
}

.news-featured .news-title {
  font-size: 1.4rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.chat-container {
  background: #1a1a24;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 450px;
  display: flex;
  flex-direction: column;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-card);
  border-bottom: 1px solid var(--glass-border);
}

.chat-live-dot {
  width: 8px;
  height: 8px;
  background: #43b883;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(67, 184, 131, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(67, 184, 131, 0);
  }
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  animation: slideInMsg 0.3s ease;
}

@keyframes slideInMsg {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message:hover {
  background: rgba(255, 255, 255, 0.03);
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-info {
  flex: 1;
  min-width: 0;
}

.chat-username {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-purple-2);
  margin-bottom: 2px;
}

.chat-text {
  font-size: 0.875rem;
  color: var(--text-primary);
  word-break: break-word;
}

.chat-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.chat-channel-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.achievement-badge {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.badge-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #f0c84b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
  position: relative;
  transition: all var(--transition-med);
}

.badge-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.achievement-badge:hover .badge-circle {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.7);
}

.badge-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.badge-member {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.badge-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.member-card {
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.member-card-inner {
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-med);
  overflow: hidden;
}

.member-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  transform: rotate(45deg);
  transition: opacity var(--transition-med);
  opacity: 0;
}

.member-card:hover .member-card-inner {
  border-color: var(--accent-gold-dim);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px) rotateX(3deg);
}

.member-card:hover .member-card-inner::before {
  opacity: 1;
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border: 3px solid var(--accent-gold-dim);
  overflow: hidden;
  transition: all var(--transition-med);
}

.member-card:hover .member-avatar {
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.member-rank {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
}

.member-stats {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.member-stat {
  text-align: center;
}

.member-stat-val {
  font-weight: 800;
  color: var(--accent-gold);
  font-family: var(--font-en);
  font-size: 1.1rem;
}

.member-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.leaderboard-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.podium-item {
  text-align: center;
  flex: 1;
  max-width: 220px;
}

.podium-card {
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.podium-1 .podium-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: none;
  box-shadow: 0 -4px 30px rgba(212, 175, 55, 0.2);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.podium-2 .podium-card {
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.15), rgba(192, 192, 192, 0.03));
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-bottom: none;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.podium-3 .podium-card {
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.15), rgba(205, 127, 50, 0.03));
  border: 1px solid rgba(205, 127, 50, 0.3);
  border-bottom: none;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.podium-rank {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: var(--space-sm);
}

.podium-1 .podium-rank {
  color: var(--accent-gold);
}

.podium-2 .podium-rank {
  color: #c0c0c0;
}

.podium-3 .podium-rank {
  color: #cd7f32;
}

.podium-base {
  padding: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.podium-1 .podium-base {
  background: rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.podium-2 .podium-base {
  background: rgba(192, 192, 192, 0.15);
  color: #c0c0c0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.podium-3 .podium-base {
  background: rgba(205, 127, 50, 0.15);
  color: #cd7f32;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.lb-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-fast);
}

.lb-item:hover {
  border-color: var(--accent-gold-dim);
  background: var(--bg-card-hover);
  transform: translateX(-4px);
}

.leaderboard-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding-top: var(--space-xl);
}

.podium-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.podium-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  transition: all var(--transition-med);
  z-index: 2;
}

.podium-1 {
  transform: scale(1.1);
  z-index: 5;
}

.podium-1 .podium-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.podium-item:hover .podium-card {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
}

.podium-rank {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
}

.podium-1 .podium-rank {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.podium-base {
  margin-top: var(--space-lg);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.leaderboard-list {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lb-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-fast);
}

.lb-item:last-child {
  border-bottom: none;
}

.lb-rank {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.1rem;
  width: 40px;
  color: var(--text-muted);
}

.lb-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex-shrink: 0;
}

.lb-info {
  flex: 1;
}

.lb-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.lb-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lb-points {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-gold);
}


.activity-feed {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.activity-join {
  background: rgba(67, 184, 131, 0.15);
  color: #43b883;
}

.activity-message {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-purple);
}

.activity-news {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
}

.activity-event {
  background: rgba(0, 206, 201, 0.15);
  color: var(--accent-cyan);
}

.activity-achievement {
  background: rgba(253, 121, 168, 0.15);
  color: var(--accent-pink);
}

.activity-desc {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.activity-desc strong {
  color: var(--text-primary);
}

.activity-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-left.revealed,
.reveal-right.revealed {
  transform: translateX(0);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  direction: rtl;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-xl) 0;
  overflow-y: auto;
}

.admin-logo {
  padding: 0 var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: var(--space-lg);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-right: 3px solid transparent;
}

.admin-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.admin-nav-item.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold);
  border-right-color: var(--accent-gold);
}

.admin-nav-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.admin-content {
  margin-right: 260px;
  flex: 1;
  min-height: 100vh;
  padding: var(--space-2xl);
  background: var(--bg-primary);
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--glass-border);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.admin-stat-card {
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.admin-stat-ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.admin-stat-info {
  flex: 1;
}

.admin-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-en);
  color: var(--text-primary);
}

.admin-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-ar);
  font-weight: 950;
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 14px 22px;
  background: #000000;
  border: 2px solid #222;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-ar);
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background: #050505;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(206, 178, 93, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  padding: var(--space-md) var(--space-lg);
  text-align: right;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.table td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-success {
  background: rgba(67, 184, 131, 0.15);
  color: #43b883;
}

.badge-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.badge-danger {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.badge-info {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-purple);
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 950;
  color: var(--accent-gold);
  letter-spacing: -1px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-gold);
  transform: translateX(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.toast-container {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateX(-40px) scale(0.9);
  }
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  color: var(--text-muted);
}

.empty-state .empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  opacity: 0.4;
}

.empty-state h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  margin: var(--space-md) 0;
  opacity: 0.25;
}

.ornament-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.ornament-icon {
  font-size: 1rem;
  color: var(--accent-gold);
}

.page-header {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.5) 0%, rgba(3, 3, 3, 0.8) 100%),
    url('../img/panner_novis.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--navbar-height);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.page-item {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.page-item:hover {
  border-color: var(--accent-gold-dim);
  color: var(--accent-gold);
}

.page-item.active {
  background: var(--accent-gold);
  color: #0b0b0f;
  border-color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
  }

  .navbar {
    min-width: 0;
    width: 100%;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    top: 0;
    padding: 0 12px;
    height: var(--navbar-height);
    position: fixed;
    z-index: 1000;
  }
  .navbar:hover {
    transform: none;
  }
  .hero {
    padding-top: calc(var(--navbar-height) + 24px);
    min-height: 100vh;
    box-sizing: border-box;
  }
  .navbar-container {
    gap: 12px;
  }
  .navbar-logo {
    padding: 0 12px;
  }
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding: 60px 16px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .page-header {
    padding: 24px 16px;
    margin-bottom: 24px;
  }
  .page-header .heading-lg,
  .page-header .heading-xl {
    font-size: 1.75rem;
  }
  .card {
    padding: 20px;
    border-radius: var(--radius-md);
  }
  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }
  .form-control {
    min-height: 44px;
    padding: 12px 16px;
  }
  .hero-logo {
    font-size: 5rem;
  }

  .hero-moon {
    font-size: 4rem;
    top: 8%;
    right: 5%;
  }

  .hero-lantern {
    display: none;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .news-featured {
    flex-direction: column;
  }

  .news-featured .news-card-placeholder {
    width: 100%;
    height: 200px;
  }

  .leaderboard-podium {
    gap: var(--space-sm);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

}

@media (max-width: 480px) {
  .section {
    padding: 40px 12px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .card {
    padding: 16px;
  }
  .page-header {
    padding: 20px 12px;
  }
  .page-header .heading-lg,
  .page-header .heading-xl {
    font-size: 1.5rem;
  }
  .modal-content {
    margin: 12px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
  .novis-dropdown-content {
    min-width: 200px;
    max-width: calc(100vw - 24px);
  }
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-med);
  filter: drop-shadow(0 0 10px rgba(206, 178, 93, 0.4));
}

.navbar:hover .brand-logo {
  transform: scale(1.05) rotate(-2deg);
}

.hero-featured-img {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 40px;
  perspective: 1000px;
  max-height: 480px;
  overflow: hidden;
}

.featured-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(206, 178, 93, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform var(--transition-slow);
}

.featured-img-wrap:hover {
  transform: translateY(-5px) rotateX(2deg);
  border-color: rgba(206, 178, 93, 0.3);
}

.featured-banner {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(206, 178, 93, 0.2), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.novis-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.novis-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.novis-modal-container {
  background: linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
  width: 100%;
  max-width: 520px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8), 
              0 0 0 1px rgba(206, 178, 93, 0.1),
              inset 0 0 40px rgba(255, 255, 255, 0.02);
  overflow: hidden;
  position: relative;
  transform: scale(0.92) translateY(40px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  direction: rtl;
}

.novis-modal-overlay.active .novis-modal-container {
  transform: scale(1) translateY(0);
}

.novis-modal-header {
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.novis-modal-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold);
}

.novis-modal-header i {
  font-size: 1.8rem;
  color: var(--accent-gold);
  filter: drop-shadow(0 0 10px rgba(206, 178, 93, 0.3));
}

.novis-modal-header h3 {
  font-size: 1.4rem;
  font-weight: 950;
  color: #fff;
  margin: 0;
  letter-spacing: 1px;
}

.novis-modal-body {
  padding: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
  font-family: var(--font-ar);
}

.novis-modal-footer {
  padding: 0 40px 40px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}

.modal-btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 950;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-btn-primary {
  background: var(--accent-gold);
  color: #000;
  box-shadow: 0 10px 25px rgba(206, 178, 93, 0.2);
}

.modal-btn-primary:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.modal-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.modal-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.modal-btn:active {
  transform: scale(0.95);
}

@keyframes novisFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.novis-media-card {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  border-radius: 24px;
}

.novis-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  background: #08080c;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.novis-media-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(206, 178, 93, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.novis-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.novis-media-card:hover .novis-media-img {
  transform: scale(1.1);
}

.novis-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.novis-media-icon-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(206, 178, 93, 0.05) 0%, transparent 70%);
}

.novis-icon-old {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.15;
}.novis-media-body{padding:20px 8px 10px;display:flex;flex-direction:column;gap:12px}.novis-card-title{font-size:1.25rem;font-weight:950;color:#fff;line-height:1.4;margin:0;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color 0.3s ease}.novis-media-card:hover .novis-card-title{color:var(--accent-gold)}.novis-card-excerpt{font-size:0.88rem;color:var(--text-secondary);line-height:1.6;font-weight:600;opacity:0.8;display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.novis-card-footer{margin-top:auto;padding-top:16px;border-top:1px solid rgba(255,255,255,0.05);display:flex;align-items:center;justify-content:space-between;font-size:0.72rem;font-weight:800;color:var(--text-muted);text-transform:uppercase;letter-spacing:1px}.novis-card-footer i{color:var(--accent-gold);margin-left:6px}.novis-status-badge{position:absolute;top:15px;right:15px;z-index:10;background:rgba(0,0,0,0.7);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,0.1);padding:8px 14px;border-radius:12px;display:flex;align-items:center;gap:8px;font-size:0.7rem;font-weight:950;box-shadow:0 8px 20px rgba(0,0,0,0.4);color:#fff}.novis-status-dot{width:7px;height:7px;border-radius:50%;box-shadow:0 0 10px currentColor}.pulse-animation{animation:pulse-dot 2s infinite}@keyframes pulse-dot{0%{transform:scale(1);opacity:1}50%{transform:scale(1.4);opacity:.6}100%{transform:scale(1);opacity:1}}
.novis-media-icon { font-size: 3.5rem; color: #ceb25d; filter: drop-shadow(0 0 20px rgba(206, 178, 93, 0.3)); opacity: 0.25; transition: all 0.5s ease; } .novis-media-card:hover .novis-media-icon { opacity: 0.45; transform: scale(1.1) rotate(5deg); }

