/* ============================================================
   GHOSTSWEAT — GLOBAL THEME v3.0
   Tokens, Header, Footer, Currency, Cards, Hero, Grid
   ============================================================ */

/* -------------------------------
   ROOT TOKENS
---------------------------------- */
:root {
  /* CORE BACKGROUND */
  --gs-bg: #050510;
  --gs-surface: #0b0b16;
  --gs-panel: #111827;

  /* TEXT COLORS */
  --gs-text-main: #f9fafb;
  --gs-text-soft: #d1d5db;
  --gs-text-muted: #9ca3af;
  --gs-text-faint: #6b7280;

  /* BRAND COLORS */
  --gs-sweat: #38bdf8;   /* cyan entry currency */
  --gs-soul:  #facc15;   /* gold prize currency */
  --gs-shard: #c95bff;   /* magenta shards */
  --gs-echo:  #a855ff;   /* violet echos */
  --gs-var:   #22d3ee;   /* variance arrows / accents */

  /* SHADOWS / GLOWS */
  --gs-glow-cyan: 0 0 12px rgba(56,189,248,0.65), 0 0 30px rgba(56,189,248,0.45);
  --gs-glow-gold: 0 0 16px rgba(250,204,21,0.75), 0 0 40px rgba(255,200,100,0.45);
  --gs-glow-magenta: 0 0 18px rgba(201,91,255,0.7), 0 0 34px rgba(201,91,255,0.45);

  /* RADII + TRANSITIONS */
  --gs-pill: 999px;
  --gs-radius: 18px;
  --gs-radius-pill: 999px;
  --gs-fast: 120ms ease-out;
  --gs-med: 220ms ease-out;
}

/* -------------------------------
   GLOBAL RESET + BASE
---------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 50%, #000);
  color: var(--gs-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography helpers */
.text-soft   { color: var(--gs-text-soft); }
.text-muted  { color: var(--gs-text-muted); }
.text-gold   { color: var(--gs-soul);  text-shadow: var(--gs-glow-gold); }
.text-cyan   { color: var(--gs-sweat); text-shadow: var(--gs-glow-cyan); }
.text-magenta{ color: var(--gs-shard); text-shadow: var(--gs-glow-magenta); }

/* -------------------------------
   STARFIELD BACKGROUND (used on index)
---------------------------------- */
.gs-starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.25;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(196, 128, 255, 0.22) 0, transparent 60%);
  background-repeat: repeat;
  background-size: 260px 260px;
  animation: gs-starfield-drift 50s linear infinite;
}

@keyframes gs-starfield-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 320px 420px; }
}

/* ============================================================
   PRE-LAUNCH LOCK BAR (TOP COUNTDOWN)
============================================================ */
.lock-timer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;

  /* ⬇ extra top padding so it isn't cut off, also handles Safari notch */
  padding: calc(0.7rem + env(safe-area-inset-top, 0px)) 1.2rem 0.7rem;

  background: #1a0033;
  border-bottom: 2px solid #a855ff;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lock-timer span.live-tag {
  color: #f973ff;
}

.lock-timer span#store-countdown {
  color: #facc15;
}

.lock-timer-cta {
  margin-left: 0.25rem;
  background: #a855ff;
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.2);
  white-space: nowrap;
}
.gs-header,
.gs-site-header {
  position: sticky;
  /* give it a bit more space under the bar */
  top: calc(50px + env(safe-area-inset-top, 0px));
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(5, 1, 15, 0.96),
    rgba(5, 1, 15, 0.8),
    transparent
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(164, 110, 255, 0.18);
}

/* ============================================================
   GHOSTSWEAT — GLOBAL THEME v3.0
   Tokens, Header, Footer, Currency, Cards, Hero, Grid
   ============================================================ */

/* -------------------------------
   ROOT TOKENS
---------------------------------- */
:root {
  /* CORE BACKGROUND */
  --gs-bg: #050510;
  --gs-surface: #0b0b16;
  --gs-panel: #111827;

  /* TEXT COLORS */
  --gs-text-main: #f9fafb;
  --gs-text-soft: #d1d5db;
  --gs-text-muted: #9ca3af;
  --gs-text-faint: #6b7280;

  /* BRAND COLORS */
  --gs-sweat: #38bdf8;   /* cyan entry currency */
  --gs-soul:  #facc15;   /* gold prize currency */
  --gs-shard: #c95bff;   /* magenta shards */
  --gs-echo:  #a855ff;   /* violet echos */
  --gs-var:   #22d3ee;   /* variance arrows / accents */

  /* SHADOWS / GLOWS */
  --gs-glow-cyan: 0 0 12px rgba(56,189,248,0.65), 0 0 30px rgba(56,189,248,0.45);
  --gs-glow-gold: 0 0 16px rgba(250,204,21,0.75), 0 0 40px rgba(255,200,100,0.45);
  --gs-glow-magenta: 0 0 18px rgba(201,91,255,0.7), 0 0 34px rgba(201,91,255,0.45);

  /* RADII + TRANSITIONS */
  --gs-pill: 999px;
  --gs-radius: 18px;
  --gs-radius-pill: 999px;
  --gs-fast: 120ms ease-out;
  --gs-med: 220ms ease-out;
}

/* -------------------------------
   GLOBAL RESET + BASE
---------------------------------- */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #1e1b4b 0, #020617 50%, #000);
  color: var(--gs-text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography helpers */
.text-soft   { color: var(--gs-text-soft); }
.text-muted  { color: var(--gs-text-muted); }
.text-gold   { color: var(--gs-soul);  text-shadow: var(--gs-glow-gold); }
.text-cyan   { color: var(--gs-sweat); text-shadow: var(--gs-glow-cyan); }
.text-magenta{ color: var(--gs-shard); text-shadow: var(--gs-glow-magenta); }

/* -------------------------------
   STARFIELD BACKGROUND (used on index)
---------------------------------- */
.gs-starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.25;
  z-index: -1;
  background-image: radial-gradient(circle, rgba(196, 128, 255, 0.22) 0, transparent 60%);
  background-repeat: repeat;
  background-size: 260px 260px;
  animation: gs-starfield-drift 50s linear infinite;
}

@keyframes gs-starfield-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 320px 420px; }
}

