/* ═══════════════════════════════════════════
   PAGE STYLES — Wizard Ascension Main Page
   ═══════════════════════════════════════════ */

/* ── PAGE LOADER ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#page-loader.hide {
  opacity: 0;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 360px;
  max-width: 92vw;
}
.loader-logo {
  font-family: var(--font-deco);
  font-size: clamp(10px, 2vw, 15px);
  color: var(--gold);
  animation: loader-glow 1.5s ease-in-out infinite;
  letter-spacing: 3px;
}
.loader-ascii-wrap {
  font-family: var(--font-vt);
  font-size: 22px;
  color: var(--sol-green);
  display: flex;
  align-items: center;
  gap: 2px;
}
.loader-ascii-bracket { color: var(--border-bright); }
#loader-ascii-fill    { color: var(--purple-bright); letter-spacing: 0; }
#loader-ascii-empty   { color: rgba(255,255,255,0.12); letter-spacing: 0; }
.loader-ascii-pct {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--gold);
  margin-left: 10px;
  min-width: 36px;
}
.loader-log {
  width: 100%;
  text-align: left;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loader-log-line {
  font-family: var(--font-vt);
  font-size: 17px;
  color: var(--text-dim);
  opacity: 0;
  animation: log-fade 0.3s ease forwards;
}
.loader-log-line.done { color: var(--sol-green); }
.loader-text {
  font-family: var(--font-vt);
  font-size: 20px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(5, 0, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border-bright); }
.nav-logo {
  font-family: var(--font-deco);
  font-size: clamp(8px, 1.2vw, 12px);
  color: var(--text-main);
  letter-spacing: 2px;
  white-space: nowrap;
}
.nav-logo span { color: var(--sol-green); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--text-dim);
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-main); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  transition: background 0.2s;
}
.nav-burger:hover span { background: var(--text-main); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 8999;
  background: rgba(5,0,15,0.97);
  border-bottom: 1px solid var(--border-bright);
  padding: 24px 32px;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile-link {
  font-family: var(--font-deco);
  font-size: 10px;
  color: var(--text-dim);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:hover { color: var(--text-main); }

/* ── THREE.JS CANVAS ── */
#three-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-badge {
  font-family: var(--font-deco);
  font-size: clamp(6px, 1vw, 9px);
  color: var(--sol-green);
  border: 1px solid var(--sol-green);
  padding: 6px 16px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  animation: badge-blink 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(20,241,149,0.2);
}
@keyframes badge-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.65; }
}

.glitch-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-deco);
  font-size: clamp(26px, 6vw, 72px);
  line-height: 1.3;
  color: var(--text-main);
  text-shadow: 0 0 40px rgba(168,85,247,0.5), var(--pixel-shadow);
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
}
.hero-title .line2 { color: var(--gold); display: block; }
.glitch-layer1,
.glitch-layer2 {
  position: absolute;
  inset: 0;
  font-family: var(--font-deco);
  font-size: clamp(26px, 6vw, 72px);
  line-height: 1.3;
  letter-spacing: 4px;
  pointer-events: none;
}
.glitch-layer1 {
  color: var(--sol-green);
  animation: glitch-1 10s infinite;
  z-index: 2;
  opacity: 0;
}
.glitch-layer2 {
  color: var(--red);
  animation: glitch-2 10s infinite;
  z-index: 3;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-vt);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--text-dim);
  letter-spacing: 4px;
  margin-bottom: 28px;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-num {
  font-family: var(--font-deco);
  font-size: clamp(12px, 1.8vw, 18px);
  color: var(--gold);
  text-shadow: 0 0 12px rgba(251,191,36,0.5);
}
.hero-stat-label {
  font-family: var(--font-vt);
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 2px;
}
.hero-stat-sep {
  color: var(--border-bright);
  font-size: 20px;
}

.hero-online {
  font-family: var(--font-vt);
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.hero-online-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 0;
  display: inline-block;
  animation: dot-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%,100% { box-shadow: 0 0 4px var(--green); opacity: 1; }
  50%      { box-shadow: 0 0 12px var(--green); opacity: 0.6; }
}

