/* ============================================================
   LANISTA CASINO — Premium Design System v2
   Dark Roman/Gladiator theme | Gold #f0a500
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --bg4:       #1e1e1e;
  --gold:      #f0a500;
  --gold-h:    #d48f00;
  --gold-dim:  rgba(240,165,0,.12);
  --gold-glow: rgba(240,165,0,.25);
  --text:      #ede8df;
  --text2:     #9a9080;
  --text3:     #6a6058;
  --border:    #252220;
  --border2:   #2e2a26;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --max-w:     1200px;
  --shadow:    0 4px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.7);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-color: var(--border2) var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::selection { background: rgba(240,165,0,.25); color: #fff; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-h); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }
p { margin-bottom: 0; }

/* ── Container ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 12px;
}
.logo img { height: 40px; width: auto; }

.main-nav { display: flex; gap: 2px; }
.main-nav a {
  color: var(--text2); font-size: 13.5px; font-weight: 500;
  padding: 7px 13px; border-radius: var(--radius);
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.main-nav a.active { color: var(--gold); background: var(--gold-dim); }

.header-cta {
  background: var(--gold);
  color: #0a0a0a; font-weight: 800; font-size: 13.5px;
  padding: 9px 22px; border-radius: var(--radius);
  white-space: nowrap;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.header-cta:hover {
  background: var(--gold-h); color: #0a0a0a;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

/* Language switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 6px 11px;
  font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; white-space: nowrap;
  transition: background .2s, border-color .2s;
  user-select: none;
}
.lang-current:hover { background: rgba(255,255,255,.08); border-color: var(--border2); }
.lang-current .lang-arrow { font-size: 9px; opacity: .5; transition: transform .2s; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden; min-width: 140px;
  z-index: 200; box-shadow: var(--shadow-lg);
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 15px; font-size: 13px; font-weight: 500;
  color: var(--text2); transition: background .15s, color .15s;
}
.lang-dropdown a:hover { background: var(--gold-dim); color: var(--text); }
.lang-dropdown a.lang-active { color: var(--gold); font-weight: 700; }
.lang-switcher-mobile { display: none; position: relative; }
.lang-mobile-btn { background: var(--bg4); border: 1px solid var(--border2); color: var(--text); border-radius: 8px; padding: 6px 11px; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 4px; line-height: 1; }
.lang-mobile-btn .lang-arrow { font-size: 9px; opacity: .5; transition: transform .2s; }
.lang-switcher-mobile.open .lang-arrow { transform: rotate(180deg); }
.lang-mobile-drop { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: var(--bg3); border: 1px solid var(--border2); border-radius: 10px; min-width: 100px; padding: 4px; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.lang-switcher-mobile.open .lang-mobile-drop { display: block; }
.lang-mobile-drop a { display: flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 6px; font-size: 13px; font-weight: 600; color: var(--text2); text-decoration: none; transition: background .15s, color .15s; line-height: 1; }
.lang-mobile-drop a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.lang-mobile-drop a.lang-active { color: var(--gold); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 8px 16px 16px;
}
.mobile-nav a {
  color: var(--text); font-size: 15px; font-weight: 500;
  padding: 11px 4px; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; color: var(--gold); font-weight: 700; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 500px; display: flex; align-items: center;
  background: var(--bg2);
}
.hero-small { min-height: 340px; }
.hero > .wrap {
  position: relative; z-index: 3;
  width: 100%; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/foto/hero-bg.webp');
  background-size: cover; background-position: center top;
  opacity: .65;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,  rgba(10,10,10,.90) 0%, rgba(10,10,10,.6) 55%, rgba(10,10,10,.05) 100%),
    linear-gradient(180deg, rgba(10,10,10,.0) 50%, rgba(10,10,10,.8) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 640px; padding: 64px 0 64px 4px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.25);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px); font-weight: 900;
  line-height: 1.1; margin-bottom: 18px; color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.8);
  margin-bottom: 32px; max-width: 500px; line-height: 1.6;
}
.hero-cta {
  display: inline-block; position: relative; overflow: hidden;
  background: var(--gold); color: #0a0a0a; font-weight: 800;
  font-size: 17px; padding: 15px 36px; border-radius: var(--radius);
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(240,165,0,.35);
  letter-spacing: .01em;
}
.hero-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .5s;
}
.hero-cta:hover {
  background: #ffb800; color: #0a0a0a;
  box-shadow: 0 6px 32px rgba(240,165,0,.5);
  transform: translateY(-2px);
}
.hero-cta:hover::before { left: 150%; }
.hero-compliance {
  font-size: 11px; color: rgba(255,255,255,.4); margin-top: 14px; letter-spacing: .02em;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border2);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px 28px; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text2);
}
.trust-item strong { color: var(--text); font-weight: 700; }
.trust-icon { font-size: 17px; }

/* ── Section base ── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg2); }
.section-title {
  font-size: clamp(22px, 3.5vw, 34px); font-weight: 800;
  color: #fff; margin-bottom: 20px; letter-spacing: -.02em;
  line-height: 1.2;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border2);
  position: relative;
}
.section-title::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), #ffcc44);
  border-radius: 2px;
}
.section-title-accent {
  display: none;
}
.section-sub { color: var(--text2); margin-bottom: 36px; max-width: 600px; font-size: 15.5px; }

/* ── Bonus tiers ── */
.bonus-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.bonus-card {
  background: linear-gradient(145deg, var(--bg3) 0%, var(--bg4) 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.bonus-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), #ffcc44);
  border-radius: 2px 2px 0 0;
}
.bonus-card:hover {
  border-color: rgba(240,165,0,.35);
  box-shadow: 0 8px 32px rgba(240,165,0,.12);
  transform: translateY(-3px);
}
.bonus-card .tier { font-size: 10.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--text3); margin-bottom: 10px; font-weight: 700; }
.bonus-card .amount { font-size: 27px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; }
.bonus-card .fs { font-size: 13.5px; color: var(--gold); margin: 6px 0 14px; font-weight: 600; }
.bonus-card .terms { font-size: 11px; color: var(--text3); line-height: 1.5; }

