/* ============================================
   kilisee.com – Dark Premium Edition
   ============================================ */

:root {
  --bg:          #181818;
  --bg-card:     #222222;
  --bg-raised:   #2c2c2c;
  --gold:        #CF9010;
  --gold-light:  #EDB030;
  --gold-dark:   #9A6A08;
  --white:       #ffffff;
  --text-1:      #f0f0f0;
  --text-2:      #888888;
  --text-3:      #555555;
  --border:      rgba(255,255,255,.07);
  --border-gold: rgba(207,144,16,.28);
  --accent:      #1a8a40;
  --red-star:    #e63946;
  --badge-new:   #2a9d8f;
  --badge-hot:   #e76f51;
  --radius:      8px;
  --shadow:      0 4px 32px rgba(0,0,0,.65);
  --shadow-card: 0 2px 24px rgba(0,0,0,.55);
  --transition:  .18s ease;

  /* legacy aliases so inline styles still work */
  --green-dark:  #181818;
  --green-mid:   #2c2c2c;
  --green-light: #363636;
  --cream:       #181818;
  --text-dark:   #f0f0f0;
  --text-mid:    #888888;
  --text-light:  #555555;
}

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

html { scroll-behavior: smooth; font-size: 17px; overflow-x: clip; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.72;
  overflow-x: clip;
  min-width: 320px;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem);  font-weight: 700; line-height: 1.25; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.section-title { text-align: center; margin-bottom: 0.4rem; color: var(--text-1); }
.section-sub   { text-align: center; color: var(--text-2); margin-bottom: 2.5rem; font-size: 1rem; }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
section    { padding: 4rem 0; }