.hero-wizard {
  position: relative;
  display: inline-block;
  margin: 16px auto;
  animation: float 3s ease-in-out infinite;
}
.hero-wizard img {
  width: clamp(80px, 12vw, 140px);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 24px rgba(168,85,247,0.6));
}
.hero-wizard-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.35), transparent 70%);
  z-index: 1;
}
.hero-wizard-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0; height: 0;
  z-index: 1;
}
.orbit-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  top: -2px;
  left: -2px;
}
.orbit-particle:nth-child(1) { animation: orbit 3s linear infinite; background: var(--gold); }
.orbit-particle:nth-child(2) { animation: orbit 3s linear infinite -0.5s; background: var(--purple-bright); }
.orbit-particle:nth-child(3) { animation: orbit 3s linear infinite -1s; background: var(--sol-green); }
.orbit-particle:nth-child(4) { animation: orbit 4s linear infinite -1.5s; background: var(--gold); width: 3px; height: 3px; }
.orbit-particle:nth-child(5) { animation: orbit 4s linear infinite -2s; background: var(--purple-bright); width: 3px; height: 3px; }
.orbit-particle:nth-child(6) { animation: orbit 4s linear infinite -2.5s; background: var(--sol-green); width: 3px; height: 3px; }

.hero-wizard-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-vt);
  font-size: 15px;
  color: var(--gold);
  background: var(--bg-card);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
  margin-bottom: 8px;
}
.hero-wizard:hover .hero-wizard-tooltip { opacity: 1; }

.hero-terminal {
  background: rgba(14,0,32,0.85);
  border: 2px solid var(--border-bright);
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-vt);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  max-width: 580px;
  width: 100%;
  margin: 16px auto;
  box-shadow: var(--pixel-shadow-purple);
  position: relative;
}
.hero-terminal::before {
  content: 'SYSTEM TERMINAL';
  position: absolute;
  top: -12px;
  left: 16px;
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--border-bright);
  background: var(--bg-deep);
  padding: 0 6px;
}
.terminal-line { display: block; }
.terminal-line .tag  { color: var(--purple-bright); }
.terminal-line .val  { color: var(--sol-green); }
.terminal-line .warn { color: var(--gold); }
.cursor-blink::after {
  content: '█';
  color: var(--sol-green);
  animation: cur-blink 1s step-end infinite;
}
@keyframes cur-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  margin: 20px auto 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cta-pulse-ring,
.cta-pulse-ring-2 {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}
.cta-pulse-ring-2 { animation-delay: 1s; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  justify-content: center;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: var(--bg-card2);
  border: 2px solid var(--border-bright);
  font-family: var(--font-deco);
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
  margin-left: -8px;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-social-text {
  font-family: var(--font-vt);
  font-size: 18px;
  color: var(--text-dim);
}

.hero-no-dl {
  font-family: var(--font-vt);
  font-size: 16px;
  color: var(--text-faint);
  letter-spacing: 3px;
  margin-top: 10px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-faint);
  letter-spacing: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.9; transform: translateX(-50%) translateY(4px); }
}

/* ── TRUST MARQUEE ── */
.trust-marquee-wrap {
  overflow: hidden;
  background: rgba(14,0,32,0.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: relative;
  z-index: 1;
}
.trust-marquee {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.trust-marquee span {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-dim);
  letter-spacing: 2px;
  padding: 0 20px;
}
.trust-sep { color: var(--border-bright) !important; }

/* ── FEATURES ── */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 0;
  position: relative;
  height: 280px;
  cursor: default;
  transition: border-color 0.2s;
  overflow: hidden;
}
.feature-card:hover { border-color: var(--purple-bright); }

.fc-front,
.fc-back {
  position: absolute;
  inset: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fc-back {
  background: var(--bg-card2);
  justify-content: center;
  gap: 12px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  object-fit: contain;
}
.fc-browser-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: var(--font-deco);
  font-size: 9px;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.feature-desc {
  font-family: var(--font-vt);
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}
.card-bottom-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-mid), transparent);
  margin-top: 12px;
}

.fc-back-title {
  font-family: var(--font-deco);
  font-size: 9px;
  color: var(--gold);
}
.fc-back-body {
  font-family: var(--font-vt);
  font-size: 18px;
  color: var(--text-main);
  line-height: 1.6;
}
.fc-back-tag {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--sol-green);
  border: 1px solid var(--sol-green);
  padding: 4px 8px;
  display: inline-block;
  margin-top: 4px;
}

/* ── MONSTERS ── */
.monsters-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.monsters-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.monster-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 180px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.monster-card:hover { border-color: var(--purple-bright); transform: translateY(-4px); }

