/* ═══════════════════════════════════════════════
   AGA Design System v2 — Forge Your Empire
   Premium · Dark · Conversion-first
   Inspired by industry-leading game server sites
   ═══════════════════════════════════════════════ */

@font-face {
  font-family: 'Lilita One';
  src: local('Lilita One'), local('LilitaOne-Regular');
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  /* Brand Gold */
  --gold-100: #fef7e6;
  --gold-200: #f5e2b0;
  --gold-300: #e8cb70;
  --gold-400: #dbb43a;
  --gold-500: #c9a84c;
  --gold-600: #a68a30;
  --gold-700: #7d691e;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --gold-glass: rgba(201, 168, 76, 0.10);

  /* Backgrounds */
  --bg-deep: #08080f;
  --bg-primary: #0c0c18;
  --bg-secondary: #111122;
  --bg-card: #16162e;
  --bg-card-hover: #1c1c38;
  --bg-elevated: #1e1e3a;
  --bg-glass: rgba(22, 22, 46, 0.75);

  /* Text */
  --text: #f0ede8;
  --text-secondary: #b8b4ae;
  --text-muted: #7a7680;
  --text-dim: #504c58;

  /* Border */
  --border: #1e1e36;
  --border-light: #2a2a48;
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-glow: rgba(201, 168, 76, 0.12);

  /* Game Colors */
  --wos: #4fb0e8;
  --wos-bg: rgba(79, 176, 232, 0.12);
  --wos-glow: rgba(79, 176, 232, 0.20);
  --kingshot: #e8604c;
  --kingshot-bg: rgba(232, 96, 76, 0.12);
  --kingshot-glow: rgba(232, 96, 76, 0.20);

  /* Functional */
  --success: #27ae60;
  --success-bg: rgba(39, 174, 96, 0.12);
  --danger: #e74c3c;

  /* Layout */
  --max-w: 1200px;
  --nav-h: 72px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Typography */
  --font-display: "Lilita One", "Baloo 2", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --fast: 180ms var(--ease-out);
  --slow: 500ms var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Selection ── */
::selection { background: var(--gold-500); color: var(--bg-deep); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

a { color: var(--gold-400); text-decoration: none; transition: color var(--fast); }
a:hover { color: var(--gold-200); }
img { max-width: 100%; height: auto; display: block; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   Decorative Background Effects (applied per-section)
   ═══════════════════════════════════════════════ */

.bg-glow-top::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 800px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bg-glow-left::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ═══════════════════════════════════════════════
   Navigation
   ═══════════════════════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8, 8, 15, 0.80);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color var(--fast), background var(--fast);
}

nav.scrolled {
  background: rgba(8, 8, 15, 0.92);
  border-bottom-color: var(--border);
}

nav .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.logo .mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-deep);
  box-shadow: 0 4px 12px var(--gold-glow);
}

/* ── Nav Links ── */
.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--fast);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.nav-links a.active {
  color: var(--gold-400);
  background: var(--gold-glass);
}

/* ── Nav Social Icons ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.nav-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0;
  transition: all var(--fast);
}

.nav-social a:hover {
  color: var(--text);
  background: var(--bg-card);
}

/* ── Nav CTA Button ── */
.nav-cta {
  margin-left: 8px !important;
  padding: 8px 20px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600)) !important;
  color: var(--bg-deep) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px var(--gold-glow);
  transition: all var(--fast) !important;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px var(--gold-glow) !important;
  color: var(--bg-deep) !important;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500)) !important;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--fast);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   Buttons
   ═══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 180ms var(--ease-spring);
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}

/* ── Primary (Gold) Button — 3D press effect ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-deep);
  box-shadow:
    0 4px 0 0 var(--gold-700),
    0 8px 24px -4px var(--gold-glow),
    inset 0 1px 0 0 rgba(255,255,255,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 0 var(--gold-700),
    0 12px 32px -4px var(--gold-glow),
    inset 0 1px 0 0 rgba(255,255,255,0.3);
}

.btn-gold:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 0 var(--gold-700),
    0 4px 12px -4px var(--gold-glow),
    inset 0 1px 0 0 rgba(255,255,255,0.2);
}

/* ── Primary (Game Blue) Button ── */
.btn-primary {
  background: linear-gradient(135deg, #4fb0e8, #1f74bc);
  color: #fff;
  box-shadow:
    0 4px 0 0 #185b98,
    0 8px 24px -4px rgba(79, 176, 232, 0.35),
    inset 0 1px 0 0 rgba(255,255,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 0 #185b98,
    0 12px 32px -4px rgba(79, 176, 232, 0.4),
    inset 0 1px 0 0 rgba(255,255,255,0.25);
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 0 #185b98,
    0 4px 12px -4px rgba(79, 176, 232, 0.3),
    inset 0 1px 0 0 rgba(255,255,255,0.15);
}

/* ── Outline Button ── */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.15);
}

.btn-outline:active {
  transform: translateY(1px);
}