/* ── HEADER ── */
.site-header {
  background: rgba(24,24,24,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -.025em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo-img  { width: 36px; height: 36px; display: block; }

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-full {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 680px) {
  .logo-full { height: 44px; }
}

/* NAV */
.nav-menu { list-style: none; display: flex; gap: 0.2rem; }
.nav-menu a {
  color: var(--text-2);
  padding: 0.48rem 0.85rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(207,144,16,.1);
  color: var(--gold-light);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-1); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(207,144,16,.13) 0%, transparent 65%),
    linear-gradient(180deg, #111111 0%, var(--bg) 100%);
  color: var(--text-1);
  padding: 6rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before { display: none; }
.hero::after  { display: none; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.9rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: #09090e;
  font-weight: 800;
  box-shadow: 0 2px 16px rgba(207,144,16,.3);
}
.btn-gold:hover { color: #09090e; box-shadow: 0 5px 24px rgba(207,144,16,.48); }

.btn-cta {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: #09090e;
  font-weight: 800;
  box-shadow: 0 2px 16px rgba(207,144,16,.3);
}
.btn-cta:hover { color: #09090e; box-shadow: 0 5px 24px rgba(207,144,16,.48); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(207,144,16,.38);
  color: var(--gold-light);
}
.btn-outline:hover { background: rgba(207,144,16,.08); color: var(--gold-light); border-color: var(--gold); }

.btn-green { background: var(--bg-raised); color: var(--text-1); border: 1px solid var(--border); }
.btn-green:hover { border-color: var(--border-gold); color: var(--text-1); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: #08090d;
  color: var(--text-2);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.trust-item { display: flex; align-items: center; gap: 0.38rem; white-space: nowrap; }
.trust-item .icon { color: var(--gold); font-size: 0.85rem; }

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: 0.47rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-2);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab.active,
.filter-tab:hover {
  background: rgba(207,144,16,.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── CASINO CARDS ── */
.casino-grid { display: grid; gap: 1rem; }

.casino-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.casino-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 40px rgba(0,0,0,.55);
  transform: translateY(-2px);
}
.casino-card.featured {
  border-color: rgba(207,144,16,.3);
  background: linear-gradient(135deg, #16141e 0%, var(--bg-card) 60%);
}

.casino-badge {
  position: absolute;
  top: -11px;
  left: 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #09090e;
  font-size: 0.69rem;
  font-weight: 800;
  padding: 0.24rem 0.72rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.casino-badge.hot { background: linear-gradient(135deg, #a83020, var(--badge-hot)); color: var(--white); }
.casino-badge.new { background: linear-gradient(135deg, #1a7060, var(--badge-new)); color: var(--white); }

.casino-logo-wrap {
  width: 110px;
  height: 72px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.casino-logo-text {
  color: var(--text-1);
  font-weight: 800;
  font-size: 0.78rem;
  text-align: center;
  padding: 0.3rem;
  line-height: 1.2;
}
.casino-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  display: block;
}
.casino-logo-wrap img[src*="casino-rabona"],
.casino-logo-wrap img[src*="casino-kingmaker"] {
  transform: scale(1.7);
}
.bonus-table .casino-logo-cell img[src*="casino-rabona"],
.bonus-table .casino-logo-cell img[src*="casino-kingmaker"] {
  width: 64px;
  height: 28px;
  object-fit: cover;
  object-position: center;
}

.casino-info h3 { margin-bottom: 0.25rem; color: var(--text-1); font-size: 1.05rem; }

.stars { display: flex; gap: 2px; margin-bottom: 0.4rem; align-items: center; }
.star       { color: var(--gold); font-size: 0.95rem; }
.star.empty { color: #252535; }
.rating-text { font-size: 0.79rem; color: var(--text-3); margin-left: 0.4rem; }

.casino-bonus {
  background: rgba(207,144,16,.07);
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  margin: 0.5rem 0;
  border-left: 2px solid var(--gold);
}
.bonus-amount { font-size: 1rem; font-weight: 800; color: var(--gold-light); }
.bonus-label  { font-size: 0.77rem; color: var(--text-2); }

.casino-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.5rem; }
.tag {
  font-size: 0.72rem;
  padding: 0.17rem 0.52rem;
  border-radius: 4px;
  background: rgba(255,255,255,.04);
  color: var(--text-2);
  font-weight: 500;
  border: 1px solid var(--border);
}

.casino-action { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; min-width: 135px; position: relative; z-index: 2; }
.casino-action .btn { width: 100%; justify-content: center; display: inline-flex; }
.casino-action .btn-cta { visibility: visible; opacity: 1; }
.age-note    { font-size: 0.69rem; color: var(--text-3); text-align: center; }
.review-link { font-size: 0.78rem; color: var(--text-2); }
.review-link:hover { color: var(--gold); }

/* ── BONUS TABLE ── */
.bonus-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.87rem;
  color: var(--text-1);
}
.bonus-table th {
  background: #0d0e15;
  color: var(--gold);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 0.78rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-gold);
}
.bonus-table th:first-child { padding-left: 1.25rem; }
.bonus-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.bonus-table td:first-child { padding-left: 1.25rem; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(255,255,255,.025); }
.bonus-table tr.featured-row td { background: rgba(207,144,16,.05); }
.bonus-table tr.featured-row td:first-child { border-left: 2px solid var(--gold); }
.bonus-table .amount { font-weight: 700; color: var(--gold-light); }
.bonus-table .check  { color: var(--accent); font-size: 1.1rem; }
.bonus-table .cross  { color: var(--text-3); font-size: 1.1rem; }
.bonus-table .casino-logo-cell { display: flex; align-items: center; gap: 0.6rem; }
.bonus-table .casino-logo-cell img { height: 28px; width: 64px; object-fit: contain; border-radius: 4px; background: #0d0e15; padding: 2px 4px; flex-shrink: 0; }
.bonus-table .top-badge { font-size: 0.66rem; background: var(--gold); color: #09090e; padding: 1px 5px; border-radius: 3px; font-weight: 800; letter-spacing: .5px; vertical-align: middle; margin-left: 3px; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.why-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(207,144,16,.08);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  margin: 0 auto 1rem;
}
.why-card h3 { margin-bottom: 0.5rem; color: var(--text-1); font-size: 1rem; }
.why-card p  { font-size: 0.87rem; color: var(--text-2); margin: 0; }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--border-gold); }
.blog-img {
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.blog-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.blog-img-sub {
  display: none;
}
.blog-img > span { position: relative; z-index: 2; font-size: 3rem; }
.blog-img.sports  { background-color: #0c1318; }
.blog-img.casino  { background-color: #100d18; }
.blog-img.betting { background-color: #0b0f14; }
.blog-img.women   { background-color: #140d12; }

.blog-body { padding: 1.3rem; }
.blog-meta { font-size: 0.75rem; color: var(--text-3); margin-bottom: 0.6rem; display: flex; gap: 1rem; align-items: center; }
.blog-cat  { color: var(--gold); font-weight: 700; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.4; color: var(--text-1); }
.blog-card p  { font-size: 0.86rem; color: var(--text-2); margin-bottom: 1rem; }
.blog-card .read-more { font-size: 0.82rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-card .read-more:hover { color: var(--gold-light); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-1);
  gap: 1rem;
}
.faq-question .faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-toggle { background: var(--gold); color: #09090e; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 0.8rem;
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── RESPONSIBLE GAMBLING ── */
.responsible-bar {
  background: #07080c;
  color: var(--text-2);
  padding: 1rem 0;
  font-size: 0.8rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.responsible-bar a { color: var(--gold); text-decoration: underline; }
.responsible-logos { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.6rem; }
.responsible-logo-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  padding: 0.27rem 0.72rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
}

/* ── FOOTER ── */
.site-footer {
  background: #06070a;
  color: var(--text-2);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: var(--text-3); }
.footer-col h4 { color: var(--gold); margin-bottom: 1rem; font-size: 0.83rem; text-transform: uppercase; letter-spacing: .8px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-3); font-size: 0.86rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.77rem;
  color: var(--text-3);
}

/* ── STATS BAR ── */
.stats-bar {
  background: #08090d;
  color: var(--text-1);
  padding: 2.2rem 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -.02em; }
.stat-label  { font-size: 0.82rem; color: var(--text-2); }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 0.75rem 0; font-size: 0.82rem; color: var(--text-3); }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; opacity: .5; }

/* ── NOTICE BOX ── */
.notice-box {
  background: rgba(207,144,16,.07);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-2);
}

/* ── TOP PICK RIBBON ── */
.top-pick { position: relative; }
.top-pick::after {
  content: '⭐ TOP VALINTA';
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #09090e;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.27rem 0.7rem;
  border-radius: 0 var(--radius) 0 var(--radius);
  letter-spacing: .4px;
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: #09090e;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), box-shadow var(--transition);
  z-index: 999;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(207,144,16,.35);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { box-shadow: 0 6px 22px rgba(207,144,16,.55); }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,9,14,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  font-size: 0.84rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-gold);
}
#cookieBanner.hidden { display: none; }
#cookieBanner a { color: var(--gold); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .casino-card { grid-template-columns: 110px 1fr; }
  .casino-action { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  html { font-size: 16px; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8,9,14,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.7);
    border-bottom: 1px solid var(--border-gold);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.85rem 1rem; border-radius: 6px; font-size: 0.93rem; }
  .hamburger { display: block; }

  .casino-card { grid-template-columns: 1fr; }
  .casino-logo-wrap { width: 100%; height: 64px; }
  .casino-action { flex-direction: column; align-items: stretch; }
  .casino-action .btn { text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.4rem; }

  .hero { padding: 4rem 0 3.5rem; }
  .trust-bar { overflow: hidden; }
  .trust-inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; gap: 1.5rem; }
  .trust-inner::-webkit-scrollbar { display: none; }
  .trust-item { white-space: nowrap; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.9rem; }

  #scrollTop { bottom: 1.2rem; right: 1.2rem; }
  #cookieBanner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { font-size: 0.78rem; padding: 0.42rem 0.85rem; }
}

/* ── BLOG PAGE ── */
.blog-hero {
  background: linear-gradient(180deg, #06070b 0%, var(--bg) 100%);
  color: var(--text-1);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { margin-bottom: 0.5rem; }
.blog-hero p  { color: var(--text-2); max-width: 620px; }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 2rem 0 1rem; color: var(--text-1); }
.article-body h3 { margin: 1.5rem 0 0.75rem; color: var(--text-1); }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.5rem; color: var(--text-2); }
.article-body li { margin-bottom: 0.4rem; }
.article-body img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ── SIDEBAR ── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid var(--gold);
}
.sidebar-widget h4 { color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }

@media (max-width: 860px) {
  .content-sidebar { grid-template-columns: 1fr; }
}

/* ── RATING BADGE ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.rating-badge.gold   { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: #09090e; border: none; }
.rating-badge.silver { background: #323245; color: var(--text-1); border: none; }

/* ── PROGRESS BARS ── */
.progress-bar-wrap { margin-bottom: 0.75rem; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.25rem; color: var(--text-2); }
.progress-track { height: 5px; background: var(--bg-raised); border-radius: 50px; overflow: hidden; }
.progress-fill  { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 50px; transition: width 1s ease; }

/* ── AFFILIATE DISCLAIMER ── */
.affiliate-note {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.77rem;
  color: var(--text-3);
  margin: 1.5rem 0;
}

/* ── VETO TIPS ── */
.veto-tip-item { padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.veto-tip-item:last-of-type { border-bottom: none; }
.veto-tip-sport { font-size: 0.77rem; font-weight: 700; color: var(--text-1); text-transform: uppercase; letter-spacing: .5px; }
.veto-tip-desc  { font-size: 0.83rem; color: var(--text-2); margin: 0.15rem 0; }
.veto-tip-odds  { font-size: 0.86rem; font-weight: 700; color: var(--gold); }
.veto-tip-updated { font-size: 0.69rem; color: var(--text-3); margin-top: 0.75rem; display: block; }
