:root {
  --navy-deep: #0A1A4A;
  --navy: #122569;
  --navy-mid: #1A3380;
  --navy-light: #2A458F;
  --amber: #F0A93C;
  --amber-light: #FBE3B8;
  --amber-dark: #C97F1E;
  --honey: #E8A33D;
  --white: #FFFFFF;
  --ink: #16204A;
  --text-muted: #56608A;
  --text-light: #8A92B8;
  --border: #E2E6F2;
  --bg: #F4F6FC;
  --green: #1E9E6B;
  --green-bg: #E5F7EE;
  --red: #DD4B4B;
  --radius: 12px;
  --shadow: 0 2px 14px rgba(10,26,74,0.08);
  --shadow-lg: 0 10px 40px rgba(10,26,74,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Manrope', sans-serif; background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.6; overflow-x: hidden; max-width: 100vw; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }
img { max-width: 100%; }

/* ── FLAGS ── */
.flag-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 700; padding: 3px 9px 3px 5px; border-radius: 100px; background: rgba(255,255,255,0.12); color: var(--white); }
.flag-chip { width: 16px; height: 12px; border-radius: 2px; flex-shrink: 0; overflow: hidden; display: inline-block; position: relative; }
.flag-lv { background: #9E1B32; position: relative; }
.flag-lv::before { content: ''; position: absolute; top: 44%; left: 0; right: 0; height: 12%; background: #FFFFFF; }
.flag-lt { background: linear-gradient(to bottom, #FDB913 0%, #FDB913 33%, #006A44 33%, #006A44 66%, #C8102E 66%, #C8102E 100%); }
.flag-ee { background: linear-gradient(to bottom, #4891D9 0%, #4891D9 33%, #000000 33%, #000000 66%, #FFFFFF 66%, #FFFFFF 100%); }

/* ── TOP BAR ── */
.top-bar { background: var(--navy-deep); color: rgba(255,255,255,0.65); font-size: 12.5px; padding: 7px 2rem; }
.top-bar-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-flags { display: flex; gap: 6px; }

/* ── NAV ── */
nav { background: var(--navy); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 2rem; gap: 16px; }
.nav-logo { font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 9px; flex-shrink: 0; white-space: nowrap; }
.nav-logo .mark { width: 32px; height: 32px; border-radius: 8px; background: var(--amber); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 1.6rem; flex-shrink: 1; min-width: 0; overflow: hidden; }
.nav-links a { color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 600; white-space: nowrap; transition: color 0.15s; padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); border-color: var(--amber); }
.nav-cta { background: var(--amber); color: var(--navy-deep); padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 14px; white-space: nowrap; flex-shrink: 0; transition: background 0.15s, transform 0.1s; }
.nav-cta:hover { background: var(--honey); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); padding: 11px 2rem; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 6px; }

/* ── PAGE HERO (used on subpages) ── */
.page-hero { background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%); padding: 48px 2rem; position: relative; overflow: hidden; }
.page-hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent); }
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,169,60,0.14); border: 1px solid rgba(240,169,60,0.35); color: var(--amber-light); padding: 7px 16px 7px 8px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em; }
.page-hero h1 em { color: var(--amber); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 16.5px; max-width: 680px; line-height: 1.6; }

