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

:root {
  --bg: #06080f;
  --bg-alt: #0d1322;
  --text: #e8ecf3;
  --text-muted: #9aa3b2;
  --accent: #435AFF;
  --accent-hover: #2e44e0;
  --border: #1a2138;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.sponsor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--border);
}
.sponsor-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.sponsor-logo {
  height: 26px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.85rem;
  background: rgba(67, 90, 255, 0.1);
  border: 1px solid rgba(67, 90, 255, 0.3);
  border-radius: 10px;
}
.countdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  white-space: nowrap;
}
.countdown-units {
  display: flex;
  gap: 0.4rem;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 26px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(67, 90, 255, 0.25);
  border-radius: 6px;
  padding: 0.2rem 0.35rem;
  line-height: 1;
}
.cd-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1px;
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .countdown { display: none; }
}
@media (max-width: 720px) {
  .sponsor { display: none; }
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: none;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-pulse {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-pulse::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 58%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btn-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-pulse:hover { transform: none; box-shadow: none; }

@keyframes btn-shine {
  0% { left: -150%; }
  60%, 100% { left: 150%; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
  gap: 3rem;
  background:
    radial-gradient(ellipse 80% 55% at 25% 75%, rgba(67, 90, 255, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 60%, rgba(67, 90, 255, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, #02030a 0%, #060a1c 35%, #0a1130 70%, #101a45 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.6), transparent);
  z-index: 3;
}

.stars, .stars2, .stars3 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, #000 45%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, #000 45%, #000 100%);
}
.stars {
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 40px 70px, #fff, transparent),
    radial-gradient(1px 1px at 50px 160px, #fff, transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, #fff, transparent),
    radial-gradient(1px 1px at 160px 120px, #fff, transparent),
    radial-gradient(1px 1px at 200px 50px, #fff, transparent),
    radial-gradient(1px 1px at 230px 180px, #fff, transparent),
    radial-gradient(1px 1px at 270px 90px, #fff, transparent),
    radial-gradient(1px 1px at 300px 200px, #fff, transparent);
  background-repeat: repeat;
  background-size: 320px 220px;
  animation: stars-drift 120s linear infinite, twinkle 4s ease-in-out infinite;
  opacity: 0.8;
}
.stars2 {
  background-image:
    radial-gradient(1.5px 1.5px at 60px 90px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 120px 30px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 180px 150px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 240px 60px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 290px 130px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 340px 200px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 400px 80px, #fff, transparent);
  background-repeat: repeat;
  background-size: 450px 260px;
  animation: stars-drift 200s linear infinite, twinkle 6s ease-in-out infinite;
  animation-delay: 0s, 1s;
  opacity: 0.7;
}
.stars3 {
  background-image:
    radial-gradient(2px 2px at 80px 50px, #c9b6ff, transparent),
    radial-gradient(2px 2px at 220px 180px, #fff, transparent),
    radial-gradient(2px 2px at 380px 100px, #b9a8ff, transparent),
    radial-gradient(2px 2px at 500px 220px, #fff, transparent);
  background-repeat: repeat;
  background-size: 600px 320px;
  animation: stars-drift 300s linear infinite, twinkle 8s ease-in-out infinite;
  animation-delay: 0s, 2s;
  opacity: 0.9;
}

@keyframes stars-drift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(-220px) translateX(-30px); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.4; }
}

/* Comets */
.comet {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(67, 90, 255, 0.05) 40%, rgba(67, 90, 255, 0.4) 85%, rgba(140, 160, 255, 0.7) 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 3px rgba(67, 90, 255, 0.5));
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform-origin: right center;
}
.comet::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: rgba(180, 195, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 6px 1px rgba(67, 90, 255, 0.6);
}

.comet-1 { animation: comet-fly 16s ease-in infinite; }
.comet-2 { animation: comet-fly 16s ease-in infinite; animation-delay: 6s; top: 35%; }
.comet-3 { animation: comet-fly 16s ease-in infinite; animation-delay: 11s; top: 65%; }

@keyframes comet-fly {
  0% { transform: translate(-10vw, 10vh) rotate(18deg); opacity: 0; }
  4% { opacity: 0.55; }
  16% { opacity: 0.55; }
  20% { transform: translate(110vw, 55vh) rotate(18deg); opacity: 0; }
  100% { transform: translate(110vw, 55vh) rotate(18deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}
.hero-content.hero-split {
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.hero-split .hero-text { min-width: 0; }
.hero-split .eyebrow,
.hero-split .subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.hero-split h1 { text-align: left; }
.hero-split .hero-cta { justify-content: flex-start; }
.hero-split .video-box {
  margin: 0;
  max-width: 100%;
}
@media (max-width: 900px) {
  .hero-content.hero-split { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-split h1 { text-align: center; }
  .hero-split .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-split .hero-cta .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
  }
}
.hero-features {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  width: 100%;
  max-width: 1200px;
}
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.hero-feature:hover {
  border-color: rgba(140, 160, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}
.hero-feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(67, 90, 255, 0.25) 0%, rgba(120, 140, 255, 0.15) 100%);
  border: 1px solid rgba(140, 160, 255, 0.4);
  color: #b8c4ff;
}
.hero-feature-icon svg { width: 22px; height: 22px; }
.hero-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.hero-feature-text p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
@media (max-width: 880px) {
  .hero-features { grid-template-columns: 1fr; max-width: 480px; }
}

.eyebrow {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  text-shadow: 0 0 18px rgba(67, 90, 255, 0.5);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.13;
  margin-bottom: 1.2rem;
}
.hero h1 .title-bold {
  font-weight: 700;
  letter-spacing: -0.025em;
}
.hero .subtitle {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.video-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  border: 1px solid rgba(67, 90, 255, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(67, 90, 255, 0.22), 0 0 0 1px rgba(67, 90, 255, 0.15);
}
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.video-box.playing .video-thumb,
.video-box.playing .play-button,
.video-box.playing::before { display: none; }
.video-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(67, 90, 255, 0.12) 0%, rgba(10, 17, 48, 0.5) 100%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.015) 20px 40px);
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(67, 90, 255, 0.55));
  transition: transform 0.2s;
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.08); }
.play-button svg { width: 100%; height: 100%; display: block; }
.play-button::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(67, 90, 255, 0.45);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }
.section, .section-alt { border: none; }

#how {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(67, 90, 255, 0.28) 0%, transparent 65%),
    #0a1228;
  background-size: 180% 180%, 100% 100%;
  background-position: 50% 50%, 0 0;
  animation: how-glow-drift 14s ease-in-out infinite;
}
@keyframes how-glow-drift {
  0%, 100% { background-position: 30% 40%, 0 0; }
  25% { background-position: 70% 30%, 0 0; }
  50% { background-position: 60% 70%, 0 0; }
  75% { background-position: 35% 65%, 0 0; }
}
#how h2 { margin-bottom: 2rem; }
#how::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.28), transparent);
  z-index: 2;
}
#how::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(140, 160, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 160, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse 70% 70% at center, #000 30%, transparent 85%);
  animation: grid-shift 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
#how .container { position: relative; z-index: 1; }
@keyframes grid-shift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 112px 56px, 112px 56px; }
}
#how .card { background: rgba(8, 14, 32, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
#how .step {
  background: linear-gradient(135deg, #435AFF 0%, #6478ff 100%);
  border-color: rgba(140, 160, 255, 0.6);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(67, 90, 255, 0.45), 0 0 30px rgba(67, 90, 255, 0.25);
}
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card, .feature {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
}
.section-alt .card, .section-alt .feature {
  background: var(--bg);
}
.card:hover, .feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.card h3, .feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.card p, .feature p { color: var(--text-muted); }

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.3rem;
  transition: transform 0.25s;
}
.card:hover .step { transform: translateY(-3px) scale(1.05); }
.step svg { width: 28px; height: 28px; stroke-width: 2.2; }

/* Prizes */
.prizes-section {
  position: relative;
  overflow: hidden;
}
.prizes-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.28), transparent);
  z-index: 2;
}
.prizes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  max-width: 720px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(180, 160, 255, 0.10) 0%, rgba(140, 120, 220, 0.05) 50%, transparent 100%);
  clip-path: polygon(38% 0%, 62% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}
.prizes-section .container { position: relative; z-index: 1; }
.prizes-section .eyebrow { text-align: center; display: block; }
.section-lede {
  text-align: center;
  max-width: 720px;
  margin: -1.5rem auto 3.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.4rem;
  align-items: end;
  max-width: 920px;
  margin: 0 auto 3rem;
}
.podium-place {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%),
    linear-gradient(180deg, #0c1430 0%, #060a1a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 1.4rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.podium-place::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.podium-place:hover { transform: translateY(-6px); }

.podium-1 {
  border: none;
  box-shadow:
    0 0 60px rgba(255, 200, 0, 0.18),
    inset 0 0 40px rgba(255, 215, 0, 0.04),
    0 20px 50px rgba(0, 0, 0, 0.4);
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  background:
    radial-gradient(ellipse at top, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #15102b 0%, #0a0816 100%);
}
@property --gold-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.podium-1::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: conic-gradient(
    from var(--gold-angle),
    rgba(255, 215, 0, 0.05) 0%,
    #ffd700 15%,
    #fff8c8 25%,
    #ffae00 35%,
    rgba(255, 215, 0, 0.05) 50%,
    #ffd700 65%,
    #fff8c8 75%,
    #ffae00 85%,
    rgba(255, 215, 0, 0.05) 100%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: spin-gold 4s linear infinite;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}
@keyframes spin-gold {
  to { --gold-angle: 360deg; }
}
.podium-1::before {
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.7), transparent);
  height: 2px;
}
.podium-1:hover { box-shadow: 0 0 80px rgba(255, 200, 0, 0.3), 0 25px 60px rgba(0,0,0,0.5); }

.podium-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
  animation: rotate-glow 20s linear infinite;
  pointer-events: none;
}
@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.podium-2 {
  border-color: rgba(200, 200, 220, 0.35);
  box-shadow: 0 0 40px rgba(200, 200, 220, 0.1), 0 15px 40px rgba(0, 0, 0, 0.35);
}
.podium-3 {
  border-color: rgba(205, 127, 50, 0.4);
  box-shadow: 0 0 40px rgba(205, 127, 50, 0.12), 0 15px 40px rgba(0, 0, 0, 0.35);
}