/* ── Discord Button ── */
.btn-discord {
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: #fff;
  box-shadow:
    0 4px 0 0 #3b46b0,
    0 8px 24px -4px rgba(88, 101, 242, 0.35),
    inset 0 1px 0 0 rgba(255,255,255,0.2);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 0 #3b46b0,
    0 12px 32px -4px rgba(88, 101, 242, 0.4),
    inset 0 1px 0 0 rgba(255,255,255,0.2);
}

.btn-discord:active {
  transform: translateY(4px);
  box-shadow:
    0 1px 0 0 #3b46b0,
    0 4px 12px -4px rgba(88, 101, 242, 0.3),
    inset 0 1px 0 0 rgba(255,255,255,0.1);
}

/* Sizes */
.btn-sm { padding: 10px 22px; font-size: 0.85rem; border-radius: 10px; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; border-radius: 16px; }
.btn-xl { padding: 20px 48px; font-size: 1.15rem; border-radius: 18px; }

/* ═══════════════════════════════════════════════
   Glass Card Component
   ═══════════════════════════════════════════════ */

.glass {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.06),
    0 8px 32px rgba(0,0,0,0.3);
  transition: all var(--slow);
}

.glass:hover {
  border-color: var(--border-gold);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    0 12px 48px rgba(0,0,0,0.4),
    0 0 0 1px var(--border-glow);
  transform: translateY(-2px);
}

/* ── Gold variant ── */
.glass-gold {
  background: linear-gradient(
    145deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(201, 168, 76, 0.02) 100%
  );
  border: 1px solid var(--border-gold);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.08),
    0 8px 32px -8px var(--gold-glow);
}

.glass-gold:hover {
  border-color: var(--gold-400);
  box-shadow:
    inset 0 1px 0 0 rgba(255,255,255,0.1),
    0 12px 48px -8px var(--gold-glow);
}

/* ═══════════════════════════════════════════════
   Sections — General
   ═══════════════════════════════════════════════ */

section {
  position: relative;
  padding: 100px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   Hero — Full-screen conversion
   ═══════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Hero background layers */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-layer .orb-1 {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  animation: orb-float 20s ease-in-out infinite;
}

.hero-bg-layer .orb-2 {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 176, 232, 0.06) 0%, transparent 70%);
  animation: orb-float 25s ease-in-out infinite reverse;
}

.hero-bg-layer .orb-3 {
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  animation: orb-float 22s ease-in-out infinite 5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(var(--tx, 0), var(--ty, 0)); }
  50% { transform: translate(calc(var(--tx, 0) + 30px), calc(var(--ty, 0) - 40px)); }
}

.orb-1 { --tx: -50%; --ty: 0; }
.orb-2 { --tx: 0; --ty: 0; }
.orb-3 { --tx: 0; --ty: 0; }

/* Hero grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 45%, var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.hero .subtitle strong { color: var(--text-secondary); }

.hero .actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* ── Hero Stats Bar ── */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-stat { text-align: center; }

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-400);
  font-variant-numeric: tabular-nums;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Live dot pulse */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px rgba(39, 174, 96, 0.5);
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(39, 174, 96, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(39, 174, 96, 0.2); }
}

/* ═══════════════════════════════════════════════
   Price Comparison (Anchor)
   ═══════════════════════════════════════════════ */

.price-anchor {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.price-anchor .vs-box {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 40px 56px;
  margin-top: 28px;
}

@media (max-width: 640px) {
  .price-anchor .vs-box {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
  }
}

.price-anchor .price-col {
  text-align: center;
}

.price-anchor .price-col .price-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.price-anchor .price-col .amount {
  font-size: 2.2rem;
  font-weight: 800;
}

.price-anchor .price-col .amount.strikethrough {
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-anchor .price-col .amount.gold {
  color: var(--gold-400);
}

.price-anchor .vs-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.price-anchor .save-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 1.4rem;
  padding: 8px 28px;
  border-radius: 100px;
  margin-top: 24px;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.price-anchor .save-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   Games Grid
   ═══════════════════════════════════════════════ */

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

.game-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--slow);
}

.game-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px var(--border-glow);
}

.game-card .card-accent {
  height: 4px;
  width: 100%;
}

.game-card .card-accent.wos { background: linear-gradient(90deg, var(--wos), transparent); }
.game-card .card-accent.ks { background: linear-gradient(90deg, var(--kingshot), transparent); }

.game-card .card-body {
  padding: 32px;
}

.game-card .card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.badge-wos {
  background: var(--wos-bg);
  color: var(--wos);
}

.badge-ks {
  background: var(--kingshot-bg);
  color: var(--kingshot);
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.game-card .card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.game-card .perk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.game-card .perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.game-card .perk::before {
  content: '✦';
  color: var(--gold-400);
  font-size: 0.65rem;
}

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

.game-card .card-footer .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════════
   Benefits Grid
   ═══════════════════════════════════════════════ */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--slow);
}