/* ── HOME HERO ── */
.hero { background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%); padding: 64px 2rem 0; position: relative; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent); }
.hero-inner { max-width: 1240px; margin: 0 auto; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; padding-bottom: 52px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,169,60,0.14); border: 1px solid rgba(240,169,60,0.35); color: var(--amber-light); padding: 7px 16px 7px 8px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 22px; }
.hero h1 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.01em; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero p { color: rgba(255,255,255,0.68); font-size: 17px; max-width: 520px; margin-bottom: 28px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary { background: var(--amber); color: var(--navy-deep); padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px; display: inline-block; transition: background 0.15s, transform 0.1s; }
.btn-primary:hover { background: var(--honey); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,0.18); display: inline-block; transition: background 0.15s; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.hero-stats-row { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--amber); display: block; line-height: 1; }
.hero-stat .label { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 26px; }
.hero-visual-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-visual-head span { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; }
.region-mini-flags { display: flex; gap: 6px; }
.hv-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hv-row:last-child { border-bottom: none; }
.hv-rank { width: 24px; height: 24px; border-radius: 50%; background: var(--amber); color: var(--navy-deep); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hv-name { flex: 1; color: var(--white); font-size: 14px; font-weight: 600; }
.hv-score { color: var(--amber); font-weight: 800; font-size: 14px; font-family: 'Sora', sans-serif; }

/* ── SUBNAV ── */
.subnav { background: var(--white); border-bottom: 1px solid var(--border); }
.subnav-inner { max-width: 1240px; margin: 0 auto; padding: 0 2rem; display: flex; gap: 32px; overflow-x: auto; }
.subnav-inner a { padding: 16px 0; font-size: 14px; font-weight: 600; color: var(--text-muted); white-space: nowrap; border-bottom: 2px solid transparent; }
.subnav-inner a:hover, .subnav-inner a.active { color: var(--navy); border-color: var(--amber); }

/* ── SECTION ── */
.section { padding: 64px 2rem; }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: 32px; max-width: 700px; }
.section-header .eyebrow { font-size: 13px; font-weight: 700; color: var(--amber-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.section-header h2 { font-size: 30px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.section-header p { color: var(--text-muted); font-size: 15.5px; }

/* ── TABS / FILTERS ── */
.region-tabs { display: flex; gap: 4px; margin-bottom: 22px; background: var(--white); border-radius: 10px; padding: 4px; width: fit-content; border: 1px solid var(--border); }
.region-tab { padding: 9px 18px; border-radius: 8px; font-size: 13.5px; font-weight: 700; cursor: pointer; border: none; background: transparent; color: var(--text-muted); display: flex; align-items: center; gap: 7px; transition: all 0.15s; }
.region-tab.active { background: var(--navy); color: var(--white); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.filter-btn { padding: 8px 18px; border-radius: 100px; font-size: 13.5px; font-weight: 600; border: 1.5px solid var(--border); background: var(--white); cursor: pointer; transition: all 0.15s; color: var(--text-muted); }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CASINO LIST ── */
.casino-list { display: flex; flex-direction: column; gap: 18px; }
.casino-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; position: relative; }
.casino-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.casino-card.featured { border: 2px solid var(--amber); }
.casino-card.featured::before { content: 'Выбор редакции'; position: absolute; top: 0; right: 24px; background: var(--amber); color: var(--navy-deep); font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 0 0 8px 8px; letter-spacing: 0.02em; z-index: 2; }
.casino-card.featured .casino-top { padding-top: 34px; }
.casino-top { display: grid; grid-template-columns: 40px 96px 1.4fr 1.1fr auto; align-items: center; gap: 20px; padding: 22px 26px; }
.rank-num { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; background: var(--bg); color: var(--navy); border: 1px solid var(--border); flex-shrink: 0; }
.casino-card.featured .rank-num { background: var(--amber); color: var(--navy-deep); border-color: var(--amber); }
.casino-logo-box { width: 96px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 13.5px; color: var(--white); flex-shrink: 0; text-align: center; padding: 4px; }
.casino-info { min-width: 0; }
.casino-name { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--ink); }
.casino-regions { display: flex; gap: 5px; margin-bottom: 8px; }
.casino-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.tag-license { background: var(--green-bg); color: var(--green); }
.tag-mobile { background: #E8EEFB; color: var(--navy); }
.tag-live { background: var(--amber-light); color: var(--amber-dark); }
.features-col { font-size: 13.5px; }
.features-col-title { font-size: 11.5px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.features-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.features-col ul li { display: flex; align-items: center; gap: 7px; color: var(--ink); }
.features-col ul li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 12px; flex-shrink: 0; }
.casino-score-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.score-pill { display: flex; align-items: center; gap: 6px; background: var(--bg); border-radius: 100px; padding: 6px 14px; }
.score-pill .star { color: var(--amber); font-size: 14px; }
.score-pill .num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 14px; color: var(--ink); }
.btn-get-bonus { background: linear-gradient(135deg, #FFC25C, var(--amber)); color: var(--navy-deep); padding: 13px 26px; border-radius: 9px; font-weight: 800; font-size: 15px; white-space: nowrap; transition: background 0.15s, transform 0.1s, box-shadow 0.15s; display: flex; align-items: center; gap: 6px; box-shadow: 0 3px 0 var(--amber-dark), 0 4px 14px rgba(240,169,60,0.4); }
.btn-get-bonus:hover { background: linear-gradient(135deg, #FFD27A, var(--honey)); transform: translateY(-2px); box-shadow: 0 5px 0 var(--amber-dark), 0 8px 18px rgba(240,169,60,0.5); }
.bonus-strip { background: linear-gradient(90deg, var(--amber-light) 0%, #FFF3DC 100%); border-top: 1px solid var(--amber); border-bottom: 1px solid var(--amber); padding: 18px 26px; display: flex; align-items: center; gap: 16px; }
.bonus-strip-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--amber); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; box-shadow: 0 2px 0 var(--amber-dark); }
.bonus-strip-text { font-size: 15px; color: var(--ink); font-weight: 700; line-height: 1.5; }
.bonus-strip-text strong { color: var(--amber-dark); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; text-shadow: 0 1px 0 rgba(255,255,255,0.4); }
.bonus-strip-text small { display: block; color: var(--ink); opacity: 0.65; font-size: 12.5px; font-weight: 600; margin-top: 4px; }
.casino-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); border-top: 1px solid var(--border); }
.stat-item { padding: 13px 18px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 3px; }
.stat-val { font-size: 14px; font-weight: 700; color: var(--ink); }
.stat-val.good { color: var(--green); }
.detail-toggle { background: var(--white); border: none; border-top: 1px solid var(--border); width: 100%; padding: 13px; cursor: pointer; color: var(--navy); font-size: 13.5px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.15s; }
.detail-toggle:hover { background: var(--bg); }
.detail-panel { display: none; padding: 24px; border-top: 1px solid var(--border); background: var(--bg); }
.detail-panel.open { display: block; }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.detail-col h4 { font-size: 13px; font-weight: 800; margin-bottom: 10px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.03em; }
.detail-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.detail-col ul li { font-size: 13.5px; color: var(--text-muted); display: flex; gap: 8px; }
.detail-col ul li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.detail-col ul li.x::before { content: '✗'; color: var(--red); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.pros { background: var(--green-bg); border-radius: 12px; padding: 18px; border: 1px solid rgba(30,158,107,0.25); }
.cons { background: #FDEDED; border-radius: 12px; padding: 18px; border: 1px solid rgba(221,75,75,0.22); }
.pros h5, .cons h5 { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.pros h5 { color: var(--green); }
.cons h5 { color: var(--red); }
.pros h5::before, .cons h5::before { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.pros h5::before { content: '✓'; background: var(--green); }
.cons h5::before { content: '✕'; background: var(--red); }
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 9px; list-style: none; margin: 0; padding: 0; }
.pros li, .cons li { font-size: 13.5px; line-height: 1.5; padding-left: 0; list-style: none; }
.rating-bars { display: flex; flex-direction: column; gap: 9px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.rating-bar-label { width: 120px; color: var(--text-muted); flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 7px; background: var(--border); border-radius: 100px; overflow: hidden; }
.rating-bar-fill { height: 100%; border-radius: 100px; background: var(--amber); }
.rating-bar-val { width: 30px; text-align: right; font-weight: 800; font-size: 12.5px; color: var(--ink); font-family: 'Sora', sans-serif; }

/* ── COMPARISON TABLE ── */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.compare-table th { background: var(--navy); color: var(--white); padding: 13px 16px; text-align: left; font-weight: 700; white-space: nowrap; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; }
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table td:first-child { font-weight: 700; color: var(--navy); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--text-light); }

/* ── BONUS CARDS ── */
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.bonus-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.bonus-card-top { padding: 22px; position: relative; }
.bonus-card-top h3 { color: var(--white); font-size: 17px; font-weight: 800; }
.bonus-amount { font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: var(--amber); margin: 8px 0 4px; text-shadow: 0 0 18px rgba(240,169,60,0.5); letter-spacing: -0.01em; }
.bonus-desc { color: rgba(255,255,255,0.65); font-size: 13px; }
.bonus-card-body { padding: 18px 22px; }
.bonus-detail { font-size: 13.5px; color: var(--text-muted); margin-bottom: 9px; }
.bonus-detail strong { color: var(--ink); }
.btn-outline { display: block; width: 100%; text-align: center; padding: 11px; border-radius: 9px; border: 1.5px solid var(--navy); color: var(--navy); font-weight: 700; font-size: 14px; margin-top: 14px; transition: all 0.15s; }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── DEMO GAMES ── */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.game-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; }
.game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.game-thumb { height: 108px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16px; position: relative; color: var(--white); }
.game-thumb .play-overlay { position: absolute; inset: 0; background: rgba(10,26,74,0.78); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.15s; color: var(--amber); font-weight: 700; font-size: 13px; }
.game-card:hover .play-overlay { opacity: 1; }
.game-info { padding: 11px 12px; }
.game-name { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.game-provider { font-size: 11.5px; color: var(--text-light); }
.game-tags { display: flex; gap: 4px; margin-top: 6px; }
.game-tag { font-size: 10px; background: var(--bg); color: var(--text-muted); padding: 2px 7px; border-radius: 100px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 15.5px; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.faq-q:hover { background: var(--bg); }
.faq-q .arrow { font-size: 14px; color: var(--amber-dark); transition: transform 0.2s; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-highlight { background: var(--amber-light); border-radius: 8px; padding: 12px 16px; margin-top: 10px; font-size: 13.5px; color: var(--amber-dark); font-weight: 600; }

/* ── NEWS ── */
.news-featured { background: var(--navy-deep); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; }
.news-featured-label { display: inline-block; background: var(--amber); color: var(--navy-deep); font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.news-featured-body { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.news-featured-title { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); line-height: 1.32; margin-bottom: 10px; }
.news-featured-stat { text-align: center; padding: 20px; background: rgba(255,255,255,0.06); border-radius: 12px; min-width: 140px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.news-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.15s; }
.news-card:hover { box-shadow: var(--shadow); }
.news-img { height: 6px; }
.news-body { padding: 20px; }
.news-meta { font-size: 11.5px; color: var(--text-light); margin-bottom: 9px; text-transform: uppercase; letter-spacing: 0.03em; display: flex; align-items: center; gap: 6px; }
.news-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 16.5px; margin-bottom: 9px; line-height: 1.4; }
.news-snippet { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.news-link { font-size: 13px; color: var(--navy); font-weight: 700; display: inline-block; margin-top: 12px; }
.source-link { background: rgba(255,255,255,0.07); border-radius: 9px; padding: 12px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.78); font-size: 13px; transition: background 0.15s; font-weight: 600; }
.source-link:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* ── FULL REVIEWS ── */
.review-block { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; cursor: pointer; }
.review-header:hover { background: var(--bg); }
.review-arrow { font-size: 16px; color: var(--text-light); transition: transform 0.2s; }
.review-block.open .review-arrow { transform: rotate(180deg); }
.review-body { border-top: 1px solid var(--border); padding: 26px; background: var(--bg); }
.review-intro { margin-bottom: 20px; }
.review-verdict { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 18px 20px; }
.review-verdict p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; margin-top: 12px; }
.verdict-badge { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 12.5px; font-weight: 800; }
.verdict-top { background: var(--amber-light); color: var(--amber-dark); }
.verdict-alt { background: var(--green-bg); color: var(--green); }
.review-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.review-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review-section-block { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 18px; }
.review-section-block h4 { font-size: 12.5px; font-weight: 800; margin-bottom: 14px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; }
.review-bonus-main { background: var(--navy-deep); border-radius: 10px; padding: 16px 18px; margin-bottom: 16px; text-align: center; }
.rbonus-amount { font-family: 'Sora', sans-serif; font-size: 30px; font-weight: 800; color: var(--amber); text-shadow: 0 0 14px rgba(240,169,60,0.45); }
.rbonus-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.review-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.review-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.review-table td { padding: 8px 0; color: var(--text-muted); }
.review-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }
.review-tip { background: var(--amber-light); border-radius: 8px; padding: 11px 14px; margin-top: 14px; font-size: 13px; color: var(--amber-dark); font-weight: 600; line-height: 1.5; }
.review-payout-bar { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.payout-fast { background: var(--green-bg); color: var(--green); font-weight: 800; font-size: 11.5px; padding: 2px 9px; border-radius: 100px; }
.payout-mid { background: var(--amber-light); color: var(--amber-dark); font-weight: 800; font-size: 11.5px; padding: 2px 9px; border-radius: 100px; }
.game-count-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.game-count-item { background: var(--bg); border-radius: 10px; padding: 13px; text-align: center; }
.gcnum { display: block; font-family: 'Sora', sans-serif; font-size: 21px; font-weight: 800; color: var(--navy); }
.gclabel { font-size: 10.5px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.review-rating-inline { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 9px; }
.review-rating-inline span { width: 120px; color: var(--text-muted); flex-shrink: 0; }
.mini-bar { flex: 1; height: 5px; background: var(--border); border-radius: 100px; overflow: hidden; }
.mini-fill { height: 100%; background: var(--amber); border-radius: 100px; }
.review-verdict-final { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 22px; margin-top: 22px; }
#demo-modal-inner { background: var(--white); border-radius: 16px; padding: 34px; max-width: 460px; width: 90%; text-align: center; position: relative; }

/* ── CALCULATOR (wagering page) ── */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.calc-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow); }
.calc-card h3 { font-size: 17px; margin-bottom: 18px; }
.calc-field { margin-bottom: 18px; }
.calc-field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.calc-field input, .calc-field select {
  width: 100%; padding: 11px 14px; border-radius: 9px; border: 1.5px solid var(--border);
  font-size: 15px; font-family: 'Manrope', sans-serif; color: var(--ink); background: var(--white);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--amber); }
.calc-hint { font-size: 12px; color: var(--text-light); margin-top: 5px; }
.calc-result-card { background: var(--navy-deep); border-radius: var(--radius); padding: 28px; color: var(--white); }
.calc-result-card h3 { color: rgba(255,255,255,0.6); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; font-weight: 700; }
.calc-result-main { text-align: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 18px; }
.calc-result-main .amt { font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; color: var(--amber); }
.calc-result-main .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.calc-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.calc-row:last-child { border-bottom: none; }
.calc-row span:last-child { font-weight: 700; color: var(--white); }
.calc-verdict { margin-top: 18px; padding: 14px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.calc-verdict.good { background: rgba(30,158,107,0.18); color: #7BE0AE; }
.calc-verdict.mid { background: rgba(240,169,60,0.18); color: var(--amber-light); }
.calc-verdict.bad { background: rgba(221,75,75,0.18); color: #F0A0A0; }
.wager-scale { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.wager-scale-row { display: flex; align-items: center; gap: 14px; }
.wager-scale-label { width: 90px; font-size: 13px; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.wager-scale-bar { flex: 1; height: 10px; background: var(--border); border-radius: 100px; overflow: hidden; position: relative; }
.wager-scale-fill { height: 100%; border-radius: 100px; }
.wager-scale-val { width: 50px; text-align: right; font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 26px; }
.contact-card h3 { font-size: 16px; margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--navy); font-weight: 800; }
.contact-detail strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-detail span { font-size: 13.5px; color: var(--text-muted); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 14px; border-radius: 9px; border: 1.5px solid var(--border); font-size: 14.5px; font-family: 'Manrope', sans-serif; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--amber); }
.btn-submit { background: var(--amber); color: var(--navy-deep); padding: 13px 28px; border-radius: 9px; font-weight: 800; font-size: 15px; border: none; cursor: pointer; width: 100%; transition: background 0.15s; }
.btn-submit:hover { background: var(--honey); }

/* ── DISCLAIMER ── */
.disclaimer-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; font-size: 13px; line-height: 1.65; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 52px 2rem 24px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; margin-bottom: 40px; }
.footer-logo { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.footer-logo .mark { width: 28px; height: 28px; border-radius: 7px; background: var(--amber); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.footer-desc { font-size: 13.5px; line-height: 1.7; }
.footer-flags-row { display: flex; gap: 8px; margin-top: 14px; }
.footer-flag-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-18 { background: var(--amber); color: var(--navy-deep); font-weight: 800; font-size: 12.5px; padding: 4px 12px; border-radius: 6px; }

.scroll-top { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: var(--amber); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 19px; cursor: pointer; box-shadow: var(--shadow-lg); transition: background 0.15s; z-index: 90; }
.scroll-top:hover { background: var(--navy-light); }

/* ── SIMPLE ARTICLE CONTENT (for SEO text blocks) ── */
.article-block { max-width: 760px; }
.article-block h2 { font-size: 24px; margin: 32px 0 14px; }
.article-block h2:first-child { margin-top: 0; }
.article-block h3 { font-size: 18px; margin: 22px 0 10px; }
.article-block p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 14px; }
.article-block ul, .article-block ol { color: var(--text-muted); font-size: 15.5px; margin: 0 0 14px 20px; }
.article-block li { margin-bottom: 6px; }
.article-block strong { color: var(--ink); }

/* ── LEGAL BANNER (blocked foreign casinos notice) ── */
.legal-banner { background: var(--amber-light); border: 1px solid var(--amber); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 28px; display: flex; gap: 14px; align-items: flex-start; }
.legal-banner-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--amber); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.legal-banner p { font-size: 14px; color: var(--amber-dark); font-weight: 600; line-height: 1.6; margin: 0; }
.legal-banner p span { font-weight: 400; color: var(--ink); }

/* ── CASINO REVIEW CARDS (sample reviews block) ── */
.review-card-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-top: 22px; }
.review-card-block-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.review-card-block-title .sample-tag { background: var(--bg); color: var(--text-muted); font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 100px; text-transform: none; letter-spacing: 0; }
.user-review { border-top: 1px solid var(--border); padding: 14px 0; display: flex; gap: 14px; }
.user-review:first-child { border-top: none; padding-top: 0; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; font-family: 'Sora', sans-serif; }
.review-content { flex: 1; min-width: 0; }
.review-head { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.review-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-date { font-size: 12px; color: var(--text-light); }
.review-stars { color: var(--amber); font-size: 12px; margin-bottom: 6px; }
.review-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.verdict-box { background: var(--bg); border-left: 3px solid var(--navy); border-radius: 0 8px 8px 0; padding: 14px 18px; margin-top: 16px; }
.verdict-box-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 6px; }
.verdict-box p { font-size: 14px; color: var(--ink); line-height: 1.6; margin: 0; }

.withdraw-methods { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.withdraw-pill { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 8px 14px 8px 10px; font-size: 13px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
.withdraw-pill::before { content: '💳'; font-size: 14px; }

/* ── BONUS LADDER (multi-deposit bonus breakdown) ── */
.bonus-ladder { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.bonus-ladder-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 4px; }
.bonus-step { display: flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; }
.bonus-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--white); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bonus-step-body { flex: 1; }
.bonus-step-body strong { color: var(--amber-dark); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 15px; }
.bonus-step-body span { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.howto-box { background: var(--bg); border-radius: 10px; padding: 14px 16px; margin-top: 14px; font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.howto-box strong { color: var(--ink); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .casino-top { grid-template-columns: 1fr; gap: 14px; }
  .casino-score-cta { align-items: flex-start; flex-direction: row; justify-content: space-between; width: 100%; }
  .calc-wrap, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .news-featured-body { grid-template-columns: 1fr; }
  .news-featured-stat { display: none; }
  .review-grid-3, .review-grid-2 { grid-template-columns: 1fr; }
  .top-bar-inner { font-size: 11.5px; }
}
