/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --gold-dark: #b8961f;
  --gold-muted: #c9a962;
  --gold-faint: rgba(212, 175, 55, 0.1);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --black: #0d0d0d;
  --black-light: #1a1a1a;
  --black-lighter: #222222;
  --black-card: #181818;
  --charcoal: #2a2a2a;
  --charcoal-light: #333333;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-lighter: #cccccc;
  --white: #f5f0e8;
  --white-pure: #ffffff;
  --cream: #faf6ed;
  --red: #e74c3c;
  --green: #2ecc71;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-elegant: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", "Helvetica Neue", Helvetica, sans-serif;
  --header-height: 80px;
  --section-padding: 120px;
  --container-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-slower: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background: var(--gold-faint);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-text-gold {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: var(--gold-muted);
  font-weight: 500;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-text-gold:hover {
  color: var(--gold-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.preloader-ring {
  position: absolute;
  border: 2px solid transparent;
  border-radius: 50%;
  animation: preloaderSpin 1.5s linear infinite;
}

.preloader-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  border-top-color: var(--gold);
  animation-duration: 1.2s;
}

.preloader-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  border-right-color: var(--gold-muted);
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  border-bottom-color: var(--gold-light);
  animation-duration: 1s;
}

.preloader-text {
  margin-top: 60px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: preloaderFade 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderFade {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate-card {
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.age-gate-ornament-top,
.age-gate-ornament-bottom {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-gate-content {
  padding: 48px 40px;
  text-align: center;
}

.age-gate-logo {
  margin-bottom: 24px;
}

.age-gate-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.age-gate-content p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--black-light);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  animation: slideUpCookie 0.5s ease;
}

@keyframes slideUpCookie {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-icon-wrap {
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-settings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--charcoal);
}

.cookie-setting-row {
  margin-bottom: 12px;
}

.cookie-setting-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray-light);
  cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition-base);
}

.main-header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-muted),
    var(--gold),
    transparent
  );
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  gap: 2px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.logo-mark span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--gold-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.3px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  padding: 12px;
  transition: color var(--transition-fast);
  display: block;
  text-align: center;
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-cta {
  width: 100%;
  max-width: 300px;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(201, 169, 98, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero-gold-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      30deg,
      rgba(212, 175, 55, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(212, 175, 55, 0.02) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(212, 175, 55, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(212, 175, 55, 0.02) 87.5%
    ),
    linear-gradient(
      30deg,
      rgba(212, 175, 55, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(212, 175, 55, 0.02) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(212, 175, 55, 0.02) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(212, 175, 55, 0.02) 87.5%
    );
  background-size: 80px 140px;
  background-position:
    0 0,
    0 0,
    40px 70px,
    40px 70px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-faint);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  width: fit-content;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-title {
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
}

.hero-title-line:first-child {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-title-gold {
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--gold);
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-small {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--gold-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 4px;
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--charcoal);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--charcoal);
}

/* Hero Visual / Image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    opacity: 0.5;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero-image-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  animation: heroBorderRotate 20s linear infinite;
}

@keyframes heroBorderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-game-icon {
  width: 320px;
  height: 320px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 175, 55, 0.1);
}

.hero-image-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  z-index: 3;
  pointer-events: none;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  z-index: 4;
  box-shadow: var(--shadow-md);
}

.hero-float-1 {
  top: 10%;
  right: -10%;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 15%;
  left: -15%;
  animation: heroFloat 5s ease-in-out infinite 1s;
}

.hero-float-3 {
  top: 60%;
  right: -20%;
  animation: heroFloat 7s ease-in-out infinite 2s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    height: 40px;
  }
  50% {
    opacity: 1;
    height: 50px;
  }
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-muted);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
  background: var(--black-light);
  overflow: hidden;
}

.ticker-gold-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
}

.ticker-container {
  padding: 16px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.ticker-item strong {
  color: var(--gold);
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  padding: 6px 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted));
}

.divider-line:last-child {
  background: linear-gradient(90deg, var(--gold-muted), transparent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--black);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  margin-bottom: 32px;
}

.about-lead {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black-light);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.highlight-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
}

.highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border-radius: var(--radius-sm);
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-text strong {
  font-size: 0.95rem;
  color: var(--white);
}

.highlight-text span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* About Visual */
.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 420px;
}

.about-image-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-card:hover img {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(13, 13, 13, 0.4) 100%
  );
  pointer-events: none;
}

.about-img-1 {
  top: 0;
  left: 0;
  width: 70%;
  height: 280px;
  z-index: 2;
}

.about-img-2 {
  bottom: 0;
  right: 0;
  width: 70%;
  height: 280px;
  z-index: 1;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 24px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-top: 4px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: var(--section-padding) 0;
  background: var(--black-light);
  position: relative;
}

.gallery-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.gallery-item-large .gallery-image-wrap {
  min-height: 500px;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image-wrap img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(13, 13, 13, 0.8) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-overlay-content span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
}

.gallery-item-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base);
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover .gallery-item-border {
  border-color: rgba(212, 175, 55, 0.4);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--black-light);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card-inner {
  padding: 36px 28px;
  position: relative;
  z-index: 1;
}

