/* ============================================================
   QANTORIVA - Mobile Game Website
   Neumorphism Design System
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Base Neumorphism Colors */
  --bg: #e0e5ec;
  --bg-dark: #c8cdd5;
  --bg-darker: #a3b1c6;
  --bg-light: #ffffff;
  --bg-lighter: #f0f5fc;

  /* Shadows */
  --shadow-dark: rgba(163, 177, 198, 0.6);
  --shadow-light: rgba(255, 255, 255, 0.8);
  --shadow-neu:
    8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
  --shadow-neu-sm:
    4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  --shadow-neu-lg:
    12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
  --shadow-neu-inset:
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  --shadow-neu-inset-sm:
    inset 2px 2px 5px var(--shadow-dark),
    inset -2px -2px 5px var(--shadow-light);

  /* Primary Colors */
  --primary: #6d5dfc;
  --primary-dark: #5a4bd4;
  --primary-light: #8b7eff;
  --primary-glow: rgba(109, 93, 252, 0.3);

  /* Accent Colors */
  --accent: #ff6b9d;
  --accent-dark: #e5567f;
  --accent-light: #ff8db5;
  --accent-glow: rgba(255, 107, 157, 0.3);

  /* Text */
  --text-primary: #31344b;
  --text-secondary: #5a5d7a;
  --text-muted: #8b8eaa;
  --text-light: #b0b3cc;

  /* Functional */
  --success: #4ecdc4;
  --error: #ff6b6b;
  --warning: #ffe66d;
  --info: #6dccfc;

  /* Typography */
  --font-display: "Sora", sans-serif;
  --font-body: "Outfit", sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-round: 50%;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ---- 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-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

::selection {
  background: var(--primary);
  color: white;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--bg-darker);
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-toast);
  padding: var(--space-lg);
  background: var(--bg);
  box-shadow: 0 -8px 32px var(--shadow-dark);
  border-top: 1px solid var(--bg-lighter);
  animation: slideUpBanner 0.5s ease forwards;
}

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

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

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  flex: 1;
  min-width: 280px;
}

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

.cookie-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

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

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

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--primary);
  color: white;
  box-shadow:
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
}

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

.btn-cookie-essential {
  background: var(--bg);
  color: var(--text-primary);
  box-shadow: var(--shadow-neu-sm);
}

.btn-cookie-essential:hover {
  box-shadow: var(--shadow-neu-inset-sm);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--text-secondary);
  box-shadow: none;
  text-decoration: underline;
}

.btn-cookie-settings:hover {
  color: var(--primary);
}

.cookie-settings-panel {
  max-width: 1200px;
  margin: var(--space-lg) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--bg-dark);
  animation: fadeIn 0.3s ease;
}

.cookie-setting-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--bg-dark);
}

.cookie-setting-item:last-of-type {
  border-bottom: none;
  margin-bottom: var(--space-md);
}

.cookie-setting-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.cookie-setting-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Neumorphic Toggle */
.neu-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.neu-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  border-radius: 28px;
  box-shadow: var(--shadow-neu-inset-sm);
  transition: all var(--transition-normal);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: var(--shadow-neu-sm);
  transition: all var(--transition-spring);
}

.neu-toggle input:checked + .toggle-slider {
  background: var(--primary-glow);
}

.neu-toggle input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--primary);
  box-shadow: 0 2px 8px var(--primary-glow);
}

.neu-toggle input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(224, 229, 236, 0.95);
  backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  animation: fadeIn 0.4s ease;
}

.age-gate-modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-neu-lg);
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.age-gate-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 2rem;
  color: var(--primary);
}

.age-gate-modal h2 {
  margin-bottom: var(--space-md);
  font-size: 1.6rem;
}

.age-gate-modal > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-size: 0.95rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.age-gate-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.age-gate-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   BUTTONS (Neumorphism)
   ============================================================ */
.btn-neu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary-neu {
  background: var(--primary);
  color: white;
  box-shadow:
    6px 6px 12px rgba(109, 93, 252, 0.3),
    -3px -3px 8px var(--shadow-light),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary-neu:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow:
    8px 8px 20px rgba(109, 93, 252, 0.4),
    -4px -4px 12px var(--shadow-light);
}