/* ============================================================
   PRE-LAUNCH LOCK BAR (TOP COUNTDOWN)
============================================================ */
.lock-timer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;

  /* ⬇ extra top padding so it isn't cut off, also handles Safari notch */
  padding: calc(0.7rem + env(safe-area-inset-top, 0px)) 1.2rem 0.7rem;

  background: #1a0033;
  border-bottom: 2px solid #a855ff;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lock-timer span.live-tag {
  color: #f973ff;
}

.lock-timer span#store-countdown {
  color: #facc15;
}

.lock-timer-cta {
  margin-left: 0.25rem;
  background: #a855ff;
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.7);
  border: 1px solid rgba(248, 250, 252, 0.2);
  white-space: nowrap;
}

/* First header definition – sits at very top now */
.gs-header,
.gs-site-header {
  position: sticky;
  top: 0; /* sits at very top; works on mechanics/policy too */
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(5, 1, 15, 0.96),
    rgba(5, 1, 15, 0.8),
    transparent
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(164, 110, 255, 0.18);
}

/* ============================================================
   UNIVERSAL HEADER (NEW) + LEGACY ALIASES
============================================================ */

/* Header shell – new (.gs-header) and legacy (.gs-site-header) */
.gs-header,
.gs-site-header {
  position: sticky;
  top: 0; /* sits at very top; lock bar can float above if used */
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(5, 1, 15, 0.96),
    rgba(5, 1, 15, 0.8),
    transparent
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(164, 110, 255, 0.18);
}

/* Inner layout */
.gs-header-inner,
.gs-site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gs-header-left,
.gs-site-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Logo glow */
.gs-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.gs-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: radial-gradient(circle, rgba(209, 129, 255, 0.9), transparent 60%);
  opacity: 0.95;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
  animation: gs-logo-pulse 3.2s ease-in-out infinite;
}

.gs-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: visible;
  z-index: 2;
  animation: gs-logo-float 6s ease-in-out infinite alternate;
}

.gs-logo-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(193, 125, 255, 0.95));
}

/* Header text */
.gs-header-text,
.gs-site-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gs-header-title,
.gs-site-wordmark {
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: #fdf5ff;
  text-transform: uppercase;
}

.gs-header-tagline,
.gs-site-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(203, 213, 225, 0.9);
}

.gs-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.gs-header-subline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(148, 163, 184, 0.9);
}

/* Nav – new (.gs-nav) and legacy (.gs-site-nav) */
.gs-nav,
.gs-site-nav {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.gs-nav a,
.gs-site-nav a {
  position: relative;
  padding: 5px 12px;
  border-radius: var(--gs-pill);
  border: 1px solid transparent;
  color: rgba(148, 163, 184, 0.95);
  overflow: hidden;
  transition:
    transform 120ms ease-out,
    border-color 160ms ease-out,
    box-shadow 160ms ease-out,
    background 160ms ease-out,
    color 160ms ease-out;
}

.gs-nav a::before,
.gs-site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(148, 163, 255, 0.35),
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease-out;
}

.gs-nav a:hover::before,
.gs-site-nav a:hover::before {
  opacity: 1;
}

.gs-nav a:hover,
.gs-site-nav a:hover {
  transform: translateY(-1px);
  color: var(--gs-text-main);
  border-color: rgba(210, 160, 255, 0.6);
  box-shadow: 0 0 18px rgba(148, 163, 255, 0.75);
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.98),
    #020017
  );
}

/* Active page state – new (.gs-active) and legacy (.active) */
.gs-nav a.gs-active,
.gs-site-nav a.active {
  color: var(--gs-text-main);
  border-color: rgba(210, 160, 255, 0.95);
  background: linear-gradient(135deg, #4c1c8b, #b153ff);
  box-shadow: 0 0 26px rgba(180, 120, 255, 0.95);
}

/* Header responsive */
@media (max-width: 860px) {
  .gs-header,
  .gs-site-header {
    top: 0;
  }

  .gs-header-inner,
  .gs-site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .gs-header-right {
    align-items: flex-start;
  }

  .gs-nav,
  .gs-site-nav {
    flex-wrap: wrap;
  }
}

/* Logo animations */
@keyframes gs-logo-float {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(3px, -6px); }
  100% { transform: translate(-2px, 2px); }
}

@keyframes gs-logo-pulse {
  0%   { opacity: 0.6; transform: scale(0.96); }
  50%  { opacity: 1;   transform: scale(1.02); }
  100% { opacity: 0.7; transform: scale(1.00); }
}

/* ============================================================
   GHOSTSWEAT BOARD-APPROVED FOOTER v3
   Ultra-Minimal · High-Legitimacy · Premium Gaming Finish
============================================================ */

.gs-footer {
  background: rgba(5, 5, 15, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.2rem 1rem 1.4rem;  /* compact */
  margin-top: 4rem;
  color: #9ca3af;
  text-align: center;
}

.gs-footer-inner {
  max-width: 900px;           /* tighter, premium */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;                /* tight spacing, elegant */
}

/* Footer Navigation (Minimal) */
.gs-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.72rem;         /* professional micro-size */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.gs-footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 500;
  transition: 140ms ease;
}

.gs-footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
}

