/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --bg:           #070706;
  --bg2:          #0d0d0c;
  --primary:      #d4a843;
  --primary-dark: #b8912e;
  --primary-glow: rgba(212,168,67,0.25);
  --gold:         #d4a843;
  --gold-glow:    rgba(212,168,67,0.08);
  --gold-border:  rgba(212,168,67,0.25);
  --green:        #34d058;
  --green-dim:    rgba(52,208,88,0.08);
  --orange:       #E24B4A;
  --orange-glow:  rgba(226,75,74,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body:    'IBM Plex Sans', -apple-system, sans-serif;
  --white:        #ffffff;
  --text1:        rgba(255,255,255,0.95);
  --text2:        rgba(255,255,255,0.65);
  --text3:        rgba(255,255,255,0.40);
  --w85:          rgba(255,255,255,0.85);
  --w70:          rgba(255,255,255,0.70);
  --w55:          rgba(255,255,255,0.55);
  --w40:          rgba(255,255,255,0.40);
  --w30:          rgba(255,255,255,0.30);
  --w20:          rgba(255,255,255,0.20);
  --w15:          rgba(255,255,255,0.15);
  --w10:          rgba(255,255,255,0.10);
  --w08:          rgba(255,255,255,0.08);
  --w06:          rgba(255,255,255,0.06);
  --w04:          rgba(255,255,255,0.04);
  --card-bg:      rgba(255,255,255,0.03);
  --card-border:  rgba(255,255,255,0.08);
  --radius:       0.75rem;
  --radius-sm:    0.5rem;
  --max-w:        72rem;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
svg { display: block; }
strong { font-weight: 600; }
ul { list-style: none; }

/* ─── Background glow accents ────────────────────────────────── */
.bg-glow {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(80px);
}
.bg-glow-gold {
  top: -10%; left: 60%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.15), transparent 70%);
}
.bg-glow-green {
  bottom: -5%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(52,208,88,0.08), transparent 70%);
}

/* ─── Header / Nav ───────────────────────────────────────────── */
.site-header {
  position: relative; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-w); margin: 0 auto;
  gap: 1rem;
}
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 43px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.nav-links {
  display: none;
  align-items: center; gap: 2rem;
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w55);
}
.nav-links a:hover { color: var(--white); }
.nav-plat-link {
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--w15);
  border-radius: 9999px;
  font-size: 0.6875rem !important;
  background: var(--w04);
  color: var(--w55) !important;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav-plat-link:hover { border-color: var(--primary); color: var(--primary) !important; background: rgba(212,168,67,0.08); }
@media (min-width: 768px) { .nav-links { display: flex; } }


/* ─── Hero ───────────────────────────────────────────────────── */
.hero-section {
  position: relative; z-index: 10;
  padding: 3rem 1.5rem 5rem;
  background-image:
    linear-gradient(to right, rgba(8,8,20,0.88) 40%, rgba(8,8,20,0.45) 100%),
    url("/hero-bg.webp");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(233,30,140,0.35);
  border-radius: 9999px; background: rgba(233,30,140,0.08);
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.75rem;
}
.hero-badge svg { flex-shrink: 0; color: var(--primary); }

.hero-title {
  font-family: var(--font-display);
  font-style: italic; font-weight: 800;
  line-height: 0.88; text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.hero-title-main {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
}
.hero-title-sub {
  display: block;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: var(--w85);
}

.hero-platform-label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: var(--w55);
  font-size: 0.9375rem; line-height: 1.75;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.375rem;
  height: 2.875rem; padding: 0 1.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white); font-weight: 600; font-size: 0.875rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.btn-primary:hover {
  background: hsl(330,75%,60%);
  box-shadow: 0 4px 32px rgba(233,30,140,0.42);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex; align-items: center;
  height: 2.875rem; padding: 0 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--w15);
  background: var(--w04);
  color: var(--w70); font-weight: 500; font-size: 0.875rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--w30); color: var(--white); background: var(--w08); }

/* ─── Countdown ──────────────────────────────────────────────── */
.hero-countdown {
  display: flex; flex-direction: column; align-items: flex-start;
}
@media (min-width: 900px) {
  .hero-countdown { align-items: flex-end; }
}
.countdown-label {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--w30); margin-bottom: 1.5rem;
}
.countdown-row { display: flex; align-items: flex-start; gap: 0.625rem; }
.cd-block { display: flex; flex-direction: column; align-items: center; gap: 0.625rem; transition: transform 75ms; }
.cd-block.cd-tick { transform: scale(1.05); }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700; font-style: italic;
  color: var(--white); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-line { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--w20), transparent); }
.cd-label { font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--w30); }
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: var(--primary);
  opacity: 0.5; margin-bottom: 1.5rem; user-select: none; line-height: 1;
}

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker {
  position: relative; z-index: 10;
  background: rgba(233,30,140,0.10);
  border-top: 1px solid rgba(233,30,140,0.20);
  border-bottom: 1px solid rgba(233,30,140,0.20);
  overflow: hidden;
  padding: 0.75rem 0;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-move 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-inner { display: inline-flex; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0 2rem;
  font-family: var(--font-display);
  font-size: 0.8125rem; font-weight: 700; font-style: italic;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--primary);
}
.ticker-star { opacity: 0.6; }
@keyframes ticker-move {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Section common ─────────────────────────────────────────── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-container--narrow { max-width: 56rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--w55); font-size: 0.9375rem;
  margin-bottom: 2rem;
}

/* ─── How-to Section ─────────────────────────────────────────── */
.how-to-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.how-to-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .how-to-grid { grid-template-columns: repeat(3, 1fr); } }

.how-to-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.how-to-card:hover { border-color: var(--w20); background: var(--w06); }