.btn-primary-neu:active {
  transform: translateY(0);
  box-shadow:
    inset 4px 4px 8px rgba(90, 75, 212, 0.4),
    inset -2px -2px 4px rgba(139, 126, 255, 0.2);
}

.btn-secondary-neu {
  background: var(--bg);
  color: var(--text-primary);
  box-shadow: var(--shadow-neu-sm);
}

.btn-secondary-neu:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neu);
}

.btn-secondary-neu:active {
  transform: translateY(0);
  box-shadow: var(--shadow-neu-inset-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-md) 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.main-header.scrolled {
  background: rgba(224, 229, 236, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px var(--shadow-dark);
  padding: var(--space-sm) 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
  z-index: calc(var(--z-sticky) + 1);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.logo:hover .logo-mark {
  box-shadow: var(--shadow-neu-inset-sm);
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
}

.nav-link.nav-cta {
  background: var(--primary);
  color: white;
  box-shadow:
    4px 4px 8px rgba(109, 93, 252, 0.3),
    -2px -2px 6px var(--shadow-light);
  margin-left: var(--space-sm);
}

.nav-link.nav-cta:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-neu-sm);
  cursor: pointer;
  gap: 5px;
  z-index: calc(var(--z-sticky) + 1);
  transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
  box-shadow: var(--shadow-neu-inset-sm);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

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

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

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 var(--space-3xl);
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 8%;
  animation-delay: 0s;
  opacity: 0.6;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 5%;
  animation-delay: -2s;
  opacity: 0.4;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
  opacity: 0.5;
}

.shape-4 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 15%;
  animation-delay: -1s;
  opacity: 0.3;
  background: linear-gradient(135deg, var(--primary-glow), transparent);
}

.shape-5 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 40%;
  animation-delay: -3s;
  opacity: 0.2;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-25px) rotate(2deg);
  }
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    var(--bg-darker) 1px,
    transparent 0
  );
  background-size: 40px 40px;
  opacity: 0.15;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-block {
  animation: fadeInUp 0.8s ease forwards;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 18px;
  background: var(--bg);
  border-radius: 50px;
  box-shadow: var(--shadow-neu-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  margin-bottom: var(--space-xl);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.title-line:nth-child(2) {
  animation-delay: 0.35s;
}
.title-line:nth-child(3) {
  animation-delay: 0.5s;
}

.title-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.counter-inline {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease 0.7s both;
}

.hero-trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.85s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--success);
  font-size: 0.9rem;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.phone-mockup {
  position: relative;
  perspective: 1000px;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--bg);
  border-radius: 36px;
  box-shadow:
    var(--shadow-neu-lg),
    inset 0 0 0 3px var(--bg-dark);
  padding: 12px;
  position: relative;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: rotateY(-5deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-12px);
  }
}

.phone-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-neu-inset-sm);
}

