/* ══════════════════════════════════════════
   livedealer-pa.com — Global Stylesheet
   Multi-page SEO-optimized architecture
   ══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg-deep: #0A0D12;
  --bg-surface: #10141C;
  --bg-card: #151A24;
  --bg-elevated: #1C2130;
  --bg-hover: #232838;
  --gold: #D4A853;
  --gold-light: #F0D48A;
  --gold-dim: rgba(212,168,83,0.12);
  --gold-glow: rgba(212,168,83,0.25);
  --green: #34D399;
  --green-dim: rgba(52,211,153,0.10);
  --red: #F87171;
  --blue: #60A5FA;
  --blue-dim: rgba(96,165,250,0.10);
  --purple: #A78BFA;
  --purple-dim: rgba(167,139,250,0.10);
  --text-primary: #F0F1F3;
  --text-secondary: #8B92A5;
  --text-muted: #555C70;
  --border: rgba(255,255,255,0.06);
  --border-subtle: rgba(255,255,255,0.03);
  --border-gold: rgba(212,168,83,0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-w: 1200px;
  --nav-h: 64px;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.wrap { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(10,13,18,0.82);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

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

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.3px;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), #C09030);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #0A0D12;
}
.nav-logo .brand-accent { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px; transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-links a[aria-current="page"] { color: var(--gold); background: var(--gold-dim); }

.nav-cta {
  padding: 9px 20px !important;
  background: linear-gradient(135deg, var(--gold), #C09030) !important;
  color: #0A0D12 !important; font-weight: 700 !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 12px var(--gold-glow);
  transition: all 0.25s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--gold-glow); }

.nav-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
  padding: 6px 12px; background: var(--green-dim); border-radius: 100px;
}
.nav-trust svg { flex-shrink: 0; }

.nav-toggle {
  display: none; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text-secondary); border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,13,18,0.97); backdrop-filter: blur(20px);
  z-index: 999; padding: 24px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 18px; font-size: 16px; font-weight: 500;
  color: var(--text-secondary); border-radius: 10px; transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] {
  color: var(--text-primary); background: rgba(255,255,255,0.04);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: calc(var(--nav-h) + 20px) 24px 0;
  max-width: var(--max-w); margin: 0 auto;
}
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li::after { content: '/'; color: var(--text-muted); opacity: 0.4; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--text-primary); font-weight: 500; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.2px;
  cursor: pointer; border: none; transition: all 0.25s;
  font-family: var(--font-body);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #C09030);
  color: #0A0D12; box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary); border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.25s;
  font-family: var(--font-body);
}
.cta-btn.primary {
  background: linear-gradient(135deg, var(--gold), #C09030);
  color: #0A0D12; box-shadow: 0 3px 16px var(--gold-glow);
}
.cta-btn.primary:hover { transform: translateY(-1px); box-shadow: 0 5px 24px var(--gold-glow); }
.cta-btn.secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary); border: 1px solid var(--border);
}
.cta-btn.secondary:hover { background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════
   SECTIONS & TYPOGRAPHY
   ══════════════════════════════════════════ */
.section {
  padding: 80px 24px;
  max-width: var(--max-w); margin: 0 auto;
}

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px); line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px; color: var(--text-secondary);
  max-width: 560px; line-height: 1.65; margin-bottom: 40px;
}

.divider {
  height: 1px; background: var(--border);
  max-width: var(--max-w); margin: 0 auto;
}

/* ── Prose content (for review pages) ── */
.prose { max-width: 720px; }
.prose h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.3;
  margin: 48px 0 16px; color: var(--text-primary);
}
.prose h3 {
  font-size: 18px; font-weight: 700;
  margin: 32px 0 12px; color: var(--text-primary);
}
.prose p {
  font-size: 15.5px; line-height: 1.75;
  color: var(--text-secondary); margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin: 16px 0 24px 20px;
  color: var(--text-secondary);
}
.prose li {
  font-size: 15px; line-height: 1.7;
  margin-bottom: 8px; list-style: disc;
  padding-left: 4px;
}
.prose ol li { list-style: decimal; }
.prose a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.2s;
}
.prose a:hover { color: var(--gold-light); }
.prose strong { color: var(--text-primary); font-weight: 600; }

/* ══════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════ */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
}

.comparison-table {
  width: 100%; border-collapse: collapse; table-layout: fixed;
}
.comparison-table thead th {
  position: sticky; top: var(--nav-h); z-index: 10;
  background: var(--bg-elevated); padding: 14px 16px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); text-align: left;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