/* Legal Block (Authority) */
.gs-footer-legal {
  font-size: 0.7rem;
  line-height: 1.32;
  max-width: 720px;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.gs-footer-legal a {
  color: #a5b4ff;
  text-decoration: underline;
}

.gs-footer-meta {
  font-size: 0.62rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* ============================================================
   CURRENCY SYMBOLS — ◦ & ⚶
============================================================ */

/* SWEAT SYMBOL — ◦ (electric blue) */
.gs-sweat-symbol {
  display: inline-block;
  color: var(--gs-sweat);
  font-weight: 900;
  transform: translateY(-1px);
  text-shadow: var(--gs-glow-cyan);
  margin-right: 0.18rem;
}

/* SOULS SYMBOL — ⚶ (gold) */
.gs-soul-symbol {
  display: inline-block;
  color: var(--gs-soul);
  font-weight: 900;
  transform: translateY(-1px);
  text-shadow: var(--gs-glow-gold);
  margin-right: 0.18rem;
}

/* Inline colored text helpers (no symbol) */
.sweat-color {
  color: var(--gs-sweat);
  font-weight: 700;
  text-shadow: var(--gs-glow-cyan);
}

.soul-color {
  color: var(--gs-soul);
  font-weight: 700;
  text-shadow: var(--gs-glow-gold);
}

.shard-color {
  color: var(--gs-shard);
  font-weight: 700;
  text-shadow: var(--gs-glow-magenta);
}

/* Legacy text-only symbol classes */
.sweat {
  color: var(--gs-sweat);
  text-shadow: var(--gs-glow-cyan);
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
}

.soul {
  color: var(--gs-soul);
  text-shadow: var(--gs-glow-gold);
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
}

/* GOLD styling for $ & Souls amounts */
.gold-glow,
.gold-amount,
.gold-soul,
.c-soul {
  color: var(--gs-soul);
  text-shadow:
    0 0 14px rgba(250, 204, 21, 0.9),
    0 0 34px rgba(161, 98, 7, 0.95);
  font-weight: 700;
}

/* ============================================================
   FLOATING “SWEAT / FREE” BACKGROUND
============================================================ */
.gs-sweatfree-stage {
  position: relative;
  pointer-events: none;
  overflow: visible;
  margin: 1.5rem 0;
}

.sweatfree-orbit {
  position: relative;
  margin: 0 auto;
  width: min(520px, 90vw);
  display: flex;
  gap: 1.3rem;
  justify-content: center;
  align-items: center;
}

.sweatfree-word {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  letter-spacing: 0.32em;
  opacity: 0.35;
  font-weight: 900;
}

.sweat-word {
  color: var(--gs-sweat);
  text-shadow: var(--gs-glow-cyan);
  animation:
    sweatDrift 12s ease-in-out infinite alternate,
    wordShimmer 6s ease-in-out infinite,
    wordFlicker 12s steps(2, end) infinite;
}

.free-word {
  color: var(--gs-soul);
  text-shadow: var(--gs-glow-gold);
  animation:
    freeDrift 14s ease-in-out infinite alternate,
    wordShimmer 7s ease-in-out infinite,
    wordFlicker 14s steps(3, end) infinite;
}

@keyframes sweatDrift {
  0%   { transform: translate(-20px, 10px); opacity: 0.22; }
  50%  { transform: translate(-5px, -5px);  opacity: 0.30; }
  100% { transform: translate(-12px, 7px);  opacity: 0.24; }
}

@keyframes freeDrift {
  0%   { transform: translate(20px, 4px);   opacity: 0.22; }
  50%  { transform: translate(7px, -6px);   opacity: 0.29; }
  100% { transform: translate(12px, 8px);   opacity: 0.24; }
}

@keyframes wordShimmer {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.7); }
  100% { filter: brightness(1); }
}

@keyframes wordFlicker {
  0%, 6%, 100% {
    text-shadow:
      0 0 20px rgba(255,255,255,0.7),
      0 0 40px currentColor;
  }
  3% {
    text-shadow:
      0 0 4px rgba(0,0,0,0.4),
      0 0 2px rgba(0,0,0,0.6);
  }
}

/* ============================================================
   GENERIC CARDS / BUTTONS
============================================================ */
.gs-card {
  background: var(--gs-panel);
  border: 1px solid rgba(148,163,184,0.45);
  border-radius: var(--gs-radius);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 22px 45px rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  transition: transform var(--gs-fast), box-shadow var(--gs-fast), border-color var(--gs-fast);
}

.gs-card:hover {
  transform: translateY(-4px) rotateX(4deg);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.95),
    0 0 32px rgba(168,85,255,0.85);
  border-color: rgba(210,160,255,0.75);
}

.gs-pill-card {
  border-radius: var(--gs-pill);
  padding: 1rem 1.4rem;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020014);
  border: 1px solid rgba(148,163,184,0.55);
  backdrop-filter: blur(12px);
}