.how-to-icon {
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233,30,140,0.3);
  background: rgba(233,30,140,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}
.how-to-icon svg { width: 1.25rem; height: 1.25rem; }
.how-to-platform {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.375rem;
}
.how-to-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 0.75rem;
}
.how-to-desc { font-size: 0.875rem; color: var(--w55); line-height: 1.7; }

/* ─── Cheats Section ─────────────────────────────────────────── */
.cheats-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}

.notice-banner {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 0.875rem; color: rgba(255,200,150,0.9);
  margin-bottom: 0;
}
.notice-banner svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--orange); }
.notice-banner strong { color: var(--orange); }

/* Inline email CTA */
.inline-cta {
  padding: 0.75rem 1.25rem;
  background: rgba(233,30,140,0.07);
  border: 1px solid rgba(233,30,140,0.2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 2.5rem;
}
.inline-email-form {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8125rem;
}
.inline-email-form > svg { color: var(--primary); flex-shrink: 0; }
.inline-cta-label { color: var(--w55); white-space: nowrap; }
.inline-email-input {
  flex: 1; min-width: 180px; max-width: 280px;
  height: 2rem; padding: 0 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.8125rem;
}
.inline-email-input::placeholder { color: var(--w30); }
.inline-email-input:focus { outline: none; border-color: var(--primary); }
.inline-email-btn {
  height: 2rem; padding: 0 1rem;
  background: var(--primary); border: none; border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
}
.inline-email-btn:hover { opacity: 0.85; }
.inline-email-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.inline-email-error { color: #ff6b6b; font-size: 0.75rem; }
.inline-email-success {
  font-size: 0.8125rem; color: #4ade80; margin: 0;
  padding: 0.1rem 0;
}

/* Platform tabs */
.platform-tabs {
  display: flex; gap: 0.5rem;
  margin-bottom: 2rem;
}
.tab-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 2.5rem; padding: 0 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--w15);
  background: var(--w04);
  color: var(--w55); font-weight: 600; font-size: 0.8125rem;
  transition: all 0.15s;
}
.tab-btn:hover { border-color: var(--w30); color: var(--white); }
.tab-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.tab-btn svg { flex-shrink: 0; }
.plat-icon {
  flex-shrink: 0;
  filter: invert(1) brightness(0.75);
  object-fit: contain;
}
.tab-btn:hover .plat-icon { filter: invert(1) brightness(1); }
.tab-btn.active .plat-icon { filter: invert(1) brightness(1); }

/* Cheat cards grid */
.cheats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px)  { .cheats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cheats-grid { grid-template-columns: repeat(3, 1fr); } }

.cheat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: border-color 0.15s, background 0.15s;
}
.cheat-card:hover { border-color: var(--w20); background: var(--w06); }

.cheat-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 0.5rem;
}
.cheat-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.2;
}
.cheat-badge {
  flex-shrink: 0;
  font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
}
.cat-health   { color: #ff5c8a; background: rgba(255,92,138,0.10); }
.cat-weapons  { color: var(--orange); background: rgba(255,107,0,0.10); }
.cat-wanted   { color: #f72585; background: rgba(247,37,133,0.10); }
.cat-movement { color: #7b5ef8; background: rgba(123,94,248,0.10); }
.cat-vehicles { color: #00b4d8; background: rgba(0,180,216,0.10); }
.cat-weather  { color: #4cc9f0; background: rgba(76,201,240,0.10); }
.cat-special  { color: #3a86ff; background: rgba(58,134,255,0.10); }

.cheat-desc { font-size: 0.8125rem; color: var(--w40); line-height: 1.55; }

.cheat-code {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: auto;
  padding: 0.625rem 0.75rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--w08);
  border-radius: var(--radius-sm);
}
.cheat-code.hidden { display: none; }

.code-str {
  flex: 1; min-width: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem; line-height: 1.5;
  color: var(--w70);
  word-break: break-word;
}
.pc-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.1em;
  text-transform: uppercase;
}

.copy-btn {
  flex-shrink: 0;
  height: 1.875rem; padding: 0 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--w15);
  background: var(--w06);
  color: var(--w55); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 0.15s;
}
.copy-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(233,30,140,0.08); }
.copy-btn.copied { border-color: #22c55e; color: #22c55e; background: rgba(34,197,94,0.08); }

/* ─── Reactions ──────────────────────────────────────────────── */
.reaction-row {
  display: flex; gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--w06);
  margin-top: 0.75rem;
}
.rxn-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--w10);
  border-radius: 9999px;
  background: transparent;
  color: var(--w40);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
}
.rxn-btn:hover { border-color: var(--w30); color: var(--w70); background: var(--w04); }
.rxn-btn.rxn-active {
  border-color: var(--primary);
  background: rgba(233,30,140,0.10);
  color: var(--primary);
}
.rxn-voted .rxn-btn:not(.rxn-active) { opacity: 0.38; cursor: default; }
.rxn-count { font-variant-numeric: tabular-nums; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item.open { border-color: var(--w20); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--w85);
  background: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--white); }
.faq-icon {
  flex-shrink: 0; width: 1.125rem; height: 1.125rem;
  color: var(--w30);
  transition: transform 0.25s, color 0.15s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--w55); line-height: 1.75; }