.phone-screen {
  width: 100%;
  height: calc(100% - 28px);
  background: linear-gradient(145deg, #2d1b69, #1a1040);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.screen-content {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Game UI Mockup */
.game-ui-mock {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.game-header-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.game-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.game-stat i {
  font-size: 0.7rem;
}

.game-stat i.fa-heart {
  color: var(--accent);
}
.game-stat i.fa-star {
  color: var(--warning);
}

.stat-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  border-radius: 3px;
  animation: fillBar 2s ease forwards;
}

.stat-fill.health {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 75%;
}

.stat-fill.xp {
  background: linear-gradient(90deg, var(--warning), #ffd93d);
  width: 60%;
  animation-delay: 0.3s;
}

@keyframes fillBar {
  from {
    width: 0;
  }
}

.game-level {
  background: rgba(109, 93, 252, 0.3);
  color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.game-world-mock {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 8px 0;
}

.terrain-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px 12px 0 0;
}

.layer-1 {
  height: 60%;
  background: linear-gradient(180deg, #1a3a2a, #0d2818);
  animation: terrainShift 10s ease-in-out infinite;
}

.layer-2 {
  height: 40%;
  background: linear-gradient(180deg, #2d5a3f, #1a3a2a);
  animation: terrainShift 8s ease-in-out infinite reverse;
}

.layer-3 {
  height: 20%;
  background: linear-gradient(180deg, #3d7a5f, #2d5a3f);
}

@keyframes terrainShift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}

.character-mock {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.character-body {
  width: 24px;
  height: 36px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 8px 8px 4px 4px;
  position: relative;
  animation: characterBounce 1s ease-in-out infinite;
}

.character-body::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #ffd4a8, #f0b888);
  border-radius: 50%;
}

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

.character-glow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 10px;
  background: radial-gradient(ellipse, var(--primary-glow), transparent);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
  }
}

.game-controls-mock {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 4px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.joystick {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.joystick-inner {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: joystickIdle 3s ease-in-out infinite;
}

@keyframes joystickIdle {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, -2px);
  }
  50% {
    transform: translate(2px, 4px);
  }
  75% {
    transform: translate(-3px, 1px);
  }
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.action-a,
.action-b {
  width: 40px;
  height: 40px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-a {
  color: var(--accent-light);
  border-color: rgba(255, 107, 157, 0.3);
}

.action-b {
  color: var(--info);
  border-color: rgba(109, 204, 252, 0.3);
}

.phone-reflection {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 110%;
  height: 30%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  border-radius: 36px;
  transform: rotate(-5deg);
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  margin-top: var(--space-2xl);
  animation: fadeIn 1s ease 1.2s both;
  position: relative;
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--primary), transparent);
  margin: 0 auto var(--space-sm);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

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

/* ============================================================
   SOCIAL PROOF TICKER
   ============================================================ */
.social-proof-ticker {
  background: var(--bg);
  box-shadow: var(--shadow-neu-inset-sm);
  padding: var(--space-md) 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  animation: tickerFade 0.5s ease;
  white-space: nowrap;
}

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

.ticker-item i {
  color: var(--success);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: var(--space-4xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow-neu-lg);
  transform: translateY(-4px);
}

.stat-card.animated:hover {
  transform: translateY(-4px);
}

.stat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.4rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon-wrap {
  box-shadow: var(--shadow-neu-inset-sm);
  color: var(--accent);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.stat-sublabel {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 20px;
  background: var(--bg);
  border-radius: 50px;
  box-shadow: var(--shadow-neu-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: var(--space-4xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neu-lg);
}

.about-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  padding: var(--space-3xl);
  overflow: hidden;
}

.about-card-visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.visual-abstract {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(109, 93, 252, 0.08),
    rgba(255, 107, 157, 0.05)
  );
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-inset);
}

.abs-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(109, 93, 252, 0.2);
}

.abs-circle.c1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  background: radial-gradient(circle, var(--primary-glow), transparent);
  animation: circleFloat 6s ease-in-out infinite;
}

.abs-circle.c2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 20%;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  animation: circleFloat 5s ease-in-out infinite reverse;
}

.abs-circle.c3 {
  width: 50px;
  height: 50px;
  top: 10%;
  right: 30%;
  background: radial-gradient(circle, rgba(109, 204, 252, 0.2), transparent);
  animation: circleFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes circleFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(10px, -10px) scale(1.05);
  }
  66% {
    transform: translate(-5px, 5px) scale(0.95);
  }
}

.abs-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}

.abs-line.l1 {
  width: 80%;
  top: 40%;
  left: 10%;
  transform: rotate(-15deg);
  animation: linePulse 4s ease-in-out infinite;
}

.abs-line.l2 {
  width: 60%;
  bottom: 30%;
  right: 10%;
  transform: rotate(10deg);
  animation: linePulse 3.5s ease-in-out infinite reverse;
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.4;
  }
}

.about-card-content h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.about-card-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.about-card:not(.about-card-large) {
  text-align: center;
}

.about-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.about-card:hover .about-card-icon {
  box-shadow: var(--shadow-neu-inset-sm);
  color: var(--accent);
}