/* CTA buttons (used across pages) */
.gs-button,
.cta-button {
  display: inline-block;
  padding: 1rem 2.7rem;
  border-radius: var(--gs-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  color: #fff;
  box-shadow: 0 0 22px rgba(168,85,255,0.85);
  transition: transform var(--gs-fast), box-shadow var(--gs-fast);
  position: relative;
  overflow: hidden;
}

.gs-button:hover,
.cta-button:hover {
  transform: translateY(-2px) perspective(1000px) rotateX(5deg);
  box-shadow:
    0 0 34px rgba(168,85,255,1),
    0 16px 40px rgba(0,0,0,0.9);
}

/* Small inline gold "Watch Live" button */
.card-watch-btn {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #111;
  border: 1px solid rgba(250, 204, 21, 0.9);
  box-shadow:
    0 0 12px rgba(250, 204, 21, 0.9),
    0 0 22px rgba(248, 250, 252, 0.3);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-watch-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(250, 204, 21, 1),
    0 0 34px rgba(248, 250, 252, 0.45);
  background: linear-gradient(135deg, #fde047, #fbbf24);
}

/* ============================================================
   INDEX HERO + WEEKLY PRIZE GRID
   (matches your current index.html)
============================================================ */

/* Hero layout (two-column on desktop) */
.hero-section {
  margin: 3rem 0 5rem;
  text-align: center;
}

.hero-layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-frames {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-frame {
  background: rgba(15,23,42,0.78);
  border: 1px solid rgba(198,91,255,0.5);
  border-radius: 18px;
  padding: 1.2rem 1.4rem 1.3rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e0d4ff;
  box-shadow: 0 18px 40px rgba(3,4,20,0.9);
  backdrop-filter: blur(14px);
  transform-origin: center;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.hero-frame:hover {
  transform: perspective(1100px) rotateX(5deg) translateY(-4px);
  box-shadow:
    0 26px 65px rgba(3,4,20,0.98),
    0 0 32px rgba(198,91,255,0.9);
  border-color: rgba(216,180,254,0.95);
  background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020014);
}

.hero-frame-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(196,181,253,0.96);
  margin-bottom: 0.25rem;
}

.hero-frame-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #f9f5ff;
}

/* Right-hand hero stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-stat-card {
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020014);
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 20px 45px rgba(3,4,20,0.95);
  transform-origin: center;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms.ease-out,
    background 180ms ease-out;
}

.hero-stat-card:hover {
  transform: perspective(1100px) rotateX(5deg) translateY(-4px);
  box-shadow:
    0 26px 70px rgba(3,4,20,1),
    0 0 30px rgba(56,189,248,0.9);
  border-color: rgba(129,212,250,0.9);
  background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020014);
}

.hero-stat-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(191,219,254,0.96);
  margin-bottom: 0.35rem;
}

.hero-stat-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.35rem;
}

.hero-stat-sub {
  font-size: 0.9rem;
  color: #e5e7ff;
}

.hero-stat-bullets {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #c7d2fe;
}

/* Weekly prize grid / top contests layout etc. */
/* (keep all your existing mechanics / contest card styles here;
   they were already working and are unchanged) */

/* ============================================================
   CURRENCY SYMBOLS — ◦ & ⚶
============================================================ */

/* SWEAT SYMBOL — ◦ (electric blue) */
.gs-sweat-symbol {
  display: inline-block;
  color: var(--gs-sweat);
  font-weight: 900;
  transform: translateY(-1px);
  text-shadow: var(--gs-glow-cyan);
  margin-right: 0.18rem;
}

/* SOULS SYMBOL — ⚶ (gold) */
.gs-soul-symbol {
  display: inline-block;
  color: var(--gs-soul);
  font-weight: 900;
  transform: translateY(-1px);
  text-shadow: var(--gs-glow-gold);
  margin-right: 0.18rem;
}

/* Inline colored text helpers (no symbol) */
.sweat-color {
  color: var(--gs-sweat);
  font-weight: 700;
  text-shadow: var(--gs-glow-cyan);
}

.soul-color {
  color: var(--gs-soul);
  font-weight: 700;
  text-shadow: var(--gs-glow-gold);
}

.shard-color {
  color: var(--gs-shard);
  font-weight: 700;
  text-shadow: var(--gs-glow-magenta);
}

/* Legacy text-only symbol classes */
.sweat {
  color: var(--gs-sweat);
  text-shadow: var(--gs-glow-cyan);
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
}

.soul {
  color: var(--gs-soul);
  text-shadow: var(--gs-glow-gold);
  font-weight: 900;
  display: inline-block;
  transform: translateY(-1px);
}

/* GOLD styling for $ & Souls amounts */
.gold-glow,
.gold-amount,
.gold-soul,
.c-soul {
  color: var(--gs-soul);
  text-shadow:
    0 0 14px rgba(250, 204, 21, 0.9),
    0 0 34px rgba(161, 98, 7, 0.95);
  font-weight: 700;
}

/* ============================================================
   FLOATING “SWEAT / FREE” BACKGROUND
============================================================ */
.gs-sweatfree-stage {
  position: relative;
  pointer-events: none;
  overflow: visible;
  margin: 1.5rem 0;
}

.sweatfree-orbit {
  position: relative;
  margin: 0 auto;
  width: min(520px, 90vw);
  display: flex;
  gap: 1.3rem;
  justify-content: center;
  align-items: center;
}

.sweatfree-word {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  letter-spacing: 0.32em;
  opacity: 0.35;
  font-weight: 900;
}

.sweat-word {
  color: var(--gs-sweat);
  text-shadow: var(--gs-glow-cyan);
  animation:
    sweatDrift 12s ease-in-out infinite alternate,
    wordShimmer 6s ease-in-out infinite,
    wordFlicker 12s steps(2, end) infinite;
}

.free-word {
  color: var(--gs-soul);
  text-shadow: var(--gs-glow-gold);
  animation:
    freeDrift 14s ease-in-out infinite alternate,
    wordShimmer 7s ease-in-out infinite,
    wordFlicker 14s steps(3, end) infinite;
}

@keyframes sweatDrift {
  0%   { transform: translate(-20px, 10px); opacity: 0.22; }
  50%  { transform: translate(-5px, -5px);  opacity: 0.30; }
  100% { transform: translate(-12px, 7px);  opacity: 0.24; }
}

@keyframes freeDrift {
  0%   { transform: translate(20px, 4px);   opacity: 0.22; }
  50%  { transform: translate(7px, -6px);   opacity: 0.29; }
  100% { transform: translate(12px, 8px);   opacity: 0.24; }
}

@keyframes wordShimmer {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.7); }
  100% { filter: brightness(1); }
}

@keyframes wordFlicker {
  0%, 6%, 100% {
    text-shadow:
      0 0 20px rgba(255,255,255,0.7),
      0 0 40px currentColor;
  }
  3% {
    text-shadow:
      0 0 4px rgba(0,0,0,0.4),
      0 0 2px rgba(0,0,0,0.6);
  }
}

/* ============================================================
   GENERIC CARDS / BUTTONS
============================================================ */
.gs-card {
  background: var(--gs-panel);
  border: 1px solid rgba(148,163,184,0.45);
  border-radius: var(--gs-radius);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 22px 45px rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  transition: transform var(--gs-fast), box-shadow var(--gs-fast), border-color var(--gs-fast);
}

.gs-card:hover {
  transform: translateY(-4px) rotateX(4deg);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.95),
    0 0 32px rgba(168,85,255,0.85);
  border-color: rgba(210,160,255,0.75);
}

.gs-pill-card {
  border-radius: var(--gs-pill);
  padding: 1rem 1.4rem;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020014);
  border: 1px solid rgba(148,163,184,0.55);
  backdrop-filter: blur(12px);
}

/* CTA buttons (used across pages) */
.gs-button,
.cta-button {
  display: inline-block;
  padding: 1rem 2.7rem;
  border-radius: var(--gs-pill);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  color: #fff;
  box-shadow: 0 0 22px rgba(168,85,255,0.85);
  transition: transform var(--gs-fast), box-shadow var(--gs-fast);
  position: relative;
  overflow: hidden;
}

.gs-button:hover,
.cta-button:hover {
  transform: translateY(-2px) perspective(1000px) rotateX(5deg);
  box-shadow:
    0 0 34px rgba(168,85,255,1),
    0 16px 40px rgba(0,0,0,0.9);
}