/* ─── Article ────────────────────────────────────────────────── */
.article-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}
.guide-article {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.guide-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 1.5rem;
}
.guide-article h3 {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}
.guide-article p {
  font-size: 0.9375rem; color: var(--w55);
  line-height: 1.8; margin-bottom: 1rem;
}
.guide-article ul {
  margin: 0.5rem 0 1rem; padding-left: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.guide-article ul li {
  font-size: 0.9375rem; color: var(--w55); line-height: 1.7;
  padding-left: 1.25rem; position: relative;
}
.guide-article ul li::before {
  content: "›";
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}
.guide-article strong { color: var(--w85); }

/* ─── Email CTA section ──────────────────────────────────────── */
.cta-section {
  position: relative; z-index: 10;
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--w06);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.cta-form-wrap {
  width: 100%; max-width: 36rem;
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  background: var(--card-bg);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 480px) {
  .cta-form-wrap { padding: 2rem 1.25rem; }
}
.cta-eyebrow {
  font-size: 0.875rem; color: var(--w40);
  margin-bottom: 0.5rem; letter-spacing: 0.03em;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1.5rem;
  line-height: 1.4;
}
.cta-sub {
  font-size: 0.875rem; color: var(--w40);
  font-weight: 300; margin-bottom: 1.25rem; line-height: 1.6;
}

.cta-form {
  display: flex; gap: 0.75rem;
  width: 100%; max-width: 28rem; margin: 0 auto;
}
@media (max-width: 480px) { .cta-form { flex-direction: column; } }
.cta-input {
  flex: 1; height: 3.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--w10);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 0.9375rem;
  font-family: var(--font-body);
  padding: 0 1.125rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.cta-input::placeholder { color: var(--w25); }
.cta-input:focus {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}
.cta-privacy {
  font-size: 0.8125rem; color: var(--w30);
  margin-top: 1rem; letter-spacing: 0.01em;
}
.cta-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 1rem 0;
}
.success-text { font-size: 1rem; color: var(--w70); }
.form-row { display: flex; flex-direction: column; gap: 0.625rem; }
@media (min-width: 480px) { .form-row { flex-direction: row; } }
.form-input {
  flex: 1; height: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--w10);
  background: rgba(255,255,255,0.06);
  color: var(--white); font-size: 0.875rem;
  font-family: var(--font-body);
  padding: 0 1rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder { color: var(--w20); }
.form-input:focus {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.12);
}
.form-btn {
  height: 3rem; padding: 0 1.75rem;
  border-radius: var(--radius);
  background: var(--primary); color: var(--white);
  font-size: 0.875rem; font-weight: 600;
  font-family: var(--font-body); white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 4px 24px var(--primary-glow);
}
.form-btn:hover { background: hsl(330,75%,60%); box-shadow: 0 4px 32px rgba(233,30,140,0.42); }
.form-btn:active { transform: scale(0.97); }
.form-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error { font-size: 0.6875rem; color: var(--primary); margin-top: 0.5rem; }
.cta-hint { font-size: 0.6875rem; color: var(--w20); margin-top: 0.875rem; font-weight: 300; }

/* ─── Success state ──────────────────────────────────────────── */
.success-state {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 2.5rem 0;
}
.success-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(233,30,140,0.30);
  background: rgba(233,30,140,0.08);
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.success-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white);
}
.success-sub { font-size: 0.875rem; color: var(--w40); max-width: 26rem; text-align: center; line-height: 1.6; }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 10;
  padding: 0 1.5rem 2rem;
  margin-top: 2rem;
}
.footer-sep {
  width: 100%; max-width: var(--max-w); margin: 0 auto 2rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--w08), transparent);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  font-size: 0.6875rem; color: var(--w25); font-weight: 300;
}
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--w55);
}
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a:hover { color: var(--w55); }

/* ─── Nav: active state & dropdown ────────────────────────────── */
.nav-active { color: var(--primary) !important; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding-top: 0.625rem;
  background: transparent;
  border: none;
  z-index: 200;
}
.nav-dropdown-inner {
  background: #1a1a2e;
  border: 1px solid var(--w15);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  color: var(--w70);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--w06); color: var(--primary); }

/* ─── Subpage hero ───────────────────────────────────────────── */
.subpage-hero {
  padding: 6rem 1.5rem 3rem;
  position: relative; z-index: 10;
}
.subpage-hero .section-container { max-width: var(--max-w); margin: 0 auto; }
.subpage-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.subpage-hero-desc {
  font-size: 1.0625rem;
  color: var(--w55);
  max-width: 52ch;
  line-height: 1.7;
}
.hero-highlight { color: var(--primary); display: block; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--w40);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--w55); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span[aria-hidden] { color: var(--w25); }
.breadcrumb [aria-current] { color: var(--w55); }

/* ─── Subpage hero category badge ────────────────────────────── */
.subpage-hero-badge {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid;
  margin: 0.5rem 0 0.25rem;
}

/* ─── Category grid (categories index) ──────────────────────── */
.cat-grid-section { padding: 1.5rem 1.5rem 4rem; position: relative; z-index: 10; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.cat-card {
  display: flex; flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(233,30,140,0.15);
  border-color: rgba(233,30,140,0.35);
}
.cat-card-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.625rem;
  background: var(--w06);
  color: var(--primary);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cat-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.cat-card-tagline {
  font-size: 0.8125rem; color: var(--w55); line-height: 1.5;
  margin-bottom: 1.25rem; flex: 1;
}
.cat-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--w08);
}
.cat-card-count {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--w40);
}
.cat-card-arrow {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary);
  transition: transform 0.15s;
}
.cat-card:hover .cat-card-arrow { transform: translateX(4px); }
.cat-grid-note {
  font-size: 0.8125rem; color: var(--w30); text-align: center; line-height: 1.6;
}
.cat-grid-note a { color: var(--primary); text-decoration: underline; }

