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

:root {
  --primary: #ff71ce;
  --primary-dark: #e050a8;
  --primary-light: #ffa4e0;
  --secondary: #01cdfe;
  --secondary-dark: #00a5cc;
  --secondary-light: #66e0ff;
  --accent: #b967ff;
  --accent-dark: #9340e0;
  --accent-light: #d4a0ff;

  --neon-yellow: #fffb96;
  --neon-green: #05ffa1;
  --neon-orange: #ff6c11;
  --sunset-pink: #ff3864;
  --sunset-orange: #ff6b35;
  --sunset-purple: #7b2ff7;
  --deep-purple: #1a0033;
  --deep-blue: #0a001a;
  --dark-bg: #0d0221;
  --darker-bg: #080118;
  --card-bg: rgba(13, 2, 33, 0.85);
  --card-border: rgba(185, 103, 255, 0.2);
  --card-hover-border: rgba(255, 113, 206, 0.5);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);

  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-glow-pink:
    0 0 20px rgba(255, 113, 206, 0.3), 0 0 60px rgba(255, 113, 206, 0.1);
  --shadow-glow-cyan:
    0 0 20px rgba(1, 205, 254, 0.3), 0 0 60px rgba(1, 205, 254, 0.1);
  --shadow-glow-purple:
    0 0 20px rgba(185, 103, 255, 0.3), 0 0 60px rgba(185, 103, 255, 0.1);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --nav-height: 80px;
}

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

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    var(--primary-light),
    var(--accent-light)
  );
}

/* ============================================
   VHS & NOISE OVERLAYS
   ============================================ */
.vhs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.5;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noiseShift 0.5s steps(5) infinite;
}

@keyframes noiseShift {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-2px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(
    135deg,
    rgba(13, 2, 33, 0.97),
    rgba(26, 0, 51, 0.97)
  );
  border-top: 2px solid var(--accent);
  backdrop-filter: blur(20px);
  padding: 20px;
  box-shadow: 0 -10px 40px rgba(185, 103, 255, 0.2);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-icon {
  font-size: 28px;
  color: var(--neon-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-text p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-text p strong {
  color: var(--text-primary);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

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

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

.cookie-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.cookie-btn-accept:hover {
  box-shadow: var(--shadow-glow-pink);
  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.2);
}

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

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

.cookie-btn-settings:hover {
  background: rgba(1, 205, 254, 0.1);
}

.cookie-settings-panel {
  max-width: 1200px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-setting-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
}

.cookie-setting-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.main-nav.scrolled {
  background: rgba(8, 1, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(185, 103, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  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: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  font-size: 28px;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(255, 113, 206, 0.5));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(255, 113, 206, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 16px rgba(1, 205, 254, 0.6));
    color: var(--secondary);
  }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

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

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

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

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

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

.nav-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width var(--transition-base);
  border-radius: 2px;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
  border-radius: var(--radius-md);
  padding: 10px 20px;
}

.nav-cta::after {
  display: none;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0a001a 0%,
    #1a0033 20%,
    #2d0066 35%,
    #7b2ff7 50%,
    #ff3864 60%,
    #ff6b35 68%,
    #fffb96 75%,
    #01cdfe 85%,
    #0a001a 100%
  );
  padding-top: var(--nav-height);
}

.hero-grid-bg {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 50%;
  background:
    linear-gradient(90deg, rgba(1, 205, 254, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(1, 205, 254, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: gridScroll 4s linear infinite;
}

@keyframes gridScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}

.hero-sun {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    #fffb96 0%,
    #ff6b35 30%,
    #ff3864 60%,
    #7b2ff7 100%
  );
  box-shadow:
    0 0 80px rgba(255, 107, 53, 0.5),
    0 0 200px rgba(255, 56, 100, 0.3);
  /* horizontal lines through the sun */
  -webkit-mask-image: repeating-linear-gradient(
    0deg,
    #000 0px,
    #000 8px,
    transparent 8px,
    transparent 12px
  );
  mask-image: repeating-linear-gradient(
    0deg,
    #000 0px,
    #000 8px,
    transparent 8px,
    transparent 12px
  );
  animation: sunPulse 6s ease-in-out infinite alternate;
}

@keyframes sunPulse {
  0% {
    box-shadow:
      0 0 80px rgba(255, 107, 53, 0.5),
      0 0 200px rgba(255, 56, 100, 0.3);
  }
  100% {
    box-shadow:
      0 0 120px rgba(255, 107, 53, 0.7),
      0 0 300px rgba(255, 56, 100, 0.5);
  }
}

/* Mountains */
.hero-mountains {
  position: absolute;
  bottom: 25%;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 2;
}

.mountain {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
}

.mountain-1 {
  left: 10%;
  border-left: 180px solid transparent;
  border-right: 180px solid transparent;
  border-bottom: 160px solid rgba(13, 2, 33, 0.9);
}

.mountain-2 {
  left: 40%;
  border-left: 250px solid transparent;
  border-right: 250px solid transparent;
  border-bottom: 200px solid rgba(13, 2, 33, 0.95);
}

.mountain-3 {
  right: 5%;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 140px solid rgba(13, 2, 33, 0.85);
}

/* Palm Trees */
.hero-palm {
  position: absolute;
  bottom: 20%;
  z-index: 3;
}

.palm-left {
  left: 5%;
}

.palm-right {
  right: 5%;
  transform: scaleX(-1);
}

.palm-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 200px;
  background: linear-gradient(180deg, #1a0033, #0d0221);
  border-radius: 4px;
}

.palm-frond {
  position: absolute;
  bottom: 190px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: #0d0221;
  border-radius: 2px;
  transform-origin: left center;
}

.frond-1 {
  transform: rotate(-30deg);
}
.frond-2 {
  transform: rotate(-60deg);
}
.frond-3 {
  transform: rotate(-10deg);
}
.frond-4 {
  transform: rotate(10deg) translateX(-100%);
  left: 50%;
  transform-origin: right center;
}
.frond-5 {
  transform: rotate(40deg) translateX(-100%);
  left: 50%;
  transform-origin: right center;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.15;
}

.shape-triangle {
  top: 15%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--primary);
  animation: floatShape 8s ease-in-out infinite;
}

.shape-circle {
  top: 25%;
  right: 15%;
  width: 40px;
  height: 40px;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-diamond {
  bottom: 40%;
  left: 20%;
  width: 30px;
  height: 30px;
  background: var(--accent);
  transform: rotate(45deg);
  animation: floatShape 7s ease-in-out infinite;
}

.shape-square {
  top: 35%;
  right: 25%;
  width: 25px;
  height: 25px;
  border: 2px solid var(--neon-yellow);
  animation: floatShape 9s ease-in-out infinite reverse;
}

@keyframes floatShape {
  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);
  }
}

.shape-diamond {
  animation-name: floatDiamond;
}

@keyframes floatDiamond {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-20px);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 113, 206, 0.15);
  border: 1px solid rgba(255, 113, 206, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease forwards;
  opacity: 0;
}