.podium-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}
.podium-icon-lg {
  width: 90px;
  height: 90px;
  filter: drop-shadow(0 8px 22px rgba(255, 200, 0, 0.5));
  animation: trophy-float 3s ease-in-out infinite;
}
@keyframes trophy-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.podium-icon svg, .podium-icon-lg svg { width: 100%; height: 100%; display: block; }

.podium-rank {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}
.podium-1 .podium-rank { color: #ffd700; }
.podium-2 .podium-rank { color: #d8d8d8; }
.podium-3 .podium-rank { color: #e5a572; }

.podium-prize {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.podium-1 .podium-prize {
  background: linear-gradient(180deg, #fff4a3 0%, #ffd700 60%, #b8860b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}
.podium-2 .podium-prize {
  background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.podium-3 .podium-prize {
  background: linear-gradient(180deg, #f0c08c 0%, #b8732f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.podium-label {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.podium-label span { font-size: 0.74rem; opacity: 0.75; display: block; margin-top: 0.2rem; }

.podium-bar {
  margin-top: 1.5rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.podium-1 .podium-bar {
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}
.podium-2 .podium-bar { background: linear-gradient(90deg, transparent, #d8d8d8, transparent); }
.podium-3 .podium-bar { background: linear-gradient(90deg, transparent, #e5a572, transparent); }

.prize-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
  max-width: 920px;
  margin: 0 auto 2rem;
}
.tier {
  background:
    linear-gradient(135deg, rgba(67, 90, 255, 0.06) 0%, transparent 100%),
    var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.tier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.tier:hover {
  border-color: rgba(67, 90, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(67, 90, 255, 0.18);
}
.tier:hover::before { opacity: 1; }

.tier-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(67, 90, 255, 0.12);
  border: 1px solid rgba(67, 90, 255, 0.3);
  color: var(--accent);
}
.tier-icon svg { width: 24px; height: 24px; }

.tier-content { flex: 1; }
.tier-rank {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.tier-prize {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.tier-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.prize-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

@media (max-width: 720px) {
  .podium { grid-template-columns: 1fr; }
  .podium-1 { order: 1; }
  .podium-2 { order: 2; }
  .podium-3 { order: 3; }
}

/* About */
#about {
  position: relative;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(67, 90, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 30%, rgba(67, 90, 255, 0.08) 0%, transparent 60%),
    #080d1e;
}
#about::before,
#about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.28), transparent);
  z-index: 2;
}
#about::before { top: 0; }
#about::after { bottom: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h2 { text-align: left; margin-bottom: 1.2rem; }
.about-text > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-visual { display: flex; justify-content: center; align-items: center; }
.about-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-graphic-glow {
  position: absolute;
  inset: 25%;
  background: radial-gradient(circle, rgba(67, 90, 255, 0.45) 0%, rgba(67, 90, 255, 0.1) 50%, transparent 75%);
  filter: blur(20px);
  border-radius: 50%;
}
.about-graphic-orbit {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(140, 160, 255, 0.35);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite;
}
.about-graphic-orbit::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(67, 90, 255, 0.9);
}
.about-graphic-orbit-2 {
  inset: 22%;
  border-color: rgba(140, 160, 255, 0.2);
  animation-duration: 18s;
  animation-direction: reverse;
}
.about-graphic-orbit-2::before {
  width: 6px;
  height: 6px;
  background: #8fa3ff;
  box-shadow: 0 0 10px rgba(140, 160, 255, 0.8);
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-graphic-logo {
  position: relative;
  z-index: 2;
  height: 56px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-text { text-align: center; }
  .about-text h2 { text-align: center; }
  .about-graphic { width: 260px; height: 260px; }
}

/* Join Section */
.join-section {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 7rem;
  z-index: 2;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.28), transparent) no-repeat,
    linear-gradient(90deg, transparent, rgba(67, 90, 255, 0.28), transparent) no-repeat,
    radial-gradient(ellipse 50% 45% at 50% 50%, rgba(67, 90, 255, 0.28) 0%, transparent 65%),
    #0a1228;
  background-size: 100% 1px, 100% 1px, 180% 180%, 100% 100%;
  background-position: 0 0, 0 100%, 50% 50%, 0 0;
  animation: join-glow-drift 14s ease-in-out infinite;
}
@keyframes join-glow-drift {
  0%, 100% { background-position: 0 0, 0 100%, 30% 40%, 0 0; }
  25% { background-position: 0 0, 0 100%, 70% 30%, 0 0; }
  50% { background-position: 0 0, 0 100%, 60% 70%, 0 0; }
  75% { background-position: 0 0, 0 100%, 35% 65%, 0 0; }
}
.join-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(140, 160, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 160, 255, 0.1) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, #000 30%, transparent 85%);
          mask-image: radial-gradient(ellipse 70% 70% at center, #000 30%, transparent 85%);
  animation: grid-shift 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.join-section .container { position: relative; z-index: 2; }
.join-section .container { position: relative; z-index: 2; }
.join-section .eyebrow { color: #8fa3ff; text-shadow: 0 0 18px rgba(67, 90, 255, 0.5); }
.join-section h2 { color: #fff; }
.join-section .section-lede { color: rgba(255, 255, 255, 0.7); }

#reviews .discord-banner {
  margin-top: 3rem;
}

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.join-image {
  position: relative;
}
.join-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.join-image::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%, rgba(67, 90, 255, 0.18) 100%);
  z-index: -1;
  filter: blur(20px);
}
@media (max-width: 880px) {
  .join-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .join-image { max-width: 480px; margin: 0 auto; order: 2; }
  .join-steps { order: 1; }
}

/* Join Timeline */
.join-steps {
  max-width: 100%;
  margin: 0;
  position: relative;
  padding-left: 70px;
}
.join-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.55) 15%,
    rgba(255, 255, 255, 0.55) 85%,
    rgba(255, 255, 255, 0.1) 100%);
  border-radius: 2px;
}
.join-step {
  position: relative;
  padding: 0.4rem 0 2.2rem 1.4rem;
}
.join-step:last-child { padding-bottom: 0; }
.join-step-num {
  position: absolute;
  left: -66px;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #2541b5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 0 4px rgba(67, 90, 255, 0.45), 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.4);
  z-index: 2;
  transition: transform 0.25s, box-shadow 0.25s;
}
.join-step-num::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse-ring 3s ease-out infinite;
  pointer-events: none;
}
.join-step:hover .join-step-num {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.5);
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.join-step-content {
  flex: 1;
  position: relative;
}
.join-step-content::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 22px;
  width: 1rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.join-step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.join-step-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 560px;
}
@media (max-width: 640px) {
  .join-steps { padding-left: 56px; }
  .join-steps::before { left: 22px; }
  .join-step-num { left: -56px; width: 44px; height: 44px; font-size: 1.05rem; }
}

#rules {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 10% 20%, rgba(67, 90, 255, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 90% 80%, rgba(67, 90, 255, 0.22) 0%, transparent 60%),
    var(--bg);
}
#rules .container { position: relative; z-index: 1; }
.reviews-faq-wrap {
  position: relative;
  background:
    radial-gradient(ellipse 35% 30% at 80% 12%, rgba(67, 90, 255, 0.32) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 15% 50%, rgba(67, 90, 255, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 85% 88%, rgba(67, 90, 255, 0.26) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
#reviews, #faq {
  background: transparent;
  position: relative;
  z-index: 1;
}
#reviews { padding-bottom: 0; }
#faq { padding-top: 3rem; }
#reviews .discord-banner { margin-top: 3rem; margin-bottom: 0; }

/* Rules */
.rules-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto 3rem;
}
.rule-stat {
  background: linear-gradient(180deg, rgba(67, 90, 255, 0.08) 0%, transparent 100%);
  border: 1px solid rgba(67, 90, 255, 0.3);
  border-radius: 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.rule-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 90, 255, 0.6);
  box-shadow: 0 10px 28px rgba(67, 90, 255, 0.18);
}
.rule-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #8fa3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  line-height: 1;
}
.rule-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.rule-box {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.rule-box:hover {
  border-color: rgba(67, 90, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(67, 90, 255, 0.15);
}
.rule-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: #22e08a;
  background: rgba(34, 224, 138, 0.12);
  border: 1px solid rgba(34, 224, 138, 0.4);
  border-radius: 50%;
}
.rule-box p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}
.rule-box strong { color: var(--text); font-weight: 600; }

.rule-box-warning .rule-num {
  color: #ff7a7a;
  background: rgba(255, 90, 90, 0.12);
  border-color: rgba(255, 90, 90, 0.35);
}
.rule-box-warning:hover {
  border-color: rgba(255, 90, 90, 0.45);
  box-shadow: 0 10px 24px rgba(255, 90, 90, 0.12);
}

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

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background:
    linear-gradient(180deg, rgba(67, 90, 255, 0.05) 0%, transparent 100%),
    var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 3.2rem;
  font-family: Georgia, serif;
  color: rgba(67, 90, 255, 0.22);
  line-height: 1;
  pointer-events: none;
}
.review-card { padding-top: 2.4rem; }
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 90, 255, 0.45);
  box-shadow: 0 16px 40px rgba(67, 90, 255, 0.18);
}
.review-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #6478ff 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  flex-shrink: 0;
}
.review-avatar-img { padding: 0; background: #0a0f1e; }
.review-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.review-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.review-meta { font-size: 0.78rem; color: var(--text-muted); }

/* Discord Banner */
.discord-section { padding: 3rem 0; }
.discord-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(88, 101, 242, 0.4);
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.25);
}
.discord-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(120, 130, 255, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(88, 101, 242, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #4752c4 0%, #5865f2 50%, #3c45a5 100%);
  z-index: 0;
}
.discord-banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.18) 50%, transparent 65%);
  transform: skewX(-18deg);
  animation: cta-shine 5s ease-in-out infinite;
}
.discord-banner-content {
  position: relative;
  z-index: 1;
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.discord-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: #fff;
  backdrop-filter: blur(8px);
}
.discord-icon svg { width: 36px; height: auto; }
.discord-banner-text { flex: 1; min-width: 220px; }
.discord-banner-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.discord-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
.discord-btn {
  background: #fff;
  color: #4752c4;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-shadow: none;
  flex-shrink: 0;
}
.discord-btn:hover {
  background: #f0f0f0;
  color: #3c45a5;
}