/* ─── Resource cards ─────────────────────────────────────────── */
.internal-links-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.resource-cards { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .resource-cards { flex-direction: row; } }
.resource-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
  transition: border-color 0.2s, transform 0.15s;
}
.resource-card:hover { border-color: rgba(233,30,140,0.35); transform: translateY(-2px); }
.resource-card-icon {
  width: 2.75rem; height: 2.75rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem;
  background: var(--w06);
  color: var(--primary);
}
.resource-card > div:not(.resource-card-icon) { flex: 1; }
.resource-card strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.resource-card p { font-size: 0.8125rem; color: var(--w40); line-height: 1.4; }
.resource-card-arrow { font-size: 1.125rem; color: var(--primary); flex-shrink: 0; transition: transform 0.15s; }
.resource-card:hover .resource-card-arrow { transform: translateX(4px); }

/* ─── Category pills ─────────────────────────────────────────── */
.other-cats-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cat-pill {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--w15);
  background: var(--w06);
  color: var(--w70);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.cat-pill:hover { background: rgba(233,30,140,0.12); border-color: rgba(233,30,140,0.4); color: var(--primary); }

/* ─── Back link ──────────────────────────────────────────────── */
.back-link-wrap { margin-top: 2.5rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--w55);
  border: 1px solid var(--w15);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  transition: border-color 0.15s, color 0.15s;
}
.back-link:hover { border-color: var(--primary); color: var(--primary); }

/* ─── Guide page ─────────────────────────────────────────────── */
.toc-section { padding: 0 1.5rem 1.5rem; position: relative; z-index: 10; }
.toc-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.toc-title {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.875rem;
}
.toc-list { list-style: decimal; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.toc-list a { font-size: 0.9rem; color: var(--w55); transition: color 0.15s; text-decoration: underline; text-underline-offset: 3px; }
.toc-list a:hover { color: var(--primary); }

/* Guide layout — sidebar TOC + article */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 900px) {
  .guide-layout {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
  }
}

/* Guide TOC sidebar */
.guide-toc-inner {
  position: sticky;
  top: 5rem;
}
.guide-toc-label {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--w40);
  margin-bottom: 1rem;
}
.guide-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.guide-toc nav a {
  font-size: 0.875rem;
  color: var(--w55);
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}
.guide-toc nav a:hover { color: var(--primary); }

/* Guide sections */
.guide-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--w06);
}
.guide-section:last-child { border-bottom: none; }

.guide-content-section { padding: 0 1.5rem 4rem; position: relative; z-index: 10; }
.guide-article--full { max-width: none; }
.guide-intro { font-size: 1.0625rem; color: var(--w70); line-height: 1.75; margin-bottom: 2.5rem; }
.guide-h2 {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white);
  margin: 3rem 0 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--w08);
}
.guide-h2:first-of-type { border-top: none; }
.guide-plat-icon { flex-shrink: 0; opacity: 0.9; }
.guide-steps { display: flex; flex-direction: column; gap: 3.5rem; margin: 2.5rem 0; }
.guide-step {
  display: flex; gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem 2rem;
}
.guide-step-num {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.35);
  color: var(--primary);
  font-weight: 700; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
}
.guide-step-body { flex: 1; }
.guide-step-body strong { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.guide-step-body p { font-size: 0.875rem; color: var(--w55); line-height: 1.6; }
.guide-tip-box {
  background: rgba(233,30,140,0.07);
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem; color: var(--w70); line-height: 1.6;
  margin: 1.5rem 0;
}
.guide-tip-box strong { color: var(--primary); }
.guide-list { display: flex; flex-direction: column; gap: 0.75rem; padding-left: 1rem; }
.guide-list li {
  font-size: 0.9375rem; color: var(--w55); line-height: 1.6;
  padding-left: 0.5rem;
  list-style: disc;
}
.guide-list li strong { color: var(--w85); }
.inline-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--w15);
  border-radius: 0.25rem;
  padding: 0.1em 0.4em;
  color: var(--primary);
}

/* ─── Nav platform pills (subpage nav) ────────────────────────── */
.nav-plat-divider {
  color: var(--w15);
  font-size: 0.875rem;
  user-select: none;
}
.nav-plat-pill {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--w15);
  color: var(--w55);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.nav-plat-pill:hover {
  border-color: rgba(233,30,140,0.5);
  color: var(--primary);
  background: rgba(233,30,140,0.08);
}

/* ─── Map CTA section ────────────────────────────────────────── */
.map-cta-section {
  position: relative;
  z-index: 10;
  margin: 2rem 1.5rem 3rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,229,255,0.20);
  background: linear-gradient(135deg, rgba(0,10,30,0.95) 0%, rgba(10,5,35,0.95) 100%);
  box-shadow: 0 0 0 1px rgba(212,168,67,0.08), 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (min-width: 900px) {
  .map-cta-section { margin: 2rem auto 3rem; max-width: var(--max-w); }
}

/* outer box */
.map-cta-box {
  position: relative;
  overflow: hidden;
}
/* dot grid background */
.map-cta-dot-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(10, 1fr);
  pointer-events: none;
  opacity: 0.35;
}
.map-cta-dot {
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(0,229,255,0.6);
  place-self: center;
}
.map-cta-dot:nth-child(3n) { background: rgba(233,30,140,0.5); }
.map-cta-dot:nth-child(7n) { background: rgba(255,107,0,0.4); }
.map-cta-dot:nth-child(5n) { width: 3px; height: 3px; opacity: 0.8; }