.hero-badge i {
  color: var(--neon-yellow);
  animation: boltFlash 2s ease-in-out infinite;
}

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

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

.hero-title {
  margin-bottom: 24px;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  animation: titleReveal 0.8s ease forwards;
}

.title-line-1 {
  font-size: clamp(40px, 8vw, 80px);
  color: var(--primary);
  text-shadow:
    0 0 40px rgba(255, 113, 206, 0.5),
    0 0 80px rgba(255, 113, 206, 0.2);
  animation-delay: 0.2s;
}

.title-line-2 {
  font-size: clamp(48px, 10vw, 100px);
  background: linear-gradient(
    135deg,
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(1, 205, 254, 0.4));
  animation-delay: 0.4s;
}

.title-line-3 {
  font-size: clamp(40px, 8vw, 80px);
  color: var(--secondary);
  text-shadow:
    0 0 40px rgba(1, 205, 254, 0.5),
    0 0 80px rgba(1, 205, 254, 0.2);
  animation-delay: 0.6s;
}

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

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--dark-bg);
  margin-left: -8px;
  color: white;
}

.avatar:first-child {
  margin-left: 0;
}
.avatar-1 {
  background: var(--primary);
}
.avatar-2 {
  background: var(--secondary);
}
.avatar-3 {
  background: var(--accent);
}
.avatar-4 {
  background: var(--neon-green);
  color: #000;
}
.avatar-5 {
  background: var(--neon-orange);
  font-family: var(--font-display);
  font-size: 11px;
}

.proof-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
}

