/* ================================================================
   SpinCity Casinos CA — Cyberpunk City Theme
   Brand: Navy #082C6C | Yellow #F9B700 | Orange #E65C00 | Cobalt #1A56DB
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:      #082C6C;
  --navy-deep: #04163A;
  --cobalt:    #1A56DB;
  --yellow:    #F9B700;
  --yellow-lt: #FFCF40;
  --orange:    #E65C00;
  --orange-lt: #FF7A1A;
  --white:     #FFFFFF;
  --gray-100:  #F0F4FF;
  --gray-200:  #D6E0F5;
  --gray-400:  #8BA0C8;
  --gray-600:  #4A607F;
  --dark-card: rgba(8, 44, 108, 0.55);
  --dark-glass:rgba(4, 22, 58, 0.72);
  --neon-glow: 0 0 18px rgba(249,183,0,0.55), 0 0 40px rgba(249,183,0,0.25);
  --orange-glow:0 0 16px rgba(230,92,0,0.5);
  --radius:    10px;
  --radius-lg: 18px;
  --transition:0.3s ease;
  --font-head: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:     1240px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-200);
  background: var(--navy-deep);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-lt); }
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

/* ── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%; left: 0;
  background: var(--yellow);
  color: var(--navy-deep);
  padding: 10px 20px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── AFFILIATE DISCLOSURE ──────────────────────────────────── */
.affiliate-bar {
  background: rgba(249,183,0,0.12);
  border-bottom: 1px solid rgba(249,183,0,0.25);
  padding: 7px 20px;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}