.monster-sprite {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.monster-card.imp     .monster-sprite { animation: imp-shake 1.2s ease-in-out infinite; }
.monster-card.wraith  .monster-sprite { animation: wraith-float 2.5s ease-in-out infinite; }
.monster-card.crawler .monster-sprite { animation: crawler-pulse 2s ease-in-out infinite; }
.monster-card.drake   .monster-sprite { animation: drake-sway 2.5s ease-in-out infinite; transform-origin: bottom center; }
.monster-card.titan   .monster-sprite { animation: titan-pulse 2s ease-in-out infinite; }

.monster-name {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-main);
  text-align: center;
}
.monster-lvl {
  font-family: var(--font-vt);
  font-size: 15px;
  color: var(--text-dim);
}
.monster-hp-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}
.monster-hp-fill {
  height: 100%;
  background: var(--green);
  width: 100%;
  animation: hp-breathe 3s ease-in-out infinite;
}
.monster-card.titan .monster-hp-fill { background: var(--red); }
.monster-card.drake .monster-hp-fill { background: #f97316; }
.monster-card.crawler .monster-hp-fill { background: var(--cyan); }

@keyframes hp-breathe {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.monster-nameplate {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.mnp-name {
  font-family: var(--font-vt);
  font-size: 14px;
  color: var(--text-dim);
}
.mnp-type {
  font-family: var(--font-deco);
  font-size: 6px;
  padding: 2px 5px;
  border: 1px solid;
}
.mnp-type.shadow { color: #c084fc; border-color: #c084fc; }
.mnp-type.ice    { color: #67e8f9; border-color: #67e8f9; }
.mnp-type.void   { color: var(--sol-green); border-color: var(--sol-green); }
.mnp-type.fire   { color: #f97316; border-color: #f97316; }

/* ── WIZARDS EVO ── */
.wizards-section {
  background: rgba(10, 0, 22, 0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.wizards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.wizards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.wizard-evo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: default;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-width: 110px;
  transition: border-color 0.2s;
}
.wizard-evo:hover { border-color: var(--gold); }
.wizard-evo:hover .wizard-evo-name { color: var(--gold); }

.wizard-unlock-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sol-green);
  opacity: 0;
  animation: scan-line 1.5s ease-out 0.5s forwards;
}
.wizard-evo:nth-child(3) .wizard-unlock-scan { animation-delay: 0.8s; }
.wizard-evo:nth-child(5) .wizard-unlock-scan { animation-delay: 1.1s; }
.wizard-evo:nth-child(7) .wizard-unlock-scan { animation-delay: 1.4s; }
.wizard-evo:nth-child(9) .wizard-unlock-scan { animation-delay: 1.7s; }

.wizard-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card2);
  border: 1px solid var(--border-bright);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  min-width: 180px;
  box-shadow: var(--pixel-shadow-purple);
}
.wizard-evo:hover .wizard-tooltip { opacity: 1; }
.tt-name {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--gold);
}
.tt-stat {
  font-family: var(--font-vt);
  font-size: 16px;
  color: var(--text-dim);
}

.wizard-evo img {
  image-rendering: pixelated;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.3));
}
.wizard-evo-name {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-main);
  transition: color 0.2s;
}
.wizard-evo-stage {
  font-family: var(--font-vt);
  font-size: 15px;
  color: var(--text-dim);
}
.wizard-class-icons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.wci {
  font-family: var(--font-deco);
  font-size: 5px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 2px 3px;
}
.wci-mgc { color: var(--purple-bright); border-color: var(--purple-bright); }
.wci-def { color: var(--cyan); border-color: var(--cyan); }

.wizard-evo-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  position: relative;
  overflow: hidden;
}
.wizard-evo-line {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple-bright), var(--sol-green));
  animation: evo-line-fill 0.5s ease forwards;
}
.wizard-evo-connector:nth-child(2)  .wizard-evo-line { animation-delay: 0.6s; }
.wizard-evo-connector:nth-child(4)  .wizard-evo-line { animation-delay: 0.9s; }
.wizard-evo-connector:nth-child(6)  .wizard-evo-line { animation-delay: 1.2s; }
.wizard-evo-connector:nth-child(8)  .wizard-evo-line { animation-delay: 1.5s; }

/* ── SOON SECTION ── */
.soon-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.soon-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-height: 220px;
  overflow: hidden;
}
.soon-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  filter: blur(2px) saturate(0.4);
  transition: filter 0.25s;
  pointer-events: none;
}
.soon-card:hover .soon-card-inner {
  filter: blur(1px) saturate(0.55);
}
.soon-card-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  image-rendering: pixelated;
}
.soon-card-title {
  font-family: var(--font-deco);
  font-size: 9px;
  color: var(--text-main);
  letter-spacing: 1px;
}
.soon-card-desc {
  font-family: var(--font-vt);
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.5;
}

.soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 0, 15, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: not-allowed;
  transition: background 0.25s;
}
.soon-card:hover .soon-overlay {
  background: rgba(5, 0, 15, 0.68);
}
.soon-text {
  font-family: var(--font-deco);
  font-size: clamp(14px, 2.2vw, 22px);
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  letter-spacing: 3px;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}
.soon-sublabel {
  font-family: var(--font-vt);
  font-size: 18px;
  color: var(--text-faint);
  letter-spacing: 2px;
}