.proof-count {
  color: var(--neon-green);
  font-weight: 700;
  font-family: var(--font-mono);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 1.4s forwards;
  opacity: 0;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

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

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

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

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: rgba(1, 205, 254, 0.1);
  box-shadow: var(--shadow-glow-cyan);
  transform: translateY(-2px);
  color: var(--secondary);
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  0% {
    box-shadow: 0 0 15px rgba(255, 113, 206, 0.3);
  }
  100% {
    box-shadow:
      0 0 30px rgba(185, 103, 255, 0.4),
      0 0 60px rgba(255, 113, 206, 0.2);
  }
}

.btn-sm {
  font-size: 11px;
  padding: 10px 20px;
  letter-spacing: 1px;
}

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.section-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(255, 113, 206, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 113, 206, 0.2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.2;
}

.chrome-text {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e0e0e0 25%,
    #ffffff 50%,
    #b0b0b0 75%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: linear-gradient(
    180deg,
    var(--dark-bg),
    var(--deeper-bg, #060114),
    var(--dark-bg)
  );
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    var(--shadow-glow-purple);
}

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

.feature-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  opacity: 0.15;
}

.feature-card-1 .feature-icon-bg {
  background: var(--primary);
}
.feature-card-2 .feature-icon-bg {
  background: var(--secondary);
}
.feature-card-3 .feature-icon-bg {
  background: var(--accent);
}
.feature-card-4 .feature-icon-bg {
  background: var(--neon-green);
}
.feature-card-5 .feature-icon-bg {
  background: var(--neon-yellow);
}
.feature-card-6 .feature-icon-bg {
  background: var(--neon-orange);
}

.feature-icon {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 60px;
  width: 60px;
  text-align: center;
}

.feature-card-1 .feature-icon {
  color: var(--primary);
}
.feature-card-2 .feature-icon {
  color: var(--secondary);
}
.feature-card-3 .feature-icon {
  color: var(--accent);
}
.feature-card-4 .feature-icon {
  color: var(--neon-green);
}
.feature-card-5 .feature-icon {
  color: var(--neon-yellow);
}
.feature-card-6 .feature-icon {
  color: var(--neon-orange);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-line {
  margin-top: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--card-border), transparent);
  border-radius: 2px;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
  background: linear-gradient(180deg, var(--dark-bg), #0f0328, var(--dark-bg));
}

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

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.game-card-featured .game-visual {
  min-height: 300px;
}

.game-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-visual-1 {
  background: linear-gradient(135deg, #1a0033, #ff3864 50%, #ff6b35);
}

.game-visual-2 {
  background: linear-gradient(135deg, #0a001a, #01cdfe 50%, #05ffa1);
}

.game-visual-3 {
  background: linear-gradient(135deg, #1a0033, #b967ff 50%, #ff71ce);
}

.game-visual-4 {
  background: linear-gradient(135deg, #0d0221, #ff6c11 50%, #fffb96);
}

.game-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-main-icon {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  z-index: 2;
  position: relative;
}

.game-shape-1 {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: gameShapeRotate 10s linear infinite;
}

.game-shape-2 {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
  animation: gameShapeRotate 15s linear infinite reverse;
}

.game-shape-3 {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: gameShapeRotate 20s linear infinite;
}

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

.game-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--neon-green);
  color: #000;
  z-index: 5;
}

.game-badge-soon {
  background: var(--secondary);
  color: #000;
}

.game-badge-dev {
  background: var(--neon-yellow);
  color: #000;
}

.game-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.game-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(185, 103, 255, 0.15);
  border: 1px solid rgba(185, 103, 255, 0.3);
  color: var(--accent-light);
}

.game-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.game-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.game-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

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

.game-info .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--dark-bg);
  position: relative;
}

.stats-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stats-grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 60%;
  background:
    linear-gradient(90deg, rgba(255, 113, 206, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 113, 206, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(400px) rotateX(55deg);
  transform-origin: center top;
}

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

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition-base);
}

.stat-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-pink);
}

.stat-icon-wrap {
  margin-bottom: 16px;
}

.stat-icon {
  font-size: 32px;
  color: var(--primary);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: width 1.5s ease;
}

/* Live Feed */
.live-feed {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.live-feed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 255, 161, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(5, 255, 161, 0);
  }
}

.live-feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow: hidden;
}

.live-feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  animation: feedItemIn 0.5s ease forwards;
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes feedItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-feed-item i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.live-feed-item .feed-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: linear-gradient(180deg, var(--dark-bg), #0f0328, var(--dark-bg));
}

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

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

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(185, 103, 255, 0.1);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.testimonial-stars i {
  color: var(--neon-yellow);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.author-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--dark-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-pink);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

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