@media (max-width: 720px) {
  .discord-banner-content { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

/* CTA */
.cta-section {
  position: relative;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(120, 160, 255, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(67, 90, 255, 0.45) 0%, transparent 55%),
    linear-gradient(135deg, #1a2db8 0%, #2541d4 50%, #0a1455 100%);
  border-top: 1px solid rgba(120, 140, 255, 0.3);
  border-bottom: 1px solid rgba(120, 140, 255, 0.3);
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 200px 150px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 350px 80px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 450px 200px, rgba(255,255,255,0.5), transparent);
  background-size: 500px 280px;
  background-repeat: repeat;
  opacity: 0.6;
  pointer-events: none;
}
.cta-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: cta-shine 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.cta-inner { position: relative; z-index: 2; }
@keyframes cta-shine {
  0% { left: -60%; }
  55%, 100% { left: 160%; }
}
.cta-section h2 {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.6rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.8rem;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  color: var(--text-muted);
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

/* Legal pages */
.legal-page {
  padding: 9rem 0 5rem;
  max-width: 100%;
}
.legal-page .container { max-width: 820px; }
.legal-page .eyebrow {
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.legal-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-page section { margin-bottom: 2.4rem; }
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 1.4rem 0 0.6rem;
}
.legal-page a { color: var(--accent); }
.legal-page p, .legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.legal-page ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-page li { margin-bottom: 0.4rem; }
.legal-page strong { color: var(--text); font-weight: 600; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.footer-logo {
  height: 36px;
  width: auto;
  display: block;
}
.footer-sponsor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--border);
}
.footer-sponsor-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.footer-sponsor img {
  height: 24px;
  width: auto;
  display: block;
}
.footer-links {
  display: flex;
  gap: 1.8rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}
.footer .disclaimer { margin-top: 0.5rem; font-size: 0.78rem; opacity: 0.7; max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; gap: 1rem; }
  .footer-sponsor { padding-left: 0; border-left: none; }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .section { padding: 4rem 0; }
}
