/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Core Colors */
  --primary: #4ade80;
  --primary-dark: #22c55e;
  --primary-light: #86efac;
  --secondary: #818cf8;
  --secondary-dark: #6366f1;
  --secondary-light: #a5b4fc;
  --accent: #c084fc;
  --accent-dark: #a855f7;
  --accent-light: #d8b4fe;

  /* Background Colors */
  --bg-deep: #030712;
  --bg-dark: #0a0f1e;
  --bg-card: #111827;
  --bg-card-hover: #1a2340;
  --bg-surface: #0f172a;

  /* Text Colors */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #4ade80;

  /* Gradients */
  --gradient-aurora: linear-gradient(
    135deg,
    #4ade80 0%,
    #818cf8 50%,
    #c084fc 100%
  );
  --gradient-aurora-soft: linear-gradient(
    135deg,
    rgba(74, 222, 128, 0.15) 0%,
    rgba(129, 140, 248, 0.15) 50%,
    rgba(192, 132, 252, 0.15) 100%
  );
  --gradient-glow-green: radial-gradient(
    ellipse,
    rgba(74, 222, 128, 0.3) 0%,
    transparent 70%
  );
  --gradient-glow-purple: radial-gradient(
    ellipse,
    rgba(192, 132, 252, 0.3) 0%,
    transparent 70%
  );
  --gradient-glow-blue: radial-gradient(
    ellipse,
    rgba(129, 140, 248, 0.3) 0%,
    transparent 70%
  );

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;

  /* Sizing */
  --nav-height: 72px;
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s var(--ease-out-quart);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow-green:
    0 0 30px rgba(74, 222, 128, 0.3), 0 0 60px rgba(74, 222, 128, 0.1);
  --shadow-glow-purple:
    0 0 30px rgba(192, 132, 252, 0.3), 0 0 60px rgba(192, 132, 252, 0.1);
  --shadow-glow-blue:
    0 0 30px rgba(129, 140, 248, 0.3), 0 0 60px rgba(129, 140, 248, 0.1);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 50px rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

::selection {
  background: rgba(74, 222, 128, 0.3);
  color: var(--text-primary);
}

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

.text-gradient {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-aurora);
  color: var(--bg-deep);
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
  color: var(--bg-deep);
}

.btn-glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition-medium);
}

.btn-glow:hover::after {
  opacity: 0.6;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(74, 222, 128, 0.15);
  padding: 20px 24px;
  animation: slideUpCookie 0.6s var(--ease-out-expo);
}

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

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.cookie-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2px;
}

.cookie-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-desc a {
  color: var(--primary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--bg-deep);
  font-weight: 600;
}

.cookie-btn-accept:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-necessary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-settings-panel {
  max-width: var(--container-max);
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-setting-row strong {
  font-size: 0.9rem;
}

.cookie-setting-row p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

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

.cookie-settings-panel .cookie-btn {
  margin-top: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-medium);
}

.main-nav.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74, 222, 128, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  z-index: 1001;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-aurora);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg-deep);
  position: relative;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--gradient-aurora);
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.nav-link {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.nav-cta {
  background: var(--gradient-aurora);
  color: var(--bg-deep) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-medium);
  transform-origin: center;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

/* Aurora Background */
.aurora-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.aurora-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0.5;
  filter: blur(80px);
}

.aurora-layer-1 {
  top: -60%;
  left: -50%;
  background: radial-gradient(
    ellipse 60% 40% at 30% 40%,
    rgba(74, 222, 128, 0.4) 0%,
    transparent 60%
  );
  animation: auroraShift1 12s ease-in-out infinite alternate;
}

.aurora-layer-2 {
  top: -40%;
  left: -30%;
  background: radial-gradient(
    ellipse 50% 50% at 60% 30%,
    rgba(129, 140, 248, 0.35) 0%,
    transparent 60%
  );
  animation: auroraShift2 15s ease-in-out infinite alternate;
}

.aurora-layer-3 {
  top: -50%;
  left: -20%;
  background: radial-gradient(
    ellipse 45% 35% at 70% 50%,
    rgba(192, 132, 252, 0.3) 0%,
    transparent 60%
  );
  animation: auroraShift3 18s ease-in-out infinite alternate;
}

@keyframes auroraShift1 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(5%, 3%) rotate(3deg) scale(1.05);
  }
  100% {
    transform: translate(-3%, -2%) rotate(-2deg) scale(0.98);
  }
}

@keyframes auroraShift2 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-4%, 5%) rotate(-4deg) scale(1.08);
  }
  100% {
    transform: translate(6%, -3%) rotate(2deg) scale(0.95);
  }
}

@keyframes auroraShift3 {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(3%, -4%) rotate(5deg) scale(1.03);
  }
  100% {
    transform: translate(-5%, 2%) rotate(-3deg) scale(1.06);
  }
}

/* Particle Field */
.aurora-particle-field {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(40px) scale(0.5);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  animation: fadeInDown 1s var(--ease-out-expo) 0.2s both;
}