.faq-icon {
  font-size: 12px;
  color: var(--accent);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height var(--transition-slow),
    padding var(--transition-slow);
}

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

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

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

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

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

.signup-grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 50%;
  background:
    linear-gradient(90deg, rgba(1, 205, 254, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(1, 205, 254, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
}

.signup-sun {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 113, 206, 0.15),
    transparent 70%
  );
}

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

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

.signup-info .section-tag {
  margin-bottom: 16px;
}

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

.signup-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.signup-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.signup-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
}

.signup-benefits i {
  color: var(--neon-green);
  font-size: 18px;
}

.signup-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--secondary);
}

/* Signup Form */
.signup-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
  position: relative;
}

.signup-form-wrap::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent),
    var(--secondary)
  );
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

.form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.form-input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

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

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255, 113, 206, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 113, 206, 0.1);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
  color: var(--primary);
}

.input-wrap:has(.form-input:focus) .input-icon {
  color: var(--primary);
}

.form-input.error {
  border-color: var(--sunset-pink);
  box-shadow: 0 0 0 3px rgba(255, 56, 100, 0.1);
}

.form-error {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--sunset-pink);
  margin-top: 4px;
  min-height: 18px;
}

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

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

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  margin-top: 1px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

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

/* Form Message */
.form-message {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
}

.form-message.success {
  background: rgba(5, 255, 161, 0.1);
  border: 1px solid rgba(5, 255, 161, 0.3);
  color: var(--neon-green);
}

.form-message.error {
  background: rgba(255, 56, 100, 0.1);
  border: 1px solid rgba(255, 56, 100, 0.3);
  color: var(--sunset-pink);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: linear-gradient(180deg, var(--dark-bg), #0f0328);
  padding: 80px 0;
}

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

.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.trust-card:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-4px);
}

.trust-card-icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.trust-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-card a {
  color: var(--secondary);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--darker-bg);
  position: relative;
  padding: 60px 0 30px;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  background-size: 300% 100%;
  animation: footerLineShift 6s linear infinite;
}

@keyframes footerLineShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

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

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 113, 206, 0.1);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-age-notice {
  margin-top: 8px;
  color: var(--neon-yellow) !important;
}

.footer-age-notice i {
  margin-right: 6px;
}

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

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(5, 255, 161, 0.1);
  border: 1px solid rgba(5, 255, 161, 0.2);
  color: var(--neon-green);
}

/* ============================================
   LEGAL PAGES CONTENT
   ============================================ */
.legal-content {
  background: rgba(255, 255, 255, 0.97);
  color: #1a1a2e;
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.legal-content::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent),
    var(--secondary)
  );
  border-radius: calc(var(--radius-xl) + 2px);
  z-index: -1;
  opacity: 0.5;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a0033;
  margin-bottom: 8px;
}

.legal-content .legal-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a0033;
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(185, 103, 255, 0.2);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #2d0066;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  font-family: var(--font-body);
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: #7b2ff7;
  text-decoration: underline;
}

.legal-content strong {
  color: #1a0033;
}

.legal-content .legal-info-box {
  background: rgba(185, 103, 255, 0.08);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 20px 0;
}

.legal-content .legal-info-box p {
  margin-bottom: 4px;
}

/* Legal page hero */
.legal-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 40px;
  background: linear-gradient(180deg, var(--dark-bg), #0f0328);
  text-align: center;
}

.legal-hero .section-title {
  margin-bottom: 8px;
}

.legal-page-body {
  background: linear-gradient(180deg, #0f0328, var(--dark-bg));
  padding: 0 24px 80px;
}

/* ============================================
   ANIMATIONS - SCROLL REVEAL
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

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

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

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

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

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

  .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-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(8, 1, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 10px;
    transition: right var(--transition-base);
    border-left: 1px solid rgba(185, 103, 255, 0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hero-sun {
    width: 200px;
    height: 200px;
  }

  .hero-palm {
    display: none;
  }

  .hero-mountains {
    display: none;
  }

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

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

  .game-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .cookie-settings-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .logo-text {
    font-size: 16px;
    letter-spacing: 1px;
  }

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

  .hero-social-proof {
    flex-direction: column;
  }

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

  .stat-number {
    font-size: 28px;
  }

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

/* ============================================
   LOADING ANIMATION FOR SUBMIT BUTTON
   ============================================ */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading span {
  visibility: hidden;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

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