@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #F0CC6E;
  --gold-dark: #9B7B2A;
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3A5C;
  --navy-card: #0F1E35;
  --white: #FFFFFF;
  --off-white: #F4F6FA;
  --text-main: #E8EAF0;
  --text-muted: #8A9BB5;
  --text-dark: #1A1A2E;
  --green: #27AE60;
  --red: #E74C3C;
  --border: rgba(201,168,76,0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 20px rgba(201,168,76,0.25);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-lg { font-size: 1.1rem; padding: 18px 44px; }

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}
.section-header { margin-bottom: 44px; }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px 0 20px;
}

.gold-text { color: var(--gold); }

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}
.online-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ===== PROMO STRIP (top banner) ===== */
.promo-strip {
  background: linear-gradient(135deg, #B8860B 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%);
  padding: 12px 16px !important;
  text-align: center;
  position: relative;
  z-index: 100;
  width: 100% !important;
  max-width: 100vw !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.promo-strip__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.promo-strip__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.68rem, 2.2vw, 0.92rem) !important;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  text-align: center;
  margin: 0;
}
.promo-strip .btn {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.82rem !important;
  padding: 9px 18px !important;
  box-shadow: none;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.promo-strip .btn:hover { background: var(--navy-light); }
@media (max-width: 520px) {
  .promo-strip__inner { flex-direction: column !important; gap: 10px !important; }
  .promo-strip .btn { width: 100% !important; text-align: center !important; }
  .promo-strip__text { font-size: 0.7rem !important; }
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1180px;
  margin: 0 auto;
  height: 68px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }

.header-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #081322 0%, var(--navy-mid) 40%, #0D1F38 100%);
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(17,34,64,0.8) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-card {
  background: linear-gradient(145deg, var(--navy-card), #0D1F38);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-gold), var(--shadow);
  text-align: center;
}
.hero-card-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.hero-card-sub { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; }
.hero-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 16px; }
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.25);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-card-badge::before { content: '✓'; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.bonus-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.4);
}
.bonus-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bonus-card-amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.bonus-card-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.bonus-card-timer {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.bonus-card-slots {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ===== MID BANNER ===== */
.mid-banner {
  background: linear-gradient(135deg, #0D1F38 0%, var(--navy-mid) 50%, #0A1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
}
.mid-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
}
.mid-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-banner-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.mid-banner-text span { color: var(--text-muted); font-size: 0.9rem; }

/* ===== INFO CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.info-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color 0.2s;
}
.info-card:hover { border-color: rgba(201,168,76,0.35); }
.info-card-icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
  color: var(--gold);
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.info-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ===== ARTICLE / REVIEW ===== */
.article-body {
  max-width: 860px;
  margin: 0 auto;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  margin: 52px 0 14px;
  padding-top: 4px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 30px 0 10px;
}
.article-body p {
  color: var(--text-main);
  font-size: 0.97rem;
  margin-bottom: 18px;
  line-height: 1.8;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--text-main);
  font-size: 0.97rem;
  line-height: 1.8;
}
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--white); font-weight: 700; }
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.article-highlight {
  background: rgba(201,168,76,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 24px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.75;
}

/* ===== TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
}
.table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.table-wrap th {
  background: var(--navy-light);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-main);
  vertical-align: middle;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.table-wrap tr:hover td { background: rgba(201,168,76,0.04); }
.td-check { color: var(--green); font-weight: 700; }
.td-cross { color: var(--red); font-weight: 700; }

/* ===== PROS / CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.pros-block, .cons-block {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.pros-block { border-top: 3px solid var(--green); }
.cons-block { border-top: 3px solid var(--red); }
.pros-block h4, .cons-block h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.pros-block h4 { color: var(--green); }
.cons-block h4 { color: var(--red); }
.pros-block ul, .cons-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-main);
}
.pros-block li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cons-block li::before { content: '✗ '; color: var(--red); font-weight: 700; }
.pros-block li, .cons-block li { margin-bottom: 8px; line-height: 1.5; }

/* ===== RATING BLOCK ===== */
.rating-block {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 32px 0;
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rating-score {
  text-align: center;
  flex-shrink: 0;
}
.rating-score strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-score span { font-size: 0.82rem; color: var(--text-muted); }
.rating-stars { font-size: 1.4rem; margin: 6px 0; color: var(--gold); }
.rating-bars { flex: 1; min-width: 200px; }
.rating-row { margin-bottom: 12px; }
.rating-row-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.rating-row-label strong { color: var(--text-main); font-weight: 600; }
.rating-bar-bg {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

/* ===== GAME CATEGORIES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.game-cat-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.game-cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.game-cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.game-cat-card h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.game-cat-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== PAYMENT ICONS ===== */
.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pay-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ===== PROVIDERS ===== */
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.provider-pill {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.provider-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
}
.review-location { font-size: 0.78rem; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }
.review-text { font-size: 0.88rem; color: var(--text-main); line-height: 1.65; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(201,168,76,0.35); }
.faq-question {
  width: 100%;
  background: var(--navy-card);
  border: none;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201,168,76,0.06); }
.faq-icon {
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--navy-card);
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ===== TOC ===== */
.toc {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin-bottom: 40px;
}
.toc h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.toc ol {
  padding-left: 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1;
}
.toc li { margin-bottom: 10px; }
.toc a { color: var(--text-muted); transition: color 0.2s; }
.toc a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 60px 20px 0;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.86rem; color: var(--text-muted); margin-top: 16px; line-height: 1.75; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 0.86rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-rg {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.rg-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.age-badge {
  background: var(--red);
  color: var(--white);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.ukgc-line {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===== AUTHOR BOX ===== */
.author-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 48px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}
.author-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.author-info span { font-size: 0.8rem; color: var(--gold); }
.author-info p { font-size: 0.87rem; color: var(--text-muted); margin-top: 8px; line-height: 1.65; }

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,22,40,0.97);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  z-index: 200;
  justify-content: center;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 24px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 100%; }
  .pros-cons { grid-template-columns: 1fr; }
  .rating-block { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .section { padding: 52px 0; }
  .hero { padding: 52px 20px 60px; }
}

@media (max-width: 480px) {
  .promo-strip { padding: 12px 12px; }
  .promo-strip__inner { flex-direction: column; gap: 10px; }
  .promo-strip__text { font-size: 0.72rem; letter-spacing: 0; }
  .promo-strip .btn { width: 100%; text-align: center; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 16px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .mid-banner-inner { flex-direction: column; text-align: center; }
}