.affiliate-bar strong { color: var(--yellow); }
.affiliate-bar a { color: var(--yellow); font-weight: 600; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; z-index: 900;
  background: rgba(4, 22, 58, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,183,0,0.18);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: var(--max-w);
  margin: auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo img { height: 90px; width: auto; border-radius: 8px; padding: 4px 8px; background: rgba(255,255,255,0.07); }
.header-logo { flex-shrink: 0; }

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.main-nav a {
  display: block;
  padding: 6px 14px;
  color: var(--gray-200);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
  background: rgba(249,183,0,0.1);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.btn-login {
  padding: 8px 18px;
  border: 1.5px solid rgba(249,183,0,0.4);
  border-radius: 8px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  transition: all var(--transition);
}
.btn-login:hover {
  background: rgba(249,183,0,0.1);
  color: var(--yellow-lt);
}
.btn-register {
  padding: 8px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  border-radius: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--orange-glow);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(230,92,0,0.5);
  color: var(--white);
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── CTA RIBBON ────────────────────────────────────────────── */
.cta-ribbon {
  background: linear-gradient(90deg, var(--navy) 0%, #0D3A8E 50%, var(--navy) 100%);
  border-bottom: 2px solid var(--yellow);
  padding: 11px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.cta-ribbon a {
  color: var(--yellow);
  text-shadow: var(--neon-glow);
}
.cta-ribbon a:hover { color: var(--yellow-lt); }
.cta-ribbon .ribbon-icon { margin: 0 8px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0A2060 60%, #0D3580 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background:
    linear-gradient(to top, var(--navy-deep) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23082C6C' opacity='.9' d='M0 180V120l40-20 20-40 15 40 25-60 20 20 10-30 15 30 30-80 20 40 25-20 10 10 20-30 30 50 20-10 15 10 25-40 20 60 30-70 20 30 20-20 30 40 20-30 40 20 20-50 25 30 15-10 20 20 30-40 20 60 20-20 25 10 30-50 20 40V180z'/%3E%3C/svg%3E") bottom no-repeat;
  background-size: auto 180px;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,183,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,183,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,183,0,0.12);
  border: 1px solid rgba(249,183,0,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-200);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Bonus Card (hero right) */
.hero-bonus-card {
  background: var(--dark-glass);
  border: 1px solid rgba(249,183,0,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-width: 280px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(249,183,0,0.1);
}
.bonus-card-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: var(--neon-glow);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus-card-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.bonus-table-mini { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.bonus-table-mini td {
  padding: 7px 4px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(249,183,0,0.1);
}
.bonus-table-mini td:last-child { text-align: right; font-weight: 600; color: var(--yellow); }
.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: var(--yellow); font-size: 1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; color: var(--white); font-size: 1.1rem; }
.rating-cnt { font-size: 0.78rem; color: var(--gray-400); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #FF7A1A 100%);
  color: var(--white);
  box-shadow: var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(230,92,0,0.55);
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid rgba(249,183,0,0.5);
}
.btn-secondary:hover {
  background: rgba(249,183,0,0.08);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-lt) 100%);
  color: var(--navy-deep);
  box-shadow: var(--neon-glow);
}
.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(249,183,0,0.6);
  color: var(--navy-deep);
}
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { font-size: 1.1rem; }

/* ── SECTION / LAYOUT ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: rgba(4,22,58,0.7); }
.section-navy { background: var(--navy); }
.section-mid {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #071E50 100%);
}

/* ── SEO TEXT BLOCK ─────────────────────────────────────────── */
/* Full-width SEO text — consistent across all pages */
.seo-text,
.seo-content,
article.seo-body {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.seo-text h2,
.seo-content h2,
article.seo-body h2 {
  font-size: clamp(1.3rem,3vw,2rem);
  margin: 36px 0 14px;
  color: var(--white);
}
.seo-text h3,
.seo-content h3,
article.seo-body h3 {
  font-size: clamp(1.1rem,2.5vw,1.4rem);
  margin: 28px 0 10px;
  color: var(--gray-100);
}
.seo-text p,
.seo-content p,
article.seo-body p {
  color: var(--gray-300, #B0BEDE);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.seo-text a,
.seo-content a,
article.seo-body a {
  color: var(--yellow);
  border-bottom: 1px solid rgba(249,183,0,0.3);
  transition: border-color var(--transition);
}
.seo-text a:hover,
.seo-content a:hover,
article.seo-body a:hover { border-color: var(--yellow); }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(249,183,0,0.1);
  border-radius: 20px;
  border: 1px solid rgba(249,183,0,0.2);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--gray-400); max-width: 620px; margin: 0 auto; }

/* ── GRID SYSTEMS ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: start; }

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(249,183,0,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(249,183,0,0.08);
  transform: translateY(-4px);
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { font-size: 0.9rem; color: var(--gray-400); margin: 0; }

/* Stat cards */
.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.12);
  border-radius: var(--radius-lg);
}
.stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  text-shadow: var(--neon-glow);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 0.8rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── TABLES ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid rgba(249,183,0,0.12); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
thead th {
  background: rgba(8,44,108,0.85);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(249,183,0,0.2);
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(249,183,0,0.07);
  transition: background var(--transition);
}
tbody tr:hover { background: rgba(249,183,0,0.04); }
tbody td {
  padding: 12px 16px;
  color: var(--gray-200);
  vertical-align: middle;
}
tbody tr:last-child { border-bottom: none; }
.td-highlight { color: var(--yellow); font-weight: 700; }
.td-check { color: #4ADE80; font-size: 1.1rem; }
.td-cross { color: #F87171; font-size: 1.1rem; }
tbody tr:nth-child(even) { background: rgba(4,22,58,0.3); }

/* Bonus tier table */
.bonus-tier-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.bonus-tier-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.tier-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(249,183,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(249,183,0,0.3);
}

/* ── CHARTS ────────────────────────────────────────────────── */
.chart-card {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.chart-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1rem;
}
.chart-subtitle { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 20px; }
.chart-wrap { position: relative; height: 260px; }
.chart-wrap canvas { max-height: 260px; }

/* ── PAYMENT BADGES ────────────────────────────────────────── */
.payment-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-200);
  transition: all var(--transition);
}
.payment-badge:hover {
  border-color: rgba(249,183,0,0.3);
  color: var(--yellow);
  background: rgba(249,183,0,0.06);
}

/* ── REVIEW SCORE ──────────────────────────────────────────── */
.score-ring-wrap { text-align: center; }
.score-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--yellow) calc(var(--pct)*1%), rgba(249,183,0,0.12) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
}
.score-ring::after {
  content: '';
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--navy-deep);
}
.score-num {
  position: relative; z-index: 1;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow);
}