/* ── Fact table ── */
.fact-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.fact-table th, .fact-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.fact-table tr:nth-child(even) td,
.fact-table tr:nth-child(even) th { background: rgba(255,255,255,.02); }
.fact-table th { color: var(--text2); font-weight: 600; font-size: 13px; width: 200px; white-space: nowrap; }
.fact-table td { color: var(--text); font-weight: 500; }
.fact-table tr:last-child th, .fact-table tr:last-child td { border-bottom: none; }
.table-wrap {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}

/* ── Game grid ── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.game-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--bg3); border: 1px solid var(--border);
  aspect-ratio: 226 / 338;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  display: block; text-decoration: none; cursor: pointer;
}
.game-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.game-card:hover {
  border-color: rgba(240,165,0,.4);
  box-shadow: 0 6px 24px rgba(240,165,0,.15);
  transform: translateY(-3px);
}
.game-card:hover img { transform: scale(1.06); }
.game-card .game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,.85) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s; gap: 8px;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-play {
  background: var(--gold); color: #0a0a0a; font-weight: 800; font-size: 13px;
  padding: 8px 20px; border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(240,165,0,.4);
}
.game-rtp { font-size: 11px; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .04em; }
.badge-new, .badge-hot {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: .06em;
}
.badge-new { background: #1a8a50; color: #fff; box-shadow: 0 2px 8px rgba(26,138,80,.4); }
.badge-hot { background: #b02820; color: #fff; box-shadow: 0 2px 8px rgba(176,40,32,.4); }

/* ── Provider strip ── */
.provider-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.provider-chip {
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text2); font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 20px; white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
}
.provider-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ── Payment strip ── */
.payment-strip { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.pay-chip {
  background: var(--bg3); border: 1px solid var(--border2);
  font-size: 13px; font-weight: 700; color: var(--text);
  padding: 9px 18px; border-radius: var(--radius); white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.pay-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ── Feature cards ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.feature-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(240,165,0,.3);
  box-shadow: 0 6px 24px rgba(240,165,0,.08);
  transform: translateY(-2px);
}
.feature-icon { font-size: 34px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── Pros / Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 22px;
}
.pros { border-top: 3px solid #1a8a50; }
.cons { border-top: 3px solid #b02820; }
.pros h3 { color: #2db870; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.cons h3 { color: #e04040; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.pros ul, .cons ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pros li::before { content: '✓ '; color: #2db870; font-weight: 800; }
.cons li::before { content: '✗ '; color: #e04040; font-weight: 800; }
.pros li, .cons li { font-size: 14px; color: var(--text); }

/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item:has(input:checked) { border-color: rgba(240,165,0,.3); }
.faq-item input[type="checkbox"] { display: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 20px; cursor: pointer; font-weight: 600; font-size: 15px;
  color: var(--text); user-select: none; gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: #fff; }
.faq-q::after {
  content: '+'; color: var(--gold); font-size: 22px; line-height: 1;
  flex-shrink: 0; font-weight: 300; transition: transform .25s;
}
.faq-item input:checked + .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: 14.5px; color: var(--text2); line-height: 1.75;
}
.faq-item input:checked ~ .faq-a { max-height: 800px; padding: 0 20px 18px; }

/* ── CTA block ── */
.cta-block {
  background: linear-gradient(135deg, #150f00 0%, #1e1600 50%, #150f00 100%);
  border: 1px solid rgba(240,165,0,.25); border-radius: var(--radius-xl);
  padding: 52px 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(240,165,0,.06);
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,165,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  color: #fff; font-size: clamp(22px, 3.5vw, 32px); font-weight: 800;
  margin-bottom: 10px; letter-spacing: -.02em;
}
.cta-block p { color: var(--text2); margin-bottom: 28px; font-size: 16px; }
.cta-btn {
  display: inline-block; position: relative; overflow: hidden;
  background: var(--gold); color: #0a0a0a;
  font-weight: 800; font-size: 16px; padding: 15px 36px;
  border-radius: var(--radius);
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 24px rgba(240,165,0,.3);
  letter-spacing: .01em;
}
.cta-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s;
}
.cta-btn:hover {
  background: #ffb800; color: #0a0a0a;
  box-shadow: 0 6px 32px rgba(240,165,0,.45);
  transform: translateY(-2px);
}
.cta-btn:hover::before { left: 150%; }

/* ── Footer ── */
.site-footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px 24px; margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--text3); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-compliance { font-size: 12px; color: var(--text3); line-height: 1.9; margin-bottom: 18px; }
.footer-copy { font-size: 12px; color: var(--text3); }
.rg-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 18px; }
.rg-badge {
  background: var(--bg3); border: 1px solid var(--border2);
  font-size: 11px; font-weight: 700; color: var(--text3);
  padding: 5px 12px; border-radius: 5px;
}
.geo-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.geo-links a {
  font-size: 12px; color: var(--text3); padding: 4px 11px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 5px;
  transition: color .2s, border-color .2s;
}
.geo-links a:hover { color: var(--gold); border-color: rgba(240,165,0,.3); }

/* ── Sticky mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,10,10,.96); border-top: 1px solid var(--border2);
  padding: 10px 16px; backdrop-filter: blur(8px);
}
.sticky-cta a {
  display: block; background: var(--gold); color: #0a0a0a;
  font-weight: 800; font-size: 16px; padding: 13px;
  border-radius: var(--radius); text-align: center;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(240,165,0,.3);
}
.sticky-cta a:hover { background: #ffb800; box-shadow: 0 4px 20px rgba(240,165,0,.45); }

/* ── Breadcrumb ── */
.breadcrumb { padding: 13px 0; font-size: 13px; color: var(--text3); }
.breadcrumb a { color: var(--text3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 7px; opacity: .4; }

/* ── How-to steps ── */
.steps { display: flex; flex-direction: column; gap: 18px; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 17px; top: 36px;
  bottom: 36px; width: 2px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: .2;
}
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(240,165,0,.1); border: 2px solid rgba(240,165,0,.5);
  color: var(--gold); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: background .2s, border-color .2s;
}
.step:hover .step-num { background: rgba(240,165,0,.2); border-color: var(--gold); }
.step-body h3 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.step-body p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ── Rating badge ── */
.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,165,0,.08); border: 1px solid rgba(240,165,0,.25);
  padding: 10px 20px; border-radius: var(--radius);
}
.rating-score { font-size: 30px; font-weight: 900; color: var(--gold); letter-spacing: -.02em; }
.rating-label { font-size: 13px; color: var(--text2); }

/* ── Page hero (inner pages fallback) ── */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: #fff; margin-bottom: 8px; }
.page-hero p { color: var(--text2); max-width: 600px; }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-dim { color: var(--text2); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .main-nav a { padding: 6px 10px; font-size: 13px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .lang-switcher { display: none; }
  .lang-switcher-mobile { display: flex; align-items: center; margin-left: auto; margin-right: 8px; }
  .burger { display: flex; }
  .sticky-cta { display: block; }
  .pros-cons { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 72px; }
  .section { padding: 48px 0; }
  .hero { min-height: 380px; }
  .hero-content { padding: 48px 0; }
  .cta-block { padding: 36px 24px; }
  .steps::before { display: none; }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-tiers { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 16px; }
}