.hero-badge i {
  font-size: 0.7rem;
  animation: pulseStar 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
}

.title-line-1 {
  animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
  color: var(--text-primary);
}

.title-line-2 {
  animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 1s var(--ease-out-expo) 1s both;
  flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s var(--ease-out-expo) 1.6s both;
}

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

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-dark);
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-deep), var(--bg-dark));
  pointer-events: none;
}

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

.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-medium);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: rgba(74, 222, 128, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: var(--bg-card-hover);
}

.feature-card-large {
  grid-column: span 1;
}

.feature-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(74, 222, 128, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-medium);
  pointer-events: none;
}

.feature-card:hover .feature-glow {
  opacity: 1;
}

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

.feature-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: var(--gradient-aurora-soft);
  border: 1px solid rgba(74, 222, 128, 0.1);
}

.feature-icon-wrap i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  color: var(--primary);
}

.feature-card:nth-child(2) .feature-icon-wrap i,
.feature-card:nth-child(5) .feature-icon-wrap i {
  color: var(--secondary);
}

.feature-card:nth-child(3) .feature-icon-wrap i,
.feature-card:nth-child(6) .feature-icon-wrap i {
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   GAMEPLAY SECTION
   ============================================ */
.gameplay-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-deep);
}

.gameplay-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-deep));
  pointer-events: none;
}

/* Timeline */
.gameplay-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 100px;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--secondary),
    var(--accent),
    transparent
  );
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.timeline-item:nth-child(3) .timeline-number {
  border-color: rgba(129, 140, 248, 0.2);
  color: var(--secondary);
}

.timeline-item:nth-child(4) .timeline-number {
  border-color: rgba(192, 132, 252, 0.2);
  color: var(--accent);
}

.timeline-item:nth-child(5) .timeline-number {
  border-color: rgba(74, 222, 128, 0.2);
  color: var(--primary);
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(74, 222, 128, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Game Showcase - Phone Mockup */
.game-showcase {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  flex-wrap: wrap;
}

.showcase-phone {
  flex-shrink: 0;
}

.phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: #1a1a2e;
  border: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  overflow: hidden;
  background: #050510;
}

.screen-aurora {
  position: absolute;
  inset: 0;
}

.screen-aurora-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  filter: blur(40px);
  opacity: 0.6;
}

.screen-a1 {
  top: -80%;
  left: -50%;
  background: radial-gradient(
    ellipse at 40% 50%,
    rgba(74, 222, 128, 0.5) 0%,
    transparent 50%
  );
  animation: screenAurora1 8s ease-in-out infinite alternate;
}

.screen-a2 {
  top: -60%;
  left: -30%;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(129, 140, 248, 0.4) 0%,
    transparent 50%
  );
  animation: screenAurora2 10s ease-in-out infinite alternate;
}

.screen-a3 {
  top: -70%;
  left: -40%;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(192, 132, 252, 0.35) 0%,
    transparent 50%
  );
  animation: screenAurora3 12s ease-in-out infinite alternate;
}

@keyframes screenAurora1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(10%, 5%) scale(1.1);
  }
}

@keyframes screenAurora2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-8%, 8%) scale(1.05);
  }
}

@keyframes screenAurora3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(5%, -5%) scale(1.08);
  }
}

.screen-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.screen-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-level {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.screen-score {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.screen-score i {
  font-size: 0.65rem;
}

.screen-orb-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat 4s ease-in-out infinite;
}

.screen-orb-1 {
  width: 50px;
  height: 50px;
  background: radial-gradient(
    circle,
    var(--primary) 0%,
    rgba(74, 222, 128, 0.3) 60%,
    transparent 100%
  );
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.screen-orb-2 {
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle,
    var(--secondary) 0%,
    rgba(129, 140, 248, 0.3) 60%,
    transparent 100%
  );
  box-shadow: 0 0 25px rgba(129, 140, 248, 0.5);
  top: 45%;
  right: 20%;
  animation-delay: 1.5s;
}

.screen-orb-3 {
  width: 35px;
  height: 35px;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(192, 132, 252, 0.3) 60%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
  bottom: 30%;
  left: 35%;
  animation-delay: 3s;
}

.screen-connection {
  position: absolute;
  top: 38%;
  left: 30%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.4;
  transform: rotate(20deg);
  animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

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

.screen-hud-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.screen-power {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.screen-power:nth-child(1) {
  color: var(--primary);
  border-color: rgba(74, 222, 128, 0.3);
}
.screen-power:nth-child(2) {
  color: var(--secondary);
  border-color: rgba(129, 140, 248, 0.3);
}
.screen-power:nth-child(3) {
  color: var(--accent);
  border-color: rgba(192, 132, 252, 0.3);
}

/* Showcase Info */
.showcase-info {
  max-width: 400px;
}

.showcase-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.showcase-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.showcase-tag i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-dark);
}

.community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-deep), var(--bg-dark));
  pointer-events: none;
}

/* Live Counter */
.live-counter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.1);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}

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