/* ── FEATURE LIST ──────────────────────────────────────────── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(249,183,0,0.07);
  font-size: 0.9rem;
  color: var(--gray-200);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fi-icon {
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .fi-icon.red { color: #F87171; }

/* ── GAME CARDS ────────────────────────────────────────────── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.game-card:hover {
  border-color: rgba(249,183,0,0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.game-card-img {
  height: 100px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cobalt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.game-card-body { padding: 10px 12px; }
.game-card-name { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.game-card-rtp { font-size: 0.75rem; color: var(--yellow); }

/* ── PROVIDER LOGOS ────────────────────────────────────────── */
.provider-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.provider-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(249,183,0,0.1);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-200);
  transition: all var(--transition);
}
.provider-chip:hover {
  border-color: rgba(249,183,0,0.3);
  color: var(--yellow);
  background: rgba(249,183,0,0.05);
}

/* ── VIP TIERS ─────────────────────────────────────────────── */
.vip-ladder {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vip-tier {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: all var(--transition);
}
.vip-tier:hover { border-color: rgba(249,183,0,0.3); }
.vip-tier.top {
  border-color: rgba(249,183,0,0.4);
  background: rgba(249,183,0,0.06);
}
.vip-icon { font-size: 1.5rem; text-align: center; }
.vip-name { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.vip-desc { font-size: 0.78rem; color: var(--gray-400); }
.vip-pts { font-family: var(--font-head); font-size: 0.85rem; color: var(--yellow); font-weight: 700; text-align: right; white-space: nowrap; }

/* ── AUTHOR BLOCK ──────────────────────────────────────────── */
.author-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--yellow);
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.05rem; margin-bottom: 2px; }
.author-title { font-size: 0.8rem; color: var(--yellow); margin-bottom: 8px; }
.author-bio { font-size: 0.88rem; color: var(--gray-400); margin: 0; }

/* ── PROS / CONS ───────────────────────────────────────────── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-box, .cons-box {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  border: 1px solid;
}
.pros-box { border-color: rgba(74,222,128,0.2); }
.cons-box { border-color: rgba(248,113,113,0.2); }
.pros-box h4 { color: #4ADE80; margin-bottom: 14px; font-size: 1rem; }
.cons-box h4 { color: #F87171; margin-bottom: 14px; font-size: 1rem; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; }
.pros-box li, .cons-box li { font-size: 0.88rem; color: var(--gray-200); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pros-box li::before { content: '✓ '; color: #4ADE80; font-weight: 700; }
.cons-box li::before { content: '✗ '; color: #F87171; font-weight: 700; }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  user-select: none;
}
.faq-q::after { content: '+'; color: var(--yellow); font-size: 1.3rem; font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 16px; }

/* ── STEP GUIDE ────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 23px; top: 23px; bottom: 23px;
  width: 2px;
  background: linear-gradient(var(--yellow), rgba(249,183,0,0.1));
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.step-num {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--navy-deep);
  font-size: 1rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--neon-glow);
}
.step-content h4 { color: var(--white); margin-bottom: 6px; }
.step-content p { font-size: 0.88rem; color: var(--gray-400); margin: 0; }

/* ── NEON DIVIDER ──────────────────────────────────────────── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), rgba(249,183,0,0.3), var(--yellow), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--gray-400);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: rgba(249,183,0,0.4); }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0A2060 100%);
  border-bottom: 1px solid rgba(249,183,0,0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,183,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  background-image:
    linear-gradient(rgba(249,183,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,183,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  position: absolute;
  inset: 0;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--gray-400); max-width: 680px; }
.page-hero .page-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.page-meta span { display: flex; align-items: center; gap: 6px; }
.page-meta .dot { color: var(--yellow); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(249,183,0,0.12);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.83rem; color: var(--gray-400); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--gray-400); font-size: 0.85rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(249,183,0,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-600); margin: 0; }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-legal {
  font-size: 0.72rem;
  color: var(--gray-600);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.6;
}
.rg-logos {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0;
}
.rg-logo {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
}

/* ── COOKIE CONSENT ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px; right: 20px;
  max-width: 520px;
  background: rgba(4,22,58,0.97);
  border: 1px solid rgba(249,183,0,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 9990;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(16px);
  display: none;
}
.cookie-banner.visible { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p { font-size: 0.83rem; color: var(--gray-400); margin-bottom: 16px; }
.cookie-banner a { color: var(--yellow); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept { flex: 1; padding: 10px; background: var(--yellow); color: var(--navy-deep); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 0.85rem; transition: all var(--transition); }
.cookie-accept:hover { background: var(--yellow-lt); }
.cookie-decline { padding: 10px 16px; background: transparent; color: var(--gray-400); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; font-size: 0.85rem; transition: all var(--transition); }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: var(--neon-glow); }
  50% { box-shadow: 0 0 30px rgba(249,183,0,0.7), 0 0 60px rgba(249,183,0,0.35); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.pulse-yellow { animation: pulse 3s infinite; }

/* ── HIGHLIGHT BOX ─────────────────────────────────────────── */
.highlight-box {
  background: rgba(249,183,0,0.07);
  border: 1px solid rgba(249,183,0,0.2);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.highlight-box p { margin: 0; font-size: 0.9rem; color: var(--gray-200); }

/* ── TAG CHIPS ─────────────────────────────────────────────── */
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  padding: 4px 12px;
  background: rgba(26,86,219,0.15);
  border: 1px solid rgba(26,86,219,0.3);
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7EB3FF;
}
.tag-yellow { background: rgba(249,183,0,0.1); border-color: rgba(249,183,0,0.25); color: var(--yellow); }

