/* ============================================================
   GHOSTSWEAT — GLOBAL THEME v2.2 (index-synced)
   Universal Colors, Typography, Symbols, Glow Rules, Components
   ============================================================ */

/* -------------------------------
   ROOT TOKENS
---------------------------------- */
:root

 {
/* ===========================
   GHOSTSWEAT HEADER + NAV
   =========================== */

.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);
}

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

/* logo + title on the left */
.gs-site-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-site-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(168, 85, 255, 0.9);
  flex-shrink: 0;
}

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

.gs-site-wordmark {
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--gs-text-main);
  text-transform: uppercase;
}

.gs-site-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gs-text-faint);
}

/* nav on the right */
.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-pill, 999px);
  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;
  pointer-events: none;
  transition: opacity 120ms ease-out;
}

.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);
}

/* mobile header adjustments */
@media (max-width: 860px) {
  .gs-site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  /* 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;  /* for footer + micro copy */

  /* 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;   /* ice blue variance arrows */

  /* 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;
  --gs-trans-fast: 120ms 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: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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); }

/* ============================================================
   CURRENCY SYMBOLS — ◦ & ⚶
   IMPORTANT: these assume you type the symbol in the HTML
   e.g.  ◦2,500 Sweat   and   <span class="gs-soul-symbol">⚶</span>400 Souls
   Only the symbol gets color; numbers stay neutral.
   ============================================================ */

/* 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 classes (if still used anywhere) */
.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 from index hero/prize copy */
.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” 3D BACKGROUND (GLOBAL)
============================================================ */
.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);
  }
}

/* ============================================================
   UNIVERSAL CARDS / BUTTONS / HEADER / FOOTER
   (matches your current theme + other pages)
============================================================ */
.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);
}

.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);
}

/* Pill-shaped cards */
.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 */
.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 YouTube-style gold button (if used in hero cards) */
.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);
}

/* UNIVERSAL HEADER */
.gs-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top, rgba(38,16,89,0.98), rgba(5,1,18,0.9));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(154,129,255,0.6);
  box-shadow: 0 0 26px rgba(129,92,246,0.8);
}

.gs-site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* UNIVERSAL FOOTER */
.gs-footer {
  border-top: 1px solid rgba(148,163,184,0.35);
  background: #020617;
  padding: 16px 0;
  text-align: center;
  color: var(--gs-text-muted);
  font-size: 0.85rem;
}

.gs-footer a {
  color: #a5b4ff;
  text-decoration: underline;
  margin: 0 8px;
}

/* ============================================================
   INDEX HERO + WEEKLY SCHEDULE / PRIZE GRID
   (directly synced with your 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) */
.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 (“4 FREE CONTESTS…” if you keep it) */
.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;
  }

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

@media (max-width: 640px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
/* =============================== */
/* GHOSTSWEAT UNIVERSAL FOOTER     */
/* =============================== */

.site-footer {
  background: var(--gs-surface);
  border-top: 1px solid rgba(148,163,184,0.32);
  padding: 2.4rem 1rem;
  color: var(--gs-text-muted);
  margin-top: 4rem;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
  font-size: 0.9rem;
}

.site-footer-links {
  margin-bottom: 0.9rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.site-footer-links a {
  color: #a5b4ff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease, text-shadow 0.15s ease;
}

.site-footer-links a:hover {
  color: #c7d2fe;
  text-shadow: 0 0 12px rgba(167,139,250,0.75);
}
/* ===========================
   GHOSTSWEAT HEADER LOGO GLOW
   =========================== */

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

/* Soft purple glow behind the chip */
.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 6s ease-in-out infinite;
}

/* Floating chip container */
.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;
}

/* The chip image itself */
.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));
}

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

/* Breathing glow */
@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); }
}