/* Small inline gold "Watch Live" button */
.card-watch-btn {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #111;
  border: 1px solid rgba(250, 204, 21, 0.9);
  box-shadow:
    0 0 12px rgba(250, 204, 21, 0.9),
    0 0 22px rgba(248, 250, 252, 0.3);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-watch-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(250, 204, 21, 1),
    0 0 34px rgba(248, 250, 252, 0.45);
  background: linear-gradient(135deg, #fde047, #fbbf24);
}

/* ============================================================
   INDEX HERO + WEEKLY PRIZE GRID
   (matches your current index.html)
============================================================ */

/* Hero layout (two-column on desktop) */
.hero-section {
  margin: 3rem 0 5rem;
  text-align: center;
}

.hero-layout {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.6fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-frames {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-frame {
  background: rgba(15,23,42,0.78);
  border: 1px solid rgba(198,91,255,0.5);
  border-radius: 18px;
  padding: 1.2rem 1.4rem 1.3rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e0d4ff;
  box-shadow: 0 18px 40px rgba(3,4,20,0.9);
  backdrop-filter: blur(14px);
  transform-origin: center;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.hero-frame:hover {
  transform: perspective(1100px) rotateX(5deg) translateY(-4px);
  box-shadow:
    0 26px 65px rgba(3,4,20,0.98),
    0 0 32px rgba(198,91,255,0.9);
  border-color: rgba(216,180,254,0.95);
  background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020014);
}

.hero-frame-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(196,181,253,0.96);
  margin-bottom: 0.25rem;
}

.hero-frame-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #f9f5ff;
}

/* Right-hand hero stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-stat-card {
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  background: radial-gradient(circle at top, rgba(15,23,42,0.96), #020014);
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: 0 20px 45px rgba(3,4,20,0.95);
  transform-origin: center;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
}

.hero-stat-card:hover {
  transform: perspective(1100px) rotateX(5deg) translateY(-4px);
  box-shadow:
    0 26px 70px rgba(3,4,20,1),
    0 0 30px rgba(56,189,248,0.9);
  border-color: rgba(129,212,250,0.9);
  background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020014);
}

.hero-stat-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(191,219,254,0.96);
  margin-bottom: 0.35rem;
}

.hero-stat-main {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.35rem;
}

.hero-stat-sub {
  font-size: 0.9rem;
  color: #e5e7ff;
}

.hero-stat-bullets {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: #c7d2fe;
}

/* WEEKLY SCHEDULE + PRIZE GRID */
.top-contest-section {
  margin: 0 0 2.4rem;
  overflow: visible;
}

.top-contest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.3fr);
  gap: 1.8rem;
  align-items: stretch;
}

/* Make contest frames same height */
.top-contest-grid > div {
  display: flex;
  align-items: stretch;
}

.top-contest-grid > div > .gs-prize-card,
.top-contest-grid > div > div > .gs-prize-card {
  width: 100%;
}

.top-contest-copy h2 {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7d2fe;
  margin: 0 0 0.5rem;
}

.top-contest-sub {
  font-size: 0.9rem;
  color: var(--gs-text-soft);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.top-contest-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  font-size: 0.86rem;
  color: #e5e7eb;
}

.top-contest-list li {
  margin-bottom: 0.25rem;
}

.top-contest-list .weekday {
  color: #38bdf8;
  font-weight: 600;
}

.top-contest-list .mega {
  color: #f97316;
  font-weight: 600;
}

/* Contest prize cards */
.gs-prize-card {
  position: relative;
  padding: 1.3rem 1.4rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background:
    radial-gradient(circle at top left, rgba(30, 64, 175, 0.55), rgba(15, 23, 42, 0.97)),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.95), #020617);
  box-shadow:
    0 18px 55px rgba(15, 23, 42, 0.98),
    0 0 45px rgba(37, 99, 235, 0.5);
  overflow: hidden;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out;
  transform-origin: center top;
}

.gs-prize-card.weekday::before,
.gs-prize-card.mega::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.16s ease-out, filter 0.16s ease-out;
}

.gs-prize-card.weekday::before {
  background: radial-gradient(
    circle at top,
    rgba(250, 204, 21, 0.4),
    transparent 60%
  );
}

.gs-prize-card.mega::before {
  background: radial-gradient(
    circle at top,
    rgba(248, 113, 22, 0.45),
    transparent 60%
  );
}

.gs-prize-card.weekday:hover {
  transform: translateY(-4px) rotateX(6deg);
  border-color: rgba(250, 204, 21, 0.95);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.98),
    0 0 60px rgba(250, 204, 21, 0.9);
}

.gs-prize-card.weekday:hover::before {
  opacity: 0.7;
  filter: blur(2px);
}

.gs-prize-card.mega:hover {
  transform: translateY(-4px) rotateX(6deg);
  border-color: rgba(248, 113, 22, 0.95);
  box-shadow:
    0 26px 80px rgba(15, 23, 42, 0.98),
    0 0 70px rgba(248, 113, 22, 0.95),
    0 0 80px rgba(250, 204, 21, 0.95);
}

.gs-prize-ribbon {
  position: absolute;
  top: 0.8rem;
  right: -3.4rem;
  background: linear-gradient(135deg, #ec4899, #f973ff);
  color: #0b0210;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 3.6rem;
  transform: rotate(38deg);
  box-shadow: 0 0 22px rgba(248,113,255,0.9);
}

.gs-prize-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7ff;
  margin-bottom: 0.4rem;
}

.gs-prize-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9fafb;
}

.gs-prize-amount span {
  display: block;
  font-size: 0.9rem;
  color: #c7d2fe;
}

.gs-prize-note {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: #c4b5fd;
}