/* content */
.map-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2.5rem;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .map-cta-content { padding: 2.5rem 1.25rem; }
}
.map-cta-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 480px) {
  .map-cta-badges { display: none; }
}
.map-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.22);
  color: rgba(0,229,255,0.85);
}
.map-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--white);
}
.map-cta-highlight {
  background: linear-gradient(90deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.map-cta-desc {
  font-size: 1rem; color: var(--w55); max-width: 48ch; line-height: 1.7;
}
.map-cta-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #00b4cc, #0088a8);
  color: #fff;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(0,180,204,0.4), 0 0 0 1px rgba(212,168,67,0.3);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.map-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #00c8e6, #0099bb);
  box-shadow: 0 8px 32px rgba(0,200,230,0.5), 0 0 0 1px rgba(212,168,67,0.5);
}
.map-cta-btn:active { transform: translateY(0); }
.map-cta-btn-arrow {
  font-size: 1.125rem;
  transition: transform 0.15s;
}
.map-cta-btn:hover .map-cta-btn-arrow { transform: translateX(4px); }
.map-cta-hint {
  font-size: 0.75rem; color: var(--w25); letter-spacing: 0.04em;
}

/* ── Language Switcher ──────────────────────────────────────── */
.nav-lang-switcher { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 0.3rem;
  background: none; border: none; cursor: pointer;
  color: var(--w70); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.lang-trigger:hover { color: var(--gold); }
.lang-trigger svg { flex-shrink: 0; }
.lang-current { font-size: 0.75rem; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  padding-top: 0.5rem;
}
.lang-dropdown-menu.lang-open { display: block; }
.lang-dropdown-inner {
  background: rgba(14,10,30,0.97);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 7rem;
}
.lang-opt {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--w70);
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
  white-space: nowrap;
}
.lang-opt:hover { background: rgba(212,168,67,0.08); color: var(--gold); }
.lang-opt--active { color: var(--gold); background: rgba(212,168,67,0.05); }

/* Mobile: show lang switcher nicely */
@media (max-width: 600px) {
  .lang-dropdown-menu { right: auto; left: 0; }
}

/* ── Nav plat pill styling fix ──────────────────────────────── */
.nav-plat-pill {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.07em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--w55);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.nav-plat-pill:hover { background: rgba(212,168,67,0.1); color: var(--gold); border-color: rgba(212,168,67,0.3); }
.nav-plat-divider { color: var(--w25); font-size: 0.85rem; user-select: none; }

/* ── Guide page enhancements ────────────────────────────────── */
.guide-history-cta { font-style: italic; color: var(--w55); }
.guide-history-cta a { color: var(--gold); }

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-main {
  min-height: 80vh;
  padding: 6rem 1.5rem 4rem;
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
}
.legal-breadcrumb {
  font-size: 0.85rem;
  color: var(--w55);
  margin-bottom: 1.5rem;
}
.legal-breadcrumb a { color: var(--gold); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.hero-title-accent { color: var(--gold); }
.legal-last-updated {
  font-size: 0.85rem;
  color: var(--w55);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}
.legal-body p {
  color: var(--w75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-quickbox {
  background: rgba(0,229,255,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--w75);
  line-height: 1.6;
}
.legal-quickbox strong { color: #fff; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.legal-list li {
  color: var(--w75);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  line-height: 1.6;
}
.legal-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.legal-author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.legal-author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
img.legal-author-avatar {
  object-fit: cover;
  background: none;
  display: block;
}
.legal-contact-form {
  background: rgba(255,255,255,0.04);
  border-radius: 1rem;
  padding: 1.75rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(255,255,255,0.07);
}
.legal-form-group {
  margin-bottom: 1.25rem;
}
.legal-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--w75);
  margin-bottom: 0.4rem;
}
.legal-required { color: var(--primary); }
.legal-form-group input,
.legal-form-group select,
.legal-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  color: #fff;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}
.legal-form-group input:focus,
.legal-form-group select:focus,
.legal-form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,168,67,0.05);
}
.legal-form-group select option {
  background: #1a1a2e;
  color: #fff;
}
.legal-form-group textarea { resize: vertical; min-height: 120px; }
.legal-submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.legal-submit-btn:hover { opacity: 0.85; }
.legal-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.legal-form-note {
  font-size: 0.8rem;
  color: var(--w55);
  margin-top: 0.75rem;
}
.legal-form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  display: none;
}
.legal-form-status:not(:empty) { display: block; }
.legal-form-success { background: rgba(212,168,67,0.1); color: var(--gold); }
.legal-form-error { background: rgba(255,45,120,0.1); color: var(--primary); }