.about-card:not(.about-card-large) h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.about-card:not(.about-card-large) p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neu-lg);
}

.feature-card.animated:hover {
  transform: translateY(-4px);
}

.feature-card.feature-highlight {
  background: linear-gradient(145deg, var(--bg), var(--bg-lighter));
  border-left: 4px solid var(--primary);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--bg-dark);
  position: absolute;
  top: -8px;
  right: 16px;
  line-height: 1;
  opacity: 0.5;
  user-select: none;
}

.feature-icon-large {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.3rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon-large {
  box-shadow: var(--shadow-neu-inset-sm);
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.feature-card > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: var(--space-lg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--success);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   ROADMAP / TIMELINE
   ============================================================ */
.roadmap-section {
  padding: var(--space-4xl) 0;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--bg);
  box-shadow: var(--shadow-neu-inset-sm);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateX(-20px);
}

.timeline-item.animated {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.6s ease;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  z-index: 2;
}

.timeline-item.completed .timeline-marker {
  background: var(--success);
  color: white;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.timeline-item.current .timeline-marker {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px var(--primary-glow);
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px var(--primary-glow);
  }
  50% {
    box-shadow:
      0 4px 24px var(--primary-glow),
      0 0 0 8px rgba(109, 93, 252, 0.1);
  }
}

.timeline-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-sm);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.timeline-card:hover {
  box-shadow: var(--shadow-neu);
  transform: translateX(4px);
}

.timeline-date {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg);
  border-radius: 50px;
  box-shadow: var(--shadow-neu-inset-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

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

.timeline-item.current .timeline-card {
  border-left: 3px solid var(--primary);
}

.timeline-item.upcoming {
  opacity: 0.7;
}

.timeline-item.upcoming.animated {
  opacity: 0.7;
}

/* ============================================================
   COMMUNITY / TESTIMONIALS
   ============================================================ */
.community-section {
  padding: var(--space-4xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neu-lg);
}

.testimonial-card.animated:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-stars i {
  color: var(--warning);
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

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

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

/* Community Stats */
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.community-stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.community-stat-item:hover {
  box-shadow: var(--shadow-neu-lg);
  transform: translateY(-2px);
}

.community-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.community-stat-icon .fa-discord {
  color: #5865f2;
}
.community-stat-icon .fa-instagram {
  color: #e4405f;
}
.community-stat-icon .fa-youtube {
  color: #ff0000;
}

.community-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.community-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: var(--space-4xl) 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(10px);
}

.faq-item.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.faq-item.active {
  box-shadow: var(--shadow-neu);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
}

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

.faq-icon {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ============================================================
   SIGNUP SECTION
   ============================================================ */
.signup-section {
  padding: var(--space-4xl) 0;
}

.signup-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.signup-info .section-tag {
  margin-bottom: var(--space-md);
}

.signup-info .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.signup-info > p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: var(--space-2xl);
}

.signup-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.signup-counter {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-sm);
  padding: var(--space-xl);
}

.counter-bar {
  height: 10px;
  background: var(--bg);
  border-radius: 10px;
  box-shadow: var(--shadow-neu-inset-sm);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
  transition: width 2s ease;
}

.signup-counter p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Form */
.signup-form-container {
  background: var(--bg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-neu-lg);
  padding: var(--space-2xl);
  max-width: 100%;
  overflow: hidden;
}

.signup-form h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-group label i {
  color: var(--primary);
  font-size: 0.82rem;
}

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

.neu-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-inset);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all var(--transition-normal);
  outline: none;
}

.neu-input::placeholder {
  color: var(--text-light);
}

.neu-input:focus {
  box-shadow:
    var(--shadow-neu-inset),
    0 0 0 3px var(--primary-glow);
}

.neu-input.error {
  box-shadow:
    var(--shadow-neu-inset),
    0 0 0 3px rgba(255, 107, 107, 0.3);
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: var(--space-xs);
  min-height: 16px;
}

/* Checkbox */
.form-checkbox {
  margin-bottom: var(--space-md);
}