/* ── MOBILE APP MOCKUP ─────────────────────────────────────── */
.phone-mockup {
  width: 240px;
  height: 460px;
  background: var(--navy-deep);
  border: 3px solid rgba(249,183,0,0.3);
  border-radius: 36px;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(249,183,0,0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-screen {
  position: absolute;
  inset: 12px;
  background: linear-gradient(135deg, #082C6C 0%, #1A56DB 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.phone-screen .phone-logo { font-size: 2.5rem; text-align: center; }
.phone-screen .phone-brand { font-family: var(--font-head); font-size: 1rem; font-weight: 900; color: var(--yellow); }
.phone-screen .phone-sub { font-size: 0.7rem; color: var(--gray-400); }

/* ── SECTION LOGIN/REGISTER ────────────────────────────────── */
.auth-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}
.auth-card h2 { text-align: center; margin-bottom: 8px; }
.auth-card .auth-sub { text-align: center; color: var(--gray-400); font-size: 0.88rem; margin-bottom: 28px; }
.auth-redirect-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF7A1A 100%);
  color: var(--white);
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: var(--orange-glow);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.auth-redirect-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(230,92,0,0.55);
}
.auth-features { list-style: none; padding: 0; margin: 20px 0; }
.auth-features li {
  font-size: 0.88rem;
  color: var(--gray-400);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 8px;
}
.auth-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-bonus-card { min-width: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; inset: 68px 0 0 0; background: rgba(4,22,58,0.98); padding: 24px; z-index: 800; overflow-y: auto; }
  .main-nav.open { display: flex; flex-direction: column; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; }
  .header-cta .btn-login { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 50px 24px 70px; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 1.4rem; }
  .section { padding: 48px 0; }
  .author-block { flex-direction: column; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .payment-grid { gap: 8px; }
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #071E50 60%, rgba(26,86,219,0.2) 100%);
  overflow: hidden;
  padding-bottom: 48px;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,183,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,183,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-inner h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--white);
}
.page-hero-inner p {
  color: var(--gray-400);
  max-width: 680px;
  font-size: 1rem;
}
.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--gray-600);
}
.page-meta .dot { color: var(--yellow); margin-right: 4px; }