.benefit-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.benefit-card .icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   Steps / How It Works
   ═══════════════════════════════════════════════ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  counter-increment: step;
}

.step-card .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.step-card .icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.step-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   Announcement Feed
   ═══════════════════════════════════════════════ */

.announce-feed {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.announce-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--fast);
  align-items: flex-start;
}

.announce-item:last-child { border-bottom: none; }

.announce-item:hover { background: var(--bg-card-hover); }

.announce-item .date {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  white-space: nowrap;
  min-width: 72px;
  padding-top: 3px;
}

.announce-item .content { flex: 1; min-width: 0; }

.announce-item .content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.announce-item .content .tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.tag-update { background: var(--wos-bg); color: var(--wos); }
.tag-event { background: var(--kingshot-bg); color: var(--kingshot); }
.tag-info { background: var(--gold-glass); color: var(--gold-400); }

.announce-empty,
.announce-loading {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════
   Video / Creator Gallery
   ═══════════════════════════════════════════════ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--slow);
  cursor: pointer;
}

.video-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.video-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-card .thumb .play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all var(--fast);
}

.video-card:hover .play-btn {
  background: var(--gold-500);
  color: var(--bg-deep);
  border-color: var(--gold-400);
  transform: scale(1.05);
}

.video-card .meta {
  padding: 16px 20px;
}

.video-card .meta .title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.video-card .meta .source {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════
   Server Info Bar (Game Pages)
   ═══════════════════════════════════════════════ */

.server-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.server-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.server-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: live-pulse 2s ease-in-out infinite;
}

.server-pill .val {
  font-size: 0.95rem;
  font-weight: 700;
}

.server-pill .lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   Price Table
   ═══════════════════════════════════════════════ */

.price-table-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.price-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table tr:hover td { background: var(--bg-card-hover); }

.price-table .save-cell { color: var(--gold-400); font-weight: 700; }
.price-table .free-cell { color: var(--success); font-weight: 700; }

/* ═══════════════════════════════════════════════
   Page Hero (Subpages)
   ═══════════════════════════════════════════════ */

.page-hero {
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.page-hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500) 45%, var(--gold-200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 14px;
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   Content Blocks
   ═══════════════════════════════════════════════ */

.content-block {
  max-width: 800px;
  margin: 0 auto 60px;
}

.content-block h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.content-block h3 {
  font-size: 1.2rem;
  margin: 36px 0 12px;
}

.content-block p, .content-block li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-block ul { list-style: none; padding: 0; }
.content-block ul li::before { content: "✦ "; color: var(--gold-400); }

/* ═══════════════════════════════════════════════
   Feature Grid (Details)
   ═══════════════════════════════════════════════ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.feature-item {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--fast);
}

.feature-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.feature-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--fast), box-shadow var(--fast);
}

.faq-item:hover { border-color: var(--border-gold); }
.faq-item.open {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px var(--border-glow);
}

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

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question .arrow {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: transform var(--fast);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-question .arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out), padding 300ms var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CTA Banner
   ═══════════════════════════════════════════════ */

.cta-banner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  width: 700px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: var(--text-muted);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.cta-banner .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════ */

footer {
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  background: var(--bg-primary);
}

footer .grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

footer .col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

footer .col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color var(--fast);
}

footer .col a:hover { color: var(--text); }

footer .col p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.7;
}

footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  transition: all var(--fast);
}

footer .social-links a:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

footer .bottom {
  max-width: var(--max-w);
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Responsive footer */
@media (max-width: 900px) {
  footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer .col:first-child { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════ */

/* Fade in on scroll (applied via JS or just always visible) */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 600ms var(--ease-out) forwards;
}

.fade-in-d1 { animation-delay: 100ms; }
.fade-in-d2 { animation-delay: 200ms; }
.fade-in-d3 { animation-delay: 300ms; }
.fade-in-d4 { animation-delay: 400ms; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Shimmer gold text */
.shimmer {
  background: linear-gradient(
    100deg,
    var(--gold-400) 20%,
    var(--gold-200) 42%,
    var(--gold-400) 50%,
    var(--gold-600) 58%,
    var(--gold-400) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8, 8, 15, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    display: none;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .nav-cta { margin-left: 0 !important; margin-top: 8px !important; }

  .nav-social {
    border-left: none;
    border-top: 1px solid var(--border);
    margin-left: 0;
    padding-left: 0;
    padding-top: 12px;
    justify-content: center;
    width: 100%;
  }

  .hero .actions { flex-direction: column; width: 100%; max-width: 340px; }
  .hero .actions .btn { width: 100%; }
  .hero-stats { gap: 24px; }

  .game-card .perk-grid { grid-template-columns: 1fr; }
  .game-card .card-footer { flex-direction: column; }

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

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: center; gap: 20px; }
  .server-bar { flex-direction: column; align-items: center; }
  .server-pill { width: 100%; max-width: 260px; justify-content: center; }
}