.live-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.live-text strong {
  color: var(--primary);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  border-color: rgba(74, 222, 128, 0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

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

.testimonial-stars i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Social Proof Strip */
.social-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
}

.proof-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.proof-item:nth-child(2) i {
  color: var(--secondary);
}
.proof-item:nth-child(3) i {
  color: #ef4444;
}
.proof-item:nth-child(4) i {
  color: var(--accent);
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-deep);
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-deep));
  pointer-events: none;
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateY(15px);
}

.faq-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  border-color: rgba(74, 222, 128, 0.1);
}

.faq-item.active {
  border-color: rgba(74, 222, 128, 0.2);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
  gap: 16px;
}

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

.faq-arrow {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform var(--transition-medium);
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease-out-expo),
    padding 0.3s ease;
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
}

.signup-aurora-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signup-aurora-1 {
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(74, 222, 128, 0.12) 0%,
    transparent 60%
  );
  filter: blur(60px);
  animation: auroraShift1 15s ease-in-out infinite alternate;
}

.signup-aurora-2 {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(192, 132, 252, 0.12) 0%,
    transparent 60%
  );
  filter: blur(60px);
  animation: auroraShift2 18s ease-in-out infinite alternate;
}

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

.signup-info {
  padding-right: 20px;
}

.signup-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.signup-info > p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.benefit-item i {
  color: var(--primary);
  font-size: 1rem;
}

.signup-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.signup-trust i {
  color: var(--primary);
}

/* Form Container */
.signup-form-container {
  position: relative;
}

.signup-form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.signup-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 28px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

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

.input-wrap i {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 1;
  transition: color var(--transition-fast);
}

.input-wrap input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

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

.input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.input-wrap input:focus + i,
.input-wrap:focus-within i {
  color: var(--primary);
}

.input-wrap input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #ef4444;
  margin-top: 6px;
  min-height: 0;
}

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

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

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

.checkmark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
  position: relative;
}

.checkbox-label input:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

/* Submit Button */
.signup-form .btn {
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 1rem;
}

/* Success Message */
.signup-success {
  background: var(--bg-card);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  animation: successBounce 0.6s var(--ease-out-expo);
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.signup-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.signup-success p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg-surface), var(--bg-dark));
  pointer-events: none;
}

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

.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateY(20px);
}

.trust-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.trust-card:hover {
  border-color: rgba(74, 222, 128, 0.12);
  transform: translateY(-3px);
}

.trust-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.trust-card:nth-child(2) i {
  color: var(--secondary);
}
.trust-card:nth-child(3) i {
  color: var(--accent);
}
.trust-card:nth-child(4) i {
  color: #fbbf24;
}

.trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  position: relative;
  padding: 80px 0 0;
  background: var(--bg-deep);
  overflow: hidden;
}

.footer-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-aurora-layer {
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(74, 222, 128, 0.06) 0%,
    transparent 50%
  );
  filter: blur(80px);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-brand {
  padding-right: 40px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-primary);
}

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

.footer-links-group a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

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

.footer-links-group a i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

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

.footer-bottom-left p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-address {
  margin-top: 4px;
  font-size: 0.78rem !important;
}

.footer-bottom-right {
  display: flex;
  gap: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.footer-badge i {
  color: var(--primary);
  font-size: 0.7rem;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.legal-page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 50%
  );
  filter: blur(60px);
  pointer-events: none;
}

.legal-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.legal-page-hero p {
  color: var(--text-secondary);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.legal-content {
  padding: 60px 0 100px;
  background: var(--bg-deep);
}

.legal-content .section-container {
  max-width: 800px;
}

.legal-content-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.legal-content-inner h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.legal-content-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content-inner p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content-inner ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.legal-content-inner ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content-inner a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content-inner strong {
  color: var(--text-primary);
}

.legal-content-inner .legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: span 1;
  }

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

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

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

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

  .signup-info {
    padding-right: 0;
    text-align: center;
  }

  .signup-info .section-title {
    text-align: center;
  }

  .signup-benefits {
    align-items: center;
  }

  .signup-trust {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: rgba(3, 7, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .social-proof-strip {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    padding-right: 0;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent
    );
  }

  .game-showcase {
    flex-direction: column;
    gap: 40px;
  }

  .showcase-info {
    text-align: center;
  }

  .showcase-tags {
    justify-content: center;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .timeline-item {
    gap: 20px;
  }

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

  .legal-content-inner {
    padding: 32px 20px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .phone-frame {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
    border-radius: 30px;
  }

  .phone-notch {
    width: 90px;
    height: 22px;
    border-radius: 0 0 14px 14px;
  }

  .phone-screen {
    border-radius: 26px;
  }
}

/* ============================================
   ANIMATIONS & REVEAL
   ============================================ */
[data-reveal] {
  transition:
    opacity 0.8s var(--ease-out-expo),
    transform 0.8s var(--ease-out-expo);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: rgba(74, 222, 128, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 222, 128, 0.4);
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