/* ── PHONE MOCKUP ───────────────────────────────────────────── */
.phone-mockup {
  display: inline-block;
  width: 200px;
  background: linear-gradient(180deg, #0d1b38, #071228);
  border: 2px solid rgba(249,183,0,0.3);
  border-radius: 28px;
  padding: 20px 16px;
  box-shadow: 0 0 40px rgba(249,183,0,0.15), 0 20px 60px rgba(0,0,0,0.5);
}
.phone-screen {
  background: linear-gradient(180deg, #082C6C, #04163A);
  border-radius: 16px;
  padding: 20px 12px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(249,183,0,0.2);
}
.phone-logo { font-size: 2.5rem; margin-bottom: 6px; }
.phone-brand {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 2px;
}
.phone-sub { font-size: 0.6rem; color: var(--gray-400); margin-bottom: 12px; }

/* ── VIP LADDER ─────────────────────────────────────────────── */
.vip-ladder { display: flex; flex-direction: column; gap: 12px; }
.vip-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.vip-tier.top {
  border-color: rgba(249,183,0,0.4);
  box-shadow: 0 0 20px rgba(249,183,0,0.1);
}
.vip-tier:hover { border-color: rgba(249,183,0,0.3); transform: translateX(4px); }
.vip-icon { font-size: 1.8rem; flex-shrink: 0; }
.vip-name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.95rem; }
.vip-desc { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }
.vip-pts { margin-left: auto; font-size: 0.72rem; color: var(--yellow); font-weight: 600; white-space:nowrap; }

/* ── AUTH CARD ──────────────────────────────────────────────── */
.auth-card {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  margin: 0 auto;
}
.auth-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.auth-sub { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 20px; }
.auth-redirect-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy-deep);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 16px;
}
.auth-redirect-btn:hover { transform: translateY(-2px); box-shadow: var(--neon-glow); }

/* ── GRID 1-2 ───────────────────────────────────────────────── */
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ── SECTION NAVY ───────────────────────────────────────────── */
.section-navy { background: linear-gradient(135deg, #040F24, #071E50 50%, #04163A); }

/* ── BTN YELLOW ─────────────────────────────────────────────── */
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-lt));
  color: var(--navy-deep);
  font-weight: 800;
}
.btn-yellow:hover { box-shadow: 0 8px 28px rgba(249,183,0,0.5); transform: translateY(-2px); }

/* ── BTN SIZES ──────────────────────────────────────────────── */
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-icon { gap: 8px; }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-400); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--gray-600); }

/* ── TIER BADGE ─────────────────────────────────────────────── */
.tier-badge {
  background: rgba(249,183,0,0.15);
  color: var(--yellow);
  border: 1px solid rgba(249,183,0,0.3);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── PROVIDER ROW ───────────────────────────────────────────── */
.provider-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.provider-chip {
  background: var(--dark-card);
  border: 1px solid rgba(249,183,0,0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.83rem;
  color: var(--gray-200);
  transition: var(--transition);
}
.provider-chip:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── TAGS ───────────────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: rgba(26,86,219,0.15);
  color: var(--gray-200);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.73rem;
}
.tag-yellow { background: rgba(249,183,0,0.12); color: var(--yellow); }

/* ── PAYMENT BADGE ──────────────────────────────────────────── */
.payment-badge {
  background: rgba(249,183,0,0.08);
  border: 1px solid rgba(249,183,0,0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--gray-200);
}

/* ── RG LOGOS ───────────────────────────────────────────────── */
.rg-logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.rg-logo {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--gray-600);
}

/* ── MOBILE RESPONSIVE ADDITIONS ───────────────────────────── */
@media (max-width: 768px) {
  .grid-1-2 { grid-template-columns: 1fr; }
  .phone-mockup { width: 160px; }
  .vip-tier { padding: 12px 14px; }
  .page-hero { min-height: 160px; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── MOBILE NAVIGATION ──────────────────────────────────────── */
@media (max-width: 860px) {
  .hamburger {
    display: flex !important;
    z-index: 10000;
    position: relative;
  }

  .header-cta {
    gap: 6px;
  }

  /* На мобиле — скрываем Login, оставляем Register */
  .header-cta .btn-login {
    display: none;
  }

  .header-cta .btn-register {
    padding: 8px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-logo img {
    height: 60px;
  }

  .header-inner {
    height: 80px;
    padding: 0 16px;
  }

  /* Nav overlay — hidden by default */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    background: rgba(4, 22, 58, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 80px !important;
    /* Hidden state */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Open state */
  .main-nav.open {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
  }

  .main-nav ul {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(249,183,0,0.1);
  }

  .main-nav a {
    display: block !important;
    padding: 20px 32px !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: var(--gray-100) !important;
    border-radius: 0 !important;
    letter-spacing: 0.5px !important;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(249,183,0,0.1) !important;
    color: var(--yellow) !important;
  }
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