/* ── Footer legal row ────────────────────────────────────────── */
.footer-legal-links { margin-top: 0.5rem; font-size: 0.8rem; opacity: 0.7; }
.footer-legal-links a { color: var(--w55); }
.footer-legal-links a:hover { color: var(--gold); }
.footer-rss {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
.footer-rss a {
  color: var(--primary);
  text-decoration: none;
  opacity: 0.7;
}
.footer-rss a:hover { opacity: 1; }

/* ══ Blog ════════════════════════════════════════════════════════ */
.blog-list-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.blog-card-img { width: 100%; max-height: 280px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 280px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-type-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  width: fit-content;
}
.blog-type-badge--large { font-size: 0.8rem; padding: 0.3rem 0.8rem; }
.blog-card-title { font-size: 1.3rem; font-weight: 700; margin: 0; line-height: 1.3; }
.blog-card-title a { color: #fff; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { color: var(--w55,#aaa); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: var(--w55,#aaa); }
.blog-card-date { opacity: 0.8; }
.blog-card-author { opacity: 0.8; }
.blog-read-more {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.25rem;
}
.blog-read-more:hover { text-decoration: underline; }
.blog-empty { text-align: center; padding: 4rem 2rem; color: var(--w55,#aaa); font-size: 1.1rem; }
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 2rem;
  gap: 1rem;
}
.blog-page-btn {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 0.5rem;
  transition: background 0.2s;
  min-width: 120px;
  text-align: center;
  display: inline-block;
}
.blog-page-btn:hover { background: rgba(212,168,67,0.08); }
.blog-page-btn--disabled { opacity: 0; pointer-events: none; }
.blog-page-info { color: var(--w55,#aaa); font-size: 0.85rem; }

/* Blog article */
.blog-article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.blog-article-hero-img { width: 100%; max-height: 420px; overflow: hidden; border-radius: 1rem; margin-bottom: 2rem; }
.blog-article-hero-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-article-header { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.blog-article-title { font-family: var(--font-display); font-style: italic; text-transform: uppercase; font-size: 2rem; font-weight: 800; line-height: 1.2; margin: 0; }
.blog-article-meta { margin: 0.5rem 0 0; font-size: 0.82rem; color: var(--w50); }
.blog-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(0,229,255,0.12);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 1.5rem;
}
.blog-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,229,255,0.25);
}
.blog-author-by { font-size: 0.75rem; color: var(--w50); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-author-name { font-size: 1rem; color: #fff; }
.blog-article-content { line-height: 1.8; font-size: 1rem; color: rgba(255,255,255,0.88); }
.blog-article-content h2 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--gold); }
.blog-article-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.blog-article-content p { margin: 0 0 1rem; }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-article-content li { margin-bottom: 0.4rem; }
.blog-article-content a { color: var(--gold); }
.blog-article-content img { max-width: 100%; border-radius: 0.5rem; margin: 1rem 0; }
.blog-article-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(212,168,67,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--w55,#aaa);
}
.blog-related-section { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.blog-related-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem; color: #fff; }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.blog-related-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.blog-related-card:hover { border-color: var(--gold); }
.blog-related-img { width: 100%; height: 120px; object-fit: cover; display: block; }
.blog-related-body { padding: 0.875rem; }
.blog-related-body h3 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.4rem; line-height: 1.3; }
.blog-related-body h3 a { color: #fff; text-decoration: none; }
.blog-related-body h3 a:hover { color: var(--gold); }
.blog-related-body p { font-size: 0.8rem; color: var(--w55,#aaa); line-height: 1.5; margin: 0 0 0.4rem; }
.blog-back-link { margin-top: 2.5rem; }
.blog-back-link .btn-secondary {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.blog-back-link .btn-secondary:hover { border-color: var(--gold); background: rgba(212,168,67,0.05); }
@media (max-width: 600px) {
  .blog-article-title { font-size: 1.5rem; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-pagination { flex-wrap: wrap; justify-content: center; }
}

/* ─── Homepage Blog Section ──────────────────────────────────── */
.homepage-blog-section {
  position: relative; z-index: 10;
  padding: 5rem 0;
  border-top: 1px solid var(--w06);
}

.homepage-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .homepage-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .homepage-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.homepage-blog-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.homepage-blog-card:hover {
  border-color: var(--w20);
  background: var(--w06);
}

.homepage-blog-card-date {
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
}

.homepage-blog-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem; font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.2;
  margin: 0;
}

.homepage-blog-card-excerpt {
  font-size: 0.875rem; color: var(--w55);
  line-height: 1.65; flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.homepage-blog-card-read {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-top: auto; padding-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════════════
   GTA6MONEY.NET — Homepage components (v9)
   ══════════════════════════════════════════════════════════════ */

/* ─── Logo text ──────────────────────────────────────────────── */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.logo-money { color: var(--gold); }

/* ─── Nav pill ───────────────────────────────────────────────── */
.nav-pill {
  display: none;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-glow);
  white-space: nowrap;
}
@media (min-width: 768px) { .nav-pill { display: inline-block; } }

/* ─── Nav language dropdown ──────────────────────────────────── */
.nav-lang-switcher { position: relative; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--w15); border-radius: 9999px;
  background: var(--w04); color: var(--w70);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.15s, color 0.15s;
}
.lang-trigger:hover { border-color: var(--w30); color: var(--white); }
.lang-current { font-size: 0.6875rem; }
.lang-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: #141413; border: 1px solid var(--w15);
  border-radius: var(--radius-sm); overflow: hidden; z-index: 999;
  min-width: 7rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lang-dropdown-menu.lang-open { display: block; }
.lang-dropdown-inner { display: flex; flex-direction: column; }
.lang-opt {
  display: block; padding: 0.6rem 1rem; min-height: 44px;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--w55); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.lang-opt:hover { background: var(--w06); color: var(--white); }
.lang-opt--active { color: var(--gold); background: var(--gold-glow); }

/* ─── Mobile drawer ──────────────────────────────────────────── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 150; backdrop-filter: blur(2px);
}
.mob-overlay.mob-open { display: block; }
.mob-drawer {
  position: fixed; top: 0; right: -100%; width: min(320px, 90vw);
  height: 100%; background: #111110;
  border-left: 1px solid var(--w08);
  z-index: 200; transition: right 0.3s ease;
  display: flex; flex-direction: column;
}
.mob-drawer.mob-open { right: 0; }
.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--w06);
}
.mob-close-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; min-width: 44px; min-height: 44px;
  border-radius: var(--radius-sm);
  color: var(--w55); cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.mob-close-btn:hover { color: var(--white); background: var(--w06); }
.mob-nav { display: flex; flex-direction: column; padding: 1rem; gap: 0.25rem; }
.mob-nav-link {
  display: block; padding: 0.875rem 1rem; min-height: 44px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem; font-weight: 500;
  color: var(--w70); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mob-nav-link:hover { background: var(--w06); color: var(--white); }
.mob-nav-active { color: var(--gold); background: var(--gold-glow); }
.mob-nav-lang {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 1rem; margin-top: 0.5rem;
  border-top: 1px solid var(--w06);
}
.mob-menu-btn {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 2.75rem; height: 2.75rem; min-width: 44px; min-height: 44px; padding: 4px;
  border-radius: var(--radius-sm); color: var(--w70);
  cursor: pointer; z-index: 101; transition: color 0.15s;
}
.mob-menu-btn:hover { color: var(--white); }
.mob-menu-btn span {
  display: block; height: 2px; border-radius: 2px;
  background: currentColor; width: 100%;
}
@media (min-width: 768px) { .mob-menu-btn { display: none; } }
@media (min-width: 768px) { .mob-overlay, .mob-drawer { display: none !important; } }

/* ─── Footer (new) ───────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 10;
  margin-top: 6rem;
}
.footer-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--w10), transparent);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.siblings-footer {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.siblings-footer a {
  font-size: 0.8125rem; color: var(--w40);
  text-decoration: none;
  transition: color 0.15s;
}
.siblings-footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem;
  border-top: 1px solid var(--w06);
  padding-top: 1.5rem;
}
.footer-copy {
  font-size: 0.8125rem; color: var(--w30);
  text-align: center;
}
.footer-legal-links {
  display: flex; gap: 1rem;
}
.footer-legal-links a {
  font-size: 0.8125rem; color: var(--w40);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--w70); }
.footer-rss {
  text-align: center; margin-top: 1rem;
  font-size: 0.75rem;
}
.footer-rss a { color: var(--w20); transition: color 0.15s; }
.footer-rss a:hover { color: var(--gold); }

/* ─── Money container ────────────────────────────────────────── */
.money-container {
  position: relative; z-index: 10;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Hero (money) ───────────────────────────────────────────── */
.hero-money {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background-image: url('/hero-money.jpg');
  background-size: cover;
  background-position: center center;
  margin: 0 -1.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
}
.hero-money::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,7,6,0.72) 0%,
    rgba(7,7,6,0.55) 40%,
    rgba(7,7,6,0.80) 100%
  );
  z-index: 0;
}
.hero-money > * { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 500; font-family: monospace;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-money-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  max-width: 42rem; margin: 0 auto;
  font-size: 1rem; line-height: 1.75;
  color: var(--w55);
}
.gold { color: var(--gold); }
.green { color: var(--green); }

/* ─── Ticker ─────────────────────────────────────────────────── */
.money-ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(212,168,67,0.1);
  border-bottom: 1px solid rgba(212,168,67,0.1);
  background: rgba(212,168,67,0.04);
  padding: 0.625rem 0;
  margin: 2rem 0;
}
.money-ticker-inner {
  display: inline-block;
  animation: money-scroll 45s linear infinite;
}
@keyframes money-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.ticker-g {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  padding: 0 2rem;
}
.ticker-gl {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green);
  padding: 0 2rem;
}

/* ─── Money methods ──────────────────────────────────────────── */
.methods-section { margin-bottom: 3rem; }
.methods-title {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1rem;
}
.method-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.625rem;
  transition: border-color 0.2s, background 0.2s;
}
.method-card:hover { background: var(--w06); border-color: var(--w20); }
.m-rank {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--w15);
  min-width: 2rem; line-height: 1;
  padding-top: 0.1rem;
}
.m-icon {
  font-size: 1.5rem; line-height: 1;
  padding-top: 0.05rem;
  min-width: 2rem;
}
.m-info { flex: 1; min-width: 0; }
.m-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.m-desc {
  font-size: 0.875rem; color: var(--w55);
  line-height: 1.55; margin-bottom: 0.625rem;
}
.m-stats { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.m-stat {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.175rem 0.5rem;
  border-radius: 9999px;
}
.m-payout { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--gold-border); }
.m-time   { background: var(--green-dim); color: var(--green); border: 1px solid rgba(52,208,88,0.2); }
.m-diff   { background: var(--w04); color: var(--w40); border: 1px solid var(--w08); }

/* ─── Email section ──────────────────────────────────────────── */
.email-section { margin: 3rem 0; }
.email-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.email-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 0.75rem;
}
.email-box h2 span { color: var(--gold); }
.email-sub {
  color: var(--w55); font-size: 0.9375rem;
  line-height: 1.7; max-width: 36rem; margin: 0 auto 1.75rem;
}
.email-form {
  display: flex; gap: 0.625rem; max-width: 28rem; margin: 0 auto 1.25rem;
  flex-wrap: wrap; justify-content: center;
}
.email-input {
  flex: 1; min-width: 200px;
  height: 2.875rem; padding: 0 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--w15); border-radius: var(--radius);
  color: var(--white); font-size: 0.9375rem; font-family: var(--font-body);
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--w30); }
.email-input:focus { outline: none; border-color: var(--gold); }
.email-btn {
  height: 2.875rem; padding: 0 1.5rem;
  background: var(--gold); border-radius: var(--radius);
  color: #070706; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.04em; white-space: nowrap;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
  font-family: var(--font-body);
}
.email-btn:hover { background: #e6b84a; }
.email-btn:active { transform: scale(0.97); }
.email-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.email-perks {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: center; margin-bottom: 1rem;
}
.email-perk {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; color: var(--w55);
}
.perk-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.email-count {
  font-size: 0.8125rem; color: var(--w30);
  margin-top: 0.5rem;
}
#sub-count { color: var(--gold); font-weight: 600; }

/* ─── Upsell boxes ───────────────────────────────────────────── */
.upsell-box {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.upsell-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.upsell-box > div { flex: 1; min-width: 220px; }
.upsell-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.5rem;
}
.upsell-box h3 span { color: var(--gold); }
.upsell-box p { font-size: 0.875rem; color: var(--w55); line-height: 1.6; }
.upsell-link {
  display: inline-flex; align-items: center;
  align-self: center; white-space: nowrap;
  padding: 0.5rem 1rem;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem; font-weight: 700; color: var(--gold);
  text-decoration: none; letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
}
.upsell-link:hover { background: rgba(212,168,67,0.15); border-color: rgba(212,168,67,0.4); }

/* ─── Article list ───────────────────────────────────────────── */
.articles-section { margin: 3rem 0; }
.art-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--w06);
  text-decoration: none; color: inherit;
  transition: background 0.15s;
  flex-wrap: wrap;
}
.art-item:hover .art-t { color: var(--gold); }
.art-d { font-size: 0.75rem; color: var(--text3); white-space: nowrap; min-width: 4rem; }
.art-t { flex: 1; font-size: 0.9375rem; font-weight: 500; color: var(--text1); line-height: 1.4; }
.art-tag {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.15rem 0.5rem;
  border-radius: 9999px; white-space: nowrap;
}