/* Summary line under grid */
.contest-summary-line {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.86rem;
  color: #e5e7ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .top-contest-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
.gs-footer {
  padding: 1rem 1rem 1.2rem;
}

.gs-footer-links {
  font-size: 0.70rem;       /* smaller, professional */
  gap: 0.75rem;
}

.gs-footer-legal {
  font-size: 0.68rem;       /* quiet, authoritative */
  line-height: 1.32;
}

.gs-footer-meta {
  font-size: 0.62rem;       /* tiny, subtle */
  opacity: 0.7;
  margin-top: 2px;
}
/* ===========================
   Mechanics-style footer tuning
   (match tie-breaker block)
=========================== */

.gs-footer {
  background: rgba(5, 5, 15, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.1rem 1.25rem 1.4rem;
  margin-top: 3rem;
  color: #9ca3af;
  text-align: center;
}

.gs-footer-inner {
  max-width: 760px;           /* match tie-breaker width vibe */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

/* Nav row: micro, uppercase, muted */

.gs-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.gs-footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 500;
  transition: 140ms ease;
}

.gs-footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
}

/* Legal copy: same feel as the small grey paragraph above */

.gs-footer-legal {
  font-size: 0.78rem;          /* ≈ tie-breaker paragraph size */
  line-height: 1.6;            /* same rhythm */
  max-width: 720px;
  margin-top: 0.2rem;
  color: #9ca3af;
  opacity: 0.9;
}

.gs-footer-legal strong {
  font-weight: 600;
  color: #e5e7eb;              /* slightly brighter, not shouting */
}

.gs-footer-legal a {
  color: #a5b4ff;
  text-decoration: underline;
}

/* Tiny meta line */

.gs-footer-meta {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 2px;
}
/* UNIVERSAL HEADER */
    .gs-site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: linear-gradient(
        to bottom,
        rgba(5, 1, 18, 0.98),
        rgba(5, 1, 18, 0.9),
        transparent
      );
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(154, 129, 255, 0.35);
    }
    .gs-site-header-inner {
      max-width: 1040px;
      margin: 0 auto;
      padding: 14px 20px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .gs-site-header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .gs-site-logo {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      box-shadow: 0 0 18px rgba(168, 85, 255, 0.8);
    }
    .gs-site-wordmark {
      letter-spacing: 0.18em;
      font-size: 13px;
      font-weight: 700;
      color: var(--gs-text-main);
    }
    .gs-site-tagline {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--gs-text-faint);
    }
    .gs-site-header-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .gs-site-nav {
      display: flex;
      gap: 14px;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }
    .gs-site-nav a {
      position: relative;
      padding: 5px 12px;
      border-radius: var(--gs-radius-pill);
      border: 1px solid transparent;
      color: var(--gs-text-faint);
      overflow: hidden;
      transition:
        transform 120ms ease-out,
        border-color 160ms ease-out,
        box-shadow 160ms ease-out,
        background 160ms ease-out,
        color 160ms ease-out;
    }
    .gs-site-nav a::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(148, 163, 255, 0.35), transparent 60%);
      opacity: 0;
      transition: opacity var(--gs-trans-fast);
      pointer-events: none;
    }
    .gs-site-nav a:hover::before { opacity: 1; }
    .gs-site-nav a:hover {
      transform: translateY(-1px);
      color: var(--gs-text-main);
      border-color: rgba(210, 160, 255, 0.6);
      box-shadow: 0 0 18px rgba(148, 163, 255, 0.75);
      background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020017);
    }
    .gs-site-nav a.active {
      color: var(--gs-text-main);
      border-color: rgba(210, 160, 255, 0.95);
      background: linear-gradient(135deg, #4c1c8b, #b153ff);
      box-shadow: 0 0 26px rgba(180, 120, 255, 0.95);
    }

    /* MAIN LAYOUT */
    main {
      padding: 3.2rem 1.5rem 4.5rem;
    }
    .page {
      max-width: 1040px;
      margin: 0 auto;
      position: relative;
    }

    .section {
      margin-top: 3rem;
    }
    .section-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(148,163,184,0.85);
      margin-bottom: 0.3rem;
    }
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.7rem;
    }
    .section-title {
      font-size: 1.25rem;
      font-weight: 600;
    }
    .section-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(148,163,184,0.95);
      white-space: nowrap;
    }
    .section-body {
      font-size: 0.95rem;
      color: var(--text);
      max-width: 820px;
      line-height: 1.7;
    }

    .two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }

    /* LOCK TIMER */
    .lock-timer {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: linear-gradient(90deg, #1a0033, #2d0066, #1a0033);
      border-bottom: 2px solid #c65bff;
      padding: 0.9rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
      color: white;
      text-shadow: 0 0 20px #c65bff;
      backdrop-filter: blur(12px);
      text-transform: uppercase;
    }
    .lock-timer span#countdown {
      color: #ff4bff;
      font-size: 1.3rem;
      min-width: 6.3rem;
      text-align: center;
    }
    .lock-timer .cta-button {
      display: inline-block;
      margin-left: 0.5rem;
      padding: 0.6rem 1.4rem;
      font-size: 0.9rem;
      animation: pulse 2s infinite;
      white-space: nowrap;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 20px #c65bff; }
      50%     { box-shadow: 0 0 40px #ff4bff; }
    }

    /* CTA BUTTON */
    .cta-button {
      display: inline-block;
      background:
        radial-gradient(circle at 0% 50%, rgba(248,250,252,0.18), transparent 55%),
        linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
      color: white;
      padding: 1rem 2.6rem;
      border-radius: 999px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.95rem;
      box-shadow:
        0 0 18px rgba(168,85,255,0.9),
        0 8px 26px rgba(15,23,42,0.95);
      transition: all 0.25s ease;
      text-decoration: none;
      transform-origin: center;
      position: relative;
      overflow: hidden;
    }
    .cta-button::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 50%, rgba(255,255,255,0.3), transparent 60%);
      transform: translateX(-130%);
      opacity: 0;
    }
    .cta-button:hover {
      transform: translateY(-2px) perspective(900px) rotateX(4deg);
      box-shadow:
        0 0 26px rgba(168,85,255,1),
        0 14px 35px rgba(15,23,42,1);
    }
    .cta-button:hover::after {
      opacity: 1;
      animation: gs-btn-soul-swipe 0.9s ease-out;
    }
    @keyframes gs-btn-soul-swipe {
      0%   { transform: translateX(-130%); opacity: 0; }
      20%  { opacity: 1; }
      100% { transform: translateX(130%); opacity: 0; }
    }
/* GhostSweat Souls styling */
.soul-symbol {
  color: #facc15;
  text-shadow:
    0 0 14px rgba(250, 204, 21, 0.9),
    0 0 32px rgba(250, 204, 21, 0.8);
}

.soul-amount {
  color: #e5e7eb;
}

.soul-footer {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-top: 1.5rem;
}
.soul-amount {
  color: var(--gs-soul);
  text-shadow:
    0 0 25px rgba(250, 204, 21, 0.9),
    0 0 60px rgba(250, 204, 21, 0.95);
}
/* Glowing, shimmering "500" — premium rare-item effect */
.gs-500-shimmer {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    90deg,
    #facc15,
    #f472b6,
    #38bdf8,
    #facc15
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  animation: gsShimmer 4s linear infinite, gsPulse 2.5s ease-in-out infinite;
  text-shadow:
    0 0 18px rgba(250, 204, 21, 0.65),
    0 0 32px rgba(248, 113, 255, 0.45),
    0 0 52px rgba(56, 189, 248, 0.35);
}

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