.neu-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.neu-checkbox input {
  display: none;
}

.checkbox-mark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--shadow-neu-inset-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  transition: all var(--transition-normal);
  margin-top: 1px;
}

.neu-checkbox input:checked + .checkbox-mark {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px var(--primary-glow);
}

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

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* Success / Error Messages */
.signup-success,
.signup-error {
  text-align: center;
  padding: var(--space-2xl);
  animation: scaleIn 0.4s ease;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: var(--space-lg);
}

.error-icon {
  font-size: 3.5rem;
  color: var(--error);
  margin-bottom: var(--space-lg);
}

.signup-success h3,
.signup-error h3 {
  margin-bottom: var(--space-md);
}

.signup-success p,
.signup-error p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.success-note {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
  padding: var(--space-4xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neu);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
}

.trust-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neu-lg);
}

.trust-card.animated:hover {
  transform: translateY(-4px);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background: var(--bg);
  box-shadow: var(--shadow-neu-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.3rem;
  color: var(--primary);
  transition: all var(--transition-normal);
}

.trust-card:hover .trust-icon {
  box-shadow: var(--shadow-neu-inset-sm);
  color: var(--accent);
}

.trust-card h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--bg);
  box-shadow: inset 0 4px 16px var(--shadow-dark);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-brand > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 280px;
}


.footer-links-col h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--bg-dark);
  padding-top: var(--space-xl);
}

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

.footer-bottom-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-address {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
}

.footer-responsible {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin: var(--space-sm) auto !important;
}

.footer-responsible i {
  color: var(--primary);
  margin-right: 4px;
}

.footer-age {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--error);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-neu);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  z-index: var(--z-dropdown);
  transition: all var(--transition-normal);
  animation: fadeIn 0.3s ease;
}

.back-to-top:hover {
  box-shadow: var(--shadow-neu-inset-sm);
  transform: translateY(-2px);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-hero {
  padding: 140px 0 var(--space-3xl);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: var(--space-md);
}

.legal-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.legal-content {
  padding: 0 0 var(--space-4xl);
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-lighter);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-neu);
  padding: var(--space-3xl);
}

.legal-card h2 {
  font-size: 1.4rem;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--primary);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--bg-dark);
}

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

.legal-card h3 {
  font-size: 1.1rem;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--text-primary);
}

.legal-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-card ul,
.legal-card ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-xl);
}

.legal-card li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
  list-style: disc;
}

.legal-card ol li {
  list-style: decimal;
}

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

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

.legal-card .legal-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.legal-card .contact-box {
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neu-inset-sm);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.legal-card .contact-box p {
  margin-bottom: var(--space-xs);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero-text-block {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

  .hero-subtitle {
    margin: 0 auto var(--space-xl);
  }

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

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

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

  .about-card-large {
    grid-template-columns: 1fr;
  }

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

  .about-card-large {
    grid-column: span 2;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: var(--z-sticky);
  }

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

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 24px;
  }

  .nav-link.nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

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

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

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

  .community-stats {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn-neu {
    width: 100%;
    max-width: 320px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .btn-cookie {
    flex: 1;
    min-width: auto;
  }

  .legal-card {
    padding: var(--space-xl);
  }

  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .age-gate-modal {
    padding: var(--space-2xl) var(--space-lg);
  }

  .signup-form-container {
    padding: var(--space-lg);
  }

  .neu-input {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}

/* ============================================================
   ANIMATIONS UTILITY
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay classes added by JS */
.stagger-1 {
  transition-delay: 0.1s !important;
}
.stagger-2 {
  transition-delay: 0.2s !important;
}
.stagger-3 {
  transition-delay: 0.3s !important;
}
.stagger-4 {
  transition-delay: 0.4s !important;
}
.stagger-5 {
  transition-delay: 0.5s !important;
}
.stagger-6 {
  transition-delay: 0.6s !important;
}

/* Print styles */
@media print {
  .main-header,
  .cookie-banner,
  .age-gate-overlay,
  .back-to-top,
  .social-proof-ticker {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }
}