/* ── REWARDS ── */
.reward-section {
  background: rgba(10,0,22,0.6);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.reward-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.reward-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.reward-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.reward-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.reward-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reward-icon-img { width: 100%; height: 100%; object-fit: contain; image-rendering: pixelated; }
.reward-icon-sol { width: 48px; height: auto; }
.reward-card-title {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--gold);
}
.reward-card-desc {
  font-family: var(--font-vt);
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}
.reward-yield {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--sol-green);
  margin-top: 4px;
}

/* ── CTA ── */
.cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cta-box {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  width: 100%;
  padding: 52px 40px;
  background: var(--bg-card);
  border: 2px solid var(--border-bright);
  box-shadow: 0 0 60px rgba(168,85,247,0.15);
}
.cta-magic-circle {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.cta-ring-outer  { animation: spin-slow  16s linear infinite; transform-origin: 170px 170px; }
.cta-ring-mid    { animation: spin-slow  10s linear infinite reverse; transform-origin: 170px 170px; }
.cta-ring-inner-el  { animation: spin-slow  22s linear infinite; transform-origin: 170px 170px; }
.cta-ring-marks-el  { animation: spin-slow  22s linear infinite; transform-origin: 170px 170px; }
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cta-limited-slots {
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-deco);
  font-size: clamp(16px, 3vw, 26px);
  color: var(--text-main);
  text-shadow: 0 0 20px rgba(168,85,247,0.5), var(--pixel-shadow);
  position: relative;
  z-index: 1;
}
.cta-desc {
  font-family: var(--font-vt);
  font-size: 20px;
  color: var(--text-dim);
  line-height: 1.5;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.cta-countdown {
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card2);
  border: 1px solid var(--border-bright);
  padding: 10px 16px;
  min-width: 64px;
}
.cta-cd-num {
  font-family: var(--font-deco);
  font-size: clamp(14px, 2vw, 20px);
  color: var(--purple-bright);
  text-shadow: 0 0 12px rgba(168,85,247,0.5);
}
.cta-cd-label {
  font-family: var(--font-vt);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 2px;
}
.cta-cd-sep {
  font-family: var(--font-deco);
  font-size: 20px;
  color: var(--border-bright);
  padding-bottom: 16px;
}
.cta-btn { position: relative; z-index: 1; }
.cta-no-dl {
  font-family: var(--font-vt);
  font-size: 16px;
  color: var(--text-faint);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* ── NOTIFY FORM ── */
.notify-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.notify-input {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-vt);
  font-size: 20px;
  padding: 12px 16px;
  background: var(--bg-card2);
  border: 2px solid var(--border-bright);
  color: var(--text-main);
  outline: none;
  letter-spacing: 1px;
  transition: border-color 0.2s;
}
.notify-input::placeholder { color: var(--text-faint); }
.notify-input:focus { border-color: var(--purple-bright); }
.notify-success {
  display: none;
  font-family: var(--font-deco);
  font-size: 8px;
  color: var(--sol-green);
  border: 1px solid var(--sol-green);
  padding: 14px 20px;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 0 16px rgba(20,241,149,0.15);
  line-height: 1.8;
}
.notify-success.show { display: block; }
.notify-perks {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.notify-perk {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 5px 10px;
  letter-spacing: 1px;
}

/* ── FAQ ── */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-main);
  font-family: var(--font-deco);
  font-size: 8px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  letter-spacing: 1px;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-arrow { transition: transform 0.25s; color: var(--purple-bright); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-card2);
}
.faq-a p {
  font-family: var(--font-vt);
  font-size: 18px;
  color: var(--text-dim);
  padding: 16px 20px;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ── FOOTER ── */
.footer {
  background: rgba(5,0,15,0.95);
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: var(--font-deco);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 2px;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-deco);
  font-size: 7px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-link-tg:hover  { color: #29b6f6; }
.footer-link-tw:hover  { color: var(--text-main); }
.footer-link-dc:hover  { color: #7289da; }
.footer-social-icon {
  width: 14px; height: 14px;
}
.footer-copy {
  font-family: var(--font-vt);
  font-size: 16px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 2px;
}
.footer-solana-logo { width: 20px; height: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .soon-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  .soon-grid { grid-template-columns: 1fr; }
  .monsters-row { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; }
  .wizards-row  { justify-content: flex-start; }
  .hero-terminal { font-size: 15px; padding: 16px; }
  .cta-box { padding: 32px 20px; }
  .cta-countdown { gap: 2px; }
  .cta-cd-block { padding: 8px 10px; min-width: 50px; }
}