/* ─── Secondary button (small) ───────────────────────────────── */
.btn-secondary-sm {
  display: inline-flex; align-items: center;
  height: 2.25rem; padding: 0 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--w15);
  background: var(--w04); color: var(--w55);
  font-size: 0.8125rem; font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-secondary-sm:hover { border-color: var(--w30); color: var(--white); background: var(--w08); }

/* ─── Utility ────────────────────────────────────────────────── */
.hidden { display: none !important; }
.nav-active { color: var(--gold) !important; }

/* ─── Ad slot placeholders ───────────────────────────────────── */
.ad-slot {
  width: 100%; min-height: 0;
  display: block;
  /* Populated by AdSense at monetization time — invisible until then */
}

/* ─── Quick Answer box ───────────────────────────────────────── */
.quick-answer-box {
  background: rgba(212,168,67,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0.5rem;
  padding: 1.125rem 1.375rem;
  margin: 1.5rem 0 2rem;
}
.quick-answer-label {
  display: block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.quick-answer-box p {
  margin: 0;
  font-size: 1rem; line-height: 1.7;
  color: var(--w85);
}

/* ─── Article sidebar layout ─────────────────────────────────── */
.blog-article-outer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .blog-article-outer {
    grid-template-columns: 1fr 260px;
    align-items: start;
  }
  .blog-article-outer .blog-article-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}
.blog-article-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .blog-article-sidebar {
    display: block;
    position: sticky;
    top: 5rem;
  }
}
.ad-slot--sticky {
  min-height: 250px;
  border-radius: 0.5rem;
  background: var(--w04);
  border: 1px dashed var(--w15);
}