.feature-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--gold-faint);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon-bg {
  background: rgba(212, 175, 55, 0.15);
  transform: rotate(6deg);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.06);
  line-height: 1;
  z-index: 0;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-number {
  color: rgba(212, 175, 55, 0.12);
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.counter-bg {
  position: absolute;
  inset: 0;
}

.counter-noise {
  position: absolute;
  inset: 0;
  background: var(--black-light);
}

.counter-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    linear-gradient(315deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  background: rgba(13, 13, 13, 0.5);
  transition: all var(--transition-base);
}

.counter-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
}

.counter-icon {
  margin-bottom: 16px;
}

.counter-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 8px;
}

.counter-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gold-muted);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-light);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-lighter);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-info strong {
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--black-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  transition: all var(--transition-base);
  color: var(--gold-muted);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ============================================
   SIGNUP / LEAD FORM SECTION
   ============================================ */
.signup-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.signup-bg {
  position: absolute;
  inset: 0;
}

.signup-noise {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.signup-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(212, 175, 55, 0.04) 0%,
      transparent 60%
    );
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.signup-content .section-tag {
  display: block;
  text-align: left;
  width: fit-content;
  margin-bottom: 16px;
}

.signup-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.signup-desc {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.signup-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-lighter);
}

.signup-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  padding-top: 16px;
  border-top: 1px solid var(--charcoal);
}

/* Form Card */
.signup-form-card {
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.signup-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-muted),
    var(--gold)
  );
}

.form-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 0.9rem;
  color: var(--gray);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-lighter);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap svg {
  position: absolute;
  left: 14px;
  pointer-events: none;
  z-index: 1;
}

.input-wrap input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  background: var(--black);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.input-wrap input::placeholder {
  color: var(--gray);
}

.input-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-wrap input.error {
  border-color: var(--red);
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 18px;
}

/* Checkbox */
.form-consent {
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--charcoal-light);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid var(--black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.checkbox-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Submit Button Loader */
.spin {
  animation: spinAnim 1s linear infinite;
}

@keyframes spinAnim {
  to {
    transform: rotate(360deg);
  }
}

/* Success Message */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.form-error-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--red);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--section-padding) 0;
  background: var(--black-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--black);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.contact-card-icon {
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-link {
  display: block;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 8px;
  word-break: break-all;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  padding: 80px 0;
  background: var(--black);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.trust-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.trust-item svg {
  margin-bottom: 16px;
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--black);
  position: relative;
}

.footer-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-muted),
    var(--gold),
    transparent
  );
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: color var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: var(--charcoal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-address {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

.footer-bottom-right {
  text-align: right;
}

.footer-bottom-right p {
  font-size: 0.78rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
}

/* ============================================
   SOCIAL PROOF NOTIFICATION
   ============================================ */
.social-proof-notif {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 200;
  animation: notifSlideIn 0.5s ease;
}

@keyframes notifSlideIn {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notif-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--black-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.notif-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border-radius: 50%;
}

.notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-text strong {
  font-size: 0.85rem;
  color: var(--gold);
}

.notif-text span {
  font-size: 0.75rem;
  color: var(--gray);
}

.notif-close {
  flex-shrink: 0;
  padding: 4px;
  color: var(--gray);
  transition: color var(--transition-fast);
}

.notif-close:hover {
  color: var(--white);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 60%
    ),
    var(--black);
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.legal-hero-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.legal-section {
  padding: 60px 0 var(--section-padding);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--cream);
  color: #333;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 36px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content li strong {
  color: #2a2a2a;
}

.legal-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.legal-footer-note p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-description {
    max-width: 600px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-frame {
    width: 300px;
    height: 300px;
  }

  .hero-game-icon {
    width: 260px;
    height: 260px;
  }

  .hero-floating-card {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-row: span 1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .signup-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .signup-content .section-tag,
  .signup-content .section-title {
    text-align: center;
  }

  .signup-content .section-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .signup-desc {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --header-height: 70px;
  }

  .hero-title-line:first-child {
    font-size: 2rem;
  }

  .hero-title-gold {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-large .gallery-image-wrap {
    min-height: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-right {
    text-align: center;
  }

  .signup-form-card {
    padding: 28px 20px;
  }

  .legal-content {
    padding: 40px 24px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .age-gate-content {
    padding: 36px 24px;
  }

  .social-proof-notif {
    left: 12px;
    right: 12px;
    bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-image-frame {
    width: 240px;
    height: 240px;
  }

  .hero-game-icon {
    width: 200px;
    height: 200px;
  }

  .about-image-stack {
    height: 320px;
  }

  .about-img-1,
  .about-img-2 {
    width: 80%;
    height: 220px;
  }

  .about-badge {
    width: 100px;
    height: 100px;
    padding: 16px;
  }

  .about-badge-number {
    font-size: 1.3rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter-number {
    font-size: 2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .main-header,
  .cookie-banner,
  .age-gate-overlay,
  .preloader,
  .back-to-top,
  .social-proof-notif,
  .social-proof-ticker,
  .hero-scroll-indicator {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .legal-content {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