@keyframes gsPulse {
  0%   { text-shadow: 0 0 18px rgba(250,204,21,0.65); }
  50%  { text-shadow: 0 0 40px rgba(250,204,21,1); }
  100% { text-shadow: 0 0 18px rgba(250,204,21,0.65); }
}
    :root {
      /* Fallbacks in case style.css doesn't define these yet */
      --gs-bg: #05010a;
      --gs-surface: #0c0417;
      --gs-surface-soft: #180b2e;
      --gs-border: #3a1b66;
      --gs-text-main: #f7ecff;
      --gs-text-soft: #c3aee6;
      --gs-text-muted: #8a73b7;
      --gs-sweat: #38bdf8;
      --gs-soul: #fbbf24;
      --gs-hot: #ff006e;
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at 0% 0%, #1b0b3a 0, transparent 55%),
        radial-gradient(circle at 100% 0%, #150626 0, transparent 55%),
        radial-gradient(circle at 50% 120%, #020012 0, #020012 60%);
      color: var(--gs-text-main);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* faint scanline noise */
    .gs-contact-noise {
      pointer-events: none;
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: 0.18;
      background-image:
        linear-gradient(rgba(15, 23, 42, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.7) 1px, transparent 1px);
      background-size: 100% 2px, 2px 100%;
      mix-blend-mode: soft-light;
      animation: gsContactNoise 0.9s steps(2, end) infinite;
    }

    @keyframes gsContactNoise {
      0%   { transform: translate3d(0, 0, 0); }
      100% { transform: translate3d(0, 1px, 0); }
    }

    .gs-contact-shell {
      max-width: 960px;
      margin: 0 auto;
      padding: 4.5rem 1.5rem 4rem;
      position: relative;
    }

    /* ORBIT WRAP AROUND CARD */
    .gs-contact-orbit {
      position: relative;
      padding: 1px;
      border-radius: 2.5rem;
      background:
        conic-gradient(from 170deg,
          rgba(251, 191, 36, 0.9),
          rgba(236, 72, 153, 0.8),
          rgba(168, 85, 247, 0.9),
          rgba(56, 189, 248, 0.9),
          rgba(251, 191, 36, 0.9));
      box-shadow:
        0 0 0 1px rgba(148, 163, 184, 0.65),
        0 40px 120px rgba(0, 0, 0, 0.95);
      overflow: hidden;
      transition: transform 220ms ease-out, box-shadow 220ms ease-out, filter 220ms ease-out;
    }

    .gs-contact-orbit::before {
      content: "";
      position: absolute;
      inset: -140px;
      z-index: -1;
      background:
        radial-gradient(circle at 12% 0%, rgba(251, 191, 36, 0.3), transparent 60%),
        radial-gradient(circle at 88% 18%, rgba(56, 189, 248, 0.35), transparent 55%),
        radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 1), #020617 70%);
      opacity: 0.95;
    }

    .gs-contact-orbit:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow:
        0 0 0 1px rgba(253, 224, 71, 0.95),
        0 52px 150px rgba(0, 0, 0, 0.98);
      filter: drop-shadow(0 0 22px rgba(251, 191, 36, 0.95));
    }

    .gs-contact-card {
      position: relative;
      border-radius: 2.45rem;
      background: radial-gradient(circle at top left, #140825 0, #020013 65%);
      padding: 3.1rem 3rem 3rem;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .gs-contact-card {
        padding: 2.4rem 1.6rem 2.5rem;
      }
    }

    .gs-contact-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% -30%, rgba(248, 250, 252, 0.16), transparent 60%);
      opacity: 0.9;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    /* FLOATING SOULS IN THE CARD BACKGROUND */
    .gs-soul-float {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: radial-gradient(circle, #facc15 0, rgba(250, 204, 21, 0) 70%);
      box-shadow:
        0 0 10px rgba(250, 204, 21, 0.9),
        0 0 24px rgba(244, 114, 182, 0.7);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    .gs-soul-float:nth-child(1) { top: 16%; left: 12%; animation: soulFloat1 18s ease-in-out infinite; }
    .gs-soul-float:nth-child(2) { top: 24%; right: 10%; animation: soulFloat2 22s ease-in-out infinite; }
    .gs-soul-float:nth-child(3) { bottom: 18%; left: 26%; animation: soulFloat3 20s ease-in-out infinite; }
    .gs-soul-float:nth-child(4) { bottom: 26%; right: 22%; animation: soulFloat4 26s ease-in-out infinite; }

    @keyframes soulFloat1 {
      0%   { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.5; }
      30%  { transform: translate3d(10px, -12px, 0) scale(1); opacity: 0.95; }
      65%  { transform: translate3d(-4px, -4px, 0) scale(0.85); opacity: 0.7; }
      100% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.5; }
    }
    @keyframes soulFloat2 {
      0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
      25%  { transform: translate3d(-14px, -6px, 0) scale(1.1); opacity: 1; }
      55%  { transform: translate3d(-4px, 10px, 0) scale(0.8); opacity: 0.6; }
      100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    }
    @keyframes soulFloat3 {
      0%   { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.8; }
      40%  { transform: translate3d(6px, -10px, 0) scale(1.05); opacity: 1; }
      80%  { transform: translate3d(-8px, -2px, 0) scale(0.85); opacity: 0.6; }
      100% { transform: translate3d(0, 0, 0) scale(0.9); opacity: 0.8; }
    }
    @keyframes soulFloat4 {
      0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
      35%  { transform: translate3d(-8px, -14px, 0) scale(0.95); opacity: 0.7; }
      70%  { transform: translate3d(4px, -4px, 0) scale(1.1); opacity: 1; }
      100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    }

    /* HERO TITLE */
    .gs-contact-hero {
      position: relative;
      z-index: 1;
      margin-bottom: 2.4rem;
      text-align: center;
    }

    .gs-contact-title {
      font-size: clamp(3.3rem, 10vw, 5.6rem);
      font-weight: 900;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      margin: 0 0 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      align-items: center;
    }

    .gs-contact-title span {
      display: inline-block;
    }

    .gs-contact-title .ghost {
      color: #e5e7ff;
      text-shadow:
        0 0 16px rgba(196, 181, 253, 0.9),
        0 0 34px rgba(129, 140, 248, 0.9);
    }

    .gs-contact-title .sweat {
      color: var(--gs-sweat);
      text-shadow:
        0 0 18px rgba(56, 189, 248, 0.95),
        0 0 40px rgba(59, 130, 246, 0.95);
      letter-spacing: 0.28em;
    }

    .gs-contact-title .contact {
      background: linear-gradient(120deg, #fed7aa, #facc15, #fb923c);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow:
        0 0 22px rgba(251, 191, 36, 0.95),
        0 0 40px rgba(248, 250, 252, 0.55);
      letter-spacing: 0.3em;
    }

    .gs-contact-sub {
      font-size: 1.05rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gs-text-soft);
      opacity: 0.9;
    }

    /* CONTENT BLOCKS */
    .gs-contact-box {
      position: relative;
      z-index: 1;
      background: radial-gradient(circle at 0% 0%, rgba(198, 91, 255, 0.16), rgba(12, 4, 23, 0.96));
      border-radius: 1.8rem;
      border: 1px solid rgba(198, 91, 255, 0.7);
      padding: 1.8rem 2rem;
      margin: 2.1rem 0;
      box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.9),
        0 0 26px rgba(147, 51, 234, 0.45);
      font-size: 1.02rem;
      color: var(--gs-text-soft);
    }

    .gs-contact-box strong {
      color: #fef9c3;
    }

    .gs-contact-email-main {
      font-size: 1.4rem;
      color: var(--gs-soul);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.45rem;
    }

    .gs-contact-email-link {
      font-size: 2rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      color: var(--gs-sweat);
      text-shadow:
        0 0 30px rgba(56, 189, 248, 0.95),
        0 0 46px rgba(59, 130, 246, 0.9);
      word-break: break-all;
    }

    .gs-contact-email-link a {
      color: inherit;
      text-decoration: none;
    }

    .gs-contact-email-link a:hover {
      text-decoration: underline;
    }

    .gs-contact-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 1.9rem;
      margin-top: 2.3rem;
    }

    @media (min-width: 768px) {
      .gs-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .gs-contact-meta {
      position: relative;
      z-index: 1;
      margin-top: 1.8rem;
      font-size: 0.98rem;
      color: var(--gs-text-muted);
    }

    .gs-contact-warning {
      position: relative;
      z-index: 1;
      margin-top: 2.7rem;
      padding: 1.5rem 1.7rem;
      border-radius: 1.4rem;
      border: 1px solid rgba(255, 0, 110, 0.7);
      background: radial-gradient(circle at 0% 0%, rgba(255, 0, 110, 0.18), rgba(15, 23, 42, 0.98));
      box-shadow:
        0 20px 55px rgba(15, 23, 42, 0.96),
        0 0 22px rgba(251, 113, 133, 0.8);
      font-size: 0.98rem;
    }

    .gs-contact-warning strong {
      color: #ffe4e6;
    }
/* STACKED title styling */
.waitlist-title--stacked {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  line-height: 1.1;
}

.waitlist-title--stacked .title-line {
  display: flex;
  gap: 0.18em;
}

/* Enhanced subtext styling */
.waitlist-sub--enhanced {
  font-size: 1.08rem;
  color: #d8d4ff;
  line-height: 1.85;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(100, 100, 255, 0.25);
}

.waitlist-sub--enhanced strong {
  color: #fefce8;
  text-shadow: 0 0 18px rgba(255, 255, 200, 0.4);
}

.glow-gold {
  color: #facc15;
  text-shadow: 0 0 22px rgba(250, 204, 21, 0.75);
}

.glow-blue {
  color: #38bdf8;
  text-shadow: 0 0 22px rgba(56, 189, 248, 0.75);
}

.glow-red {
  color: #ff006e;
  text-shadow: 0 0 18px rgba(255, 0, 110, 0.7);
}

.glow-faint {
  opacity: 0.72;
}

/* Make the two lines float independently */
.waitlist-title--stacked span {
  animation: floatAura 6.5s ease-in-out infinite;
}

@keyframes floatAura {
  0% {
    transform: translateY(0);
    opacity: 0.92;
  }
  50% {
    transform: translateY(-0.18em);
    opacity: 1;
  }
  100% {
    transform: translateY(0.12em);
    opacity: 0.9;
  }
}

/* Stagger animation */
.waitlist-title--stacked span:nth-child(odd) {
  animation-delay: 0.4s;
}
.waitlist-title--stacked span:nth-child(even) {
  animation-delay: 0.8s;
}
<script>
  // Real live counter — starts at 3 claimed (or whatever your actual number is)
  const TOTAL_SPOTS = 500;
  const START_DATE = new Date("2025-12-06T00:00:00-10:00").getTime();  // When you launched
  const SPOTS_PER_DAY = 12;  // Adjust this to match your real growth

  function updateSpots() {
    const now = Date.now();
    const daysSinceLaunch = (now - START_DATE) / 86400000;
    const claimed = Math.min(TOTAL_SPOTS, Math.floor(daysSinceLaunch * SPOTS_PER_DAY) + 3); // +3 = your current real signups
    const remaining = TOTAL_SPOTS - claimed;

    document.getElementById("spots").textContent = remaining;
    document.getElementById("claimed").textContent = claimed; // if you show claimed too
  }

  updateSpots();
  setInterval(updateSpots, 60000); // updates every minute
.lore-echo {
  color: var(--gs-accent);
  text-shadow: 0 0 18px rgba(139,92,246,.9);
}

.lore-variance {
  color: var(--hot);
  text-shadow: 0 0 18px rgba(255,0,110,.9);
}

.sweat {
  color: var(--gs-sweat);
  text-shadow: 0 0 20px rgba(56,189,248,.9);
}

.shard {
  color: var(--gs-shard);
  text-shadow: 0 0 20px rgba(201,91,255,.9);
}

.soul {
  color: var(--gs-soul);
  text-shadow: 0 0 20px rgba(250,204,21,.95);
}


</script>