/* ─── Featured articles (homepage) ───────────────────────────── */
.featured-section {
  margin: 3rem 0 0;
  padding: 0 1rem;
}
.featured-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .featured-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .featured-articles-grid { grid-template-columns: repeat(3, 1fr); }
}
.featured-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.375rem;
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.featured-card:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
}
.featured-card-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  width: fit-content;
}
.featured-card-title {
  font-size: 0.9375rem; font-weight: 600; line-height: 1.45;
  color: var(--white);
}
.featured-card-excerpt {
  font-size: 0.8125rem; line-height: 1.55;
  color: var(--w55);
  flex: 1;
}
.featured-card-date {
  font-size: 0.75rem; color: var(--w35);
}

/* ─── Cross-network section (homepage) ───────────────────────── */
.network-section {
  margin: 3rem 0 0;
  padding: 0 1rem;
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .network-grid { grid-template-columns: repeat(4, 1fr); }
}
.network-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.125rem 1.25rem;
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.network-card:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.06);
}
.network-card-icon { font-size: 1.5rem; line-height: 1; }
.network-card-name {
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold); word-break: break-all;
}
.network-card-desc {
  font-size: 0.75rem; line-height: 1.45; color: var(--w55);
}

/* ─── Mobile nav ad slot ─────────────────────────────────────── */
#ad-nav-mobile {
  margin-top: 1.5rem;
  min-height: 250px;
  border-radius: 0.5rem;
  /* Invisible until AdSense fills the slot */
}


/* ─── GTA 6 Countdown widget ─────────────────────────────────── */
.gta6-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 1rem 1.5rem;
  margin: 0 auto 0.5rem;
  max-width: 640px;
}
.countdown-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w55);
}
.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 3.5rem;
  padding: 0.625rem 0.75rem;
  background: var(--w04);
  border: 1px solid var(--gold);
  border-radius: 0.625rem;
}
.countdown-num {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}
.countdown-unit-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w35);
}
.countdown-sep {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}
.countdown-done {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}
@media (max-width: 360px) {
  .countdown-unit { min-width: 2.75rem; padding: 0.5rem; }
  .countdown-num { font-size: 1.25rem; }
}

/* ─── Countdown mobile stacking ─────────────────────────────── */
@media (max-width: 480px) {
  .countdown-boxes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 260px;
  }
  .countdown-sep { display: none; }
  .countdown-unit { min-width: 5.5rem; flex: 0 0 calc(50% - 0.5rem); }
}

/* ─── Newsletter band ────────────────────────────────────────── */
.newsletter-band {
  background: var(--w04);
  border-top: 1px solid var(--w10);
  border-bottom: 1px solid var(--w10);
  padding: 2rem 1rem;
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-head);
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--w20);
  border-radius: 0.5rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: var(--w35); }
.newsletter-btn {
  flex: 0 0 auto;
  padding: 0.75rem 1.375rem;
  background: var(--gold);
  color: var(--bg);
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.newsletter-btn:hover { opacity: 0.88; }
.newsletter-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.newsletter-msg {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0;
}
.newsletter-success { color: var(--green); }
.newsletter-error { color: #e05555; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { flex: none; width: 100%; height: 2.75rem; }
  .newsletter-btn { width: 100%; }
}

  /* ─── Overflow / horizontal scroll fixes ────────────────────── */
  img, video, iframe, object, embed { max-width: 100%; }
  .article-title, .blog-card-title, .featured-card-title {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .m-name { overflow-wrap: break-word; }
  