.comparison-table thead th:first-child { width: 24%; }
.comparison-table tbody td {
  padding: 18px 16px; font-size: 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle; line-height: 1.5;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr { transition: background 0.15s; }
.comparison-table tbody tr:hover td { background: var(--bg-hover); }
.comparison-table tbody tr.recommended {
  background: linear-gradient(90deg, rgba(212,168,83,0.05) 0%, transparent 50%);
}
.comparison-table tbody tr.recommended td:first-child {
  border-left: 3px solid var(--gold); padding-left: 13px;
}

/* Casino cell */
.casino-cell { display: flex; align-items: center; gap: 12px; }
.casino-logo {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; letter-spacing: 0.5px; flex-shrink: 0;
}
.casino-logo.bet365 { background: linear-gradient(135deg, #1D6B37, #0D4A22); color: #fff; }
.casino-logo.betmgm { background: linear-gradient(135deg, #C5993A, #8B6914); color: #fff; }
.casino-logo.fanduel { background: linear-gradient(135deg, #1A6BF5, #0A3D9E); color: #fff; }
.casino-name { font-weight: 700; font-size: 14px; }
.casino-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.badge-rec {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--gold), #C09030);
  color: #0A0D12; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; margin-left: 8px;
}

.bonus-code {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  padding: 3px 10px; border-radius: 6px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 1px;
  cursor: pointer; transition: all 0.2s; position: relative;
}
.bonus-code:hover { background: rgba(255,255,255,0.1); }
.bonus-code.copied::after {
  content: 'Copied!'; position: absolute;
  top: -28px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #0A0D12;
  font-size: 10px; padding: 3px 8px; border-radius: 4px;
  white-space: nowrap; animation: fadeDown 0.3s ease;
}

.feature-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--green-dim); color: var(--green);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
}

/* ── Mobile cards ── */
.mobile-cards { display: none; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 20px;
  margin-bottom: 16px; position: relative; transition: border-color 0.3s;
}
.feature-card.recommended {
  border-color: var(--border-gold);
  box-shadow: 0 0 40px rgba(212,168,83,0.06);
}
.feature-card.recommended::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.card-header .casino-logo { width: 48px; height: 48px; font-size: 12px; }
.card-header .casino-name { font-size: 18px; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.card-stat { background: var(--bg-elevated); border-radius: var(--radius-sm); padding: 12px 14px; }
.card-stat .label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.card-stat .value { font-size: 14px; font-weight: 600; }
.card-bonus {
  background: var(--bg-elevated); border-radius: var(--radius-sm);
  padding: 16px; margin-bottom: 16px; text-align: center;
}
.card-bonus .amount {
  font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.card-bonus .desc { font-size: 12px; color: var(--text-secondary); }
.card-actions { display: flex; gap: 10px; }
.card-actions .cta-btn { flex: 1; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════
   GAME CATEGORY CARDS
   ══════════════════════════════════════════ */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
}
.game-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.game-card .card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.game-card.blackjack .card-icon { background: var(--green-dim); }
.game-card.roulette .card-icon { background: var(--blue-dim); }
.game-card.shows .card-icon { background: var(--purple-dim); }
.game-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.game-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }
.game-card .game-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.game-card .game-meta span { display: flex; align-items: center; gap: 5px; }
.game-card .card-arrow { position: absolute; top: 32px; right: 24px; color: var(--text-muted); transition: all 0.3s; }
.game-card:hover .card-arrow { color: var(--gold); transform: translateX(4px); }

/* ══════════════════════════════════════════
   STUDIO CARDS
   ══════════════════════════════════════════ */
.studios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.studio-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px; transition: all 0.3s;
}
.studio-card:hover { border-color: rgba(255,255,255,0.1); }
.studio-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.studio-name { font-size: 20px; font-weight: 700; }
.studio-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.studio-badge.leader { background: var(--gold-dim); color: var(--gold); }
.studio-badge.challenger { background: var(--blue-dim); color: var(--blue); }
.studio-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.studio-stat { text-align: center; padding: 14px 8px; background: var(--bg-elevated); border-radius: var(--radius-sm); }
.studio-stat .num { font-size: 22px; font-weight: 700; font-family: var(--font-display); margin-bottom: 2px; }
.studio-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-muted); }
.studio-games { display: flex; flex-wrap: wrap; gap: 6px; }
.studio-games .tag {
  font-size: 11.5px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; background: rgba(255,255,255,0.04);
  color: var(--text-secondary); border: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   TABLE LIMITS
   ══════════════════════════════════════════ */
.limits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.limit-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  text-align: center; transition: all 0.3s; cursor: pointer;
}
.limit-card:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-2px); }
.limit-range { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.limit-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; }
.limit-casinos { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.limit-casinos .mini-logo {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
}
.limit-card .match-text { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════ */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; background: none; border: none;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--text-primary); cursor: pointer; text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary);
}

/* ══════════════════════════════════════════
   REVIEW PAGE — SIDEBAR LAYOUT
   ══════════════════════════════════════════ */
.review-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px;
  max-width: var(--max-w); margin: 0 auto; padding: 40px 24px 80px;
}
.review-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   AUTHOR BOX (E-E-A-T)
   ══════════════════════════════════════════ */
.author-box {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin: 40px 0;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-elevated); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: var(--gold); flex-shrink: 0;
}
.author-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.author-info .author-role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.author-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.author-info a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════
   RESPONSIBLE GAMING BANNER
   ══════════════════════════════════════════ */
.rg-banner {
  background: var(--bg-surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.rg-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
}
.rg-icon {
  width: 56px; height: 56px; background: var(--green-dim);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rg-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.rg-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.rg-content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.rg-links { display: flex; gap: 12px; flex-shrink: 0; }
.rg-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; padding: 10px 18px;
  border-radius: 100px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--text-secondary); transition: all 0.2s;
}
.rg-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.07); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer[role="contentinfo"] {
  padding: 60px 24px 40px;
  max-width: var(--max-w); margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13.5px; color: var(--text-secondary); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.footer-badges { display: flex; gap: 12px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,0.03); padding: 6px 14px;
  border-radius: 100px; border: 1px solid var(--border);
}

/* ── Sticky mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 16px;
  background: rgba(10,13,18,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }

/* ── "Last updated" meta ── */
.page-meta {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
  font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
}
.page-meta time { font-weight: 600; color: var(--text-secondary); }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.animate-in { opacity:0; transform:translateY(24px); transition: all 0.6s cubic-bezier(0.22,1,0.36,1); }
.animate-in.visible { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .table-wrap { display: none; }
  .mobile-cards { display: block; }
  .games-grid, .limits-grid { grid-template-columns: 1fr; }
  .studios-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rg-inner { flex-direction: column; text-align: center; gap: 20px; }
  .rg-links { justify-content: center; flex-wrap: wrap; }
  .sticky-cta { display: block; }
  .section { padding: 60px 20px; }
  .review-layout { grid-template-columns: 1fr; gap: 32px; }
  .review-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-trust { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
}
