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

:root {
  color-scheme: dark;
  --bg:          #1e1e1e;
  --bg-card:     #272727;
  --bg-raised:   #323232;
  --gold:        #CF9010;
  --gold-light:  #EDB030;
  --gold-dark:   #9A6A08;
  --white:       #ffffff;
  --text-1:      #f0f0f0;
  --text-2:      #888888;
  --text-3:      #555555;
  --border:      rgba(255,255,255,.09);
  --border-gold: rgba(207,144,16,.28);
  --accent:      #1a8a40;
  --red-star:    #e63946;
  --badge-new:   #2a9d8f;
  --badge-hot:   #e76f51;
  --radius:      8px;
  --shadow:      0 4px 28px rgba(0,0,0,.45);
  --shadow-card: 0 2px 18px rgba(0,0,0,.38);
  --transition:  .18s ease;

  /* legacy aliases so inline styles still work */
  --green-dark:  #1e1e1e;
  --green-mid:   #323232;
  --green-light: #3c3c3c;
  --cream:       #1e1e1e;
  --text-dark:   #f0f0f0;
  --text-mid:    #888888;
  --text-light:  #555555;

  /* surface tokens for hard-coded backgrounds */
  --bg-deep:       #141414;
  --bg-footer:     #111111;
  --bg-hero-top:   #191919;
  --bg-table-head: #161616;
  --bg-featured:   #1d1b25;
  --bg-header:     rgba(28,28,28,.96);
  --bg-nav:        rgba(16,16,16,.98);
  --bg-overlay:    rgba(16,16,16,.97);
  --bg-blog-hero:  #131313;
  --star-empty:    #2a2a3a;
}

*, *::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.2; letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem);  font-weight: 700; line-height: 1.3; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.35; }
h4 { font-size: 0.95rem; font-weight: 600; line-height: 1.4; }
p  { margin-bottom: 1.1rem; line-height: 1.7; }

/* Article/blog/main-content -kontekstissa otsikoilla on hengittävä margin */
main h1 { margin: 0 0 1.5rem; }
main h2 { margin: 2.5rem 0 1.2rem; }
main h3 { margin: 2rem 0 0.9rem; }
main h4 { margin: 1.5rem 0 0.6rem; }
main h2:first-child,
main h3:first-child,
main h4:first-child { margin-top: 0; }
main h2 + p, main h2 + ul, main h2 + ol,
main h3 + p, main h3 + ul, main h3 + ol,
main h4 + p { margin-top: 0; }
main ul, main ol { line-height: 1.7; margin-bottom: 1.2rem; }
main ul li, main ol li { margin-bottom: 0.5rem; }
main ol + p, main ul + p { margin-top: 1.25rem; }
main ol + h2, main ul + h2 { margin-top: 2.5rem; }
main ol + h3, main ul + h3 { margin-top: 2rem; }

/* Article-body & blog-body säilyttävät omat tiukemmat marginit jos käyttää niitä */
.article-body main h2, .article-body main h3,
.blog-body main h2, .blog-body main h3 { margin-top: inherit; margin-bottom: inherit; }

.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 ── */
/* Header is always dark — logo-full.png is white/gold and only readable on dark */
.site-header {
  background: rgba(22,22,22,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(207,144,16,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.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 — always dark-mode colours since header is always dark */
.nav-menu { list-style: none; display: flex; gap: 0.2rem; }
.nav-menu a {
  color: #888888;
  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,.12);
  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: #e0e0e0; margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(207,144,16,.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-hero-top) 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-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-2); }
.btn-ghost:hover { border-color: rgba(255,255,255,.2); color: var(--text-1); }

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

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-deep);
  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 6px 28px rgba(0,0,0,.38);
  transform: translateY(-2px);
}
.casino-card.featured {
  border-color: rgba(207,144,16,.3);
  background: linear-gradient(135deg, var(--bg-featured) 0%, var(--bg-card) 60%);
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #09090e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.28rem 0.78rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.1;
  box-shadow: 0 3px 10px rgba(207,144,16,0.25);
}
.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: #1a1a1a;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 1px rgba(0,0,0,.45), 0 3px 12px rgba(0,0,0,.45);
  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: none;
  padding: 0 6px;
  object-fit: contain;
}

/* EpicBet-logo on nyt normalisoitu 3:1 (kuten kaikki muut logot) → vanha
   7:1-aspect-hack poistettu. !important-max-width:100% pakotti EpicBetin
   muita isommaksi mm. .rb-hero- ja paid-LP-konteksteissa. Logo seuraa nyt
   kunkin kontekstin normaalia logo-CSS:ää (.casino-logo-img / .kx-logo /
   .rb-hero img / inline height) ja on siten samankokoinen muiden kanssa. */
.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.3rem; align-items: center; }

.card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  color: var(--text-2);
  margin-bottom: 0.55rem;
  align-items: center;
}
.card-trust .trust-author { color: var(--text-2); }
.card-trust .trust-updated { color: var(--badge-new); font-weight: 600; }
.card-trust .trust-proof { color: var(--text-2); }
.star       { color: var(--gold); font-size: 0.95rem; }
.star.empty { color: var(--star-empty); }
.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 { border-radius: var(--radius); border: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.87rem;
  color: var(--text-1);
  table-layout: auto;
}
.bonus-table th {
  background: var(--bg-table-head);
  color: var(--gold);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-gold);
  white-space: nowrap;
}
.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;
  white-space: normal;
  word-break: break-word;
}
.bonus-table td:first-child { padding-left: 1.25rem; }
.bonus-table td:nth-child(2) { min-width: 160px; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover td { background: rgba(255,255,255,.025); }
.bonus-table tr.table-row-link { cursor: pointer; transition: background var(--transition); }
.bonus-table tr.table-row-link:hover td { background: rgba(207,144,16,.11); }
.bonus-table tr.table-row-link td:last-child::after { content: ' →'; color: var(--gold); opacity: 0; transition: opacity 0.15s; font-weight: 700; }
.bonus-table tr.table-row-link:hover td:last-child::after { opacity: 1; }
.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: #1a1a1a; padding: 3px 5px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 1px 6px rgba(0,0,0,.35); }
.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; }

/* ── DETAILS-pohjainen FAQ (article-tasolla) — brändityylinen ── */
details.faq {
  background: var(--bg-card, #1a1a1a);
  border: 1px solid var(--border-gold, rgba(212,162,42,0.25));
  border-radius: 10px;
  padding: 1.15rem 1.5rem;
  margin: 1rem 0;
  transition: border-color .15s ease;
}
details.faq[open] { border-color: rgba(212,162,42,0.55); }
details.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-1);
  font-size: 1rem;
  list-style: none;
  position: relative;
  padding-right: 1.75rem;
  line-height: 1.4;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-raised, rgba(255,255,255,0.06));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--text-2);
  font-size: 1rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
details.faq[open] summary::after {
  content: "+";
  transform: translateY(-50%) rotate(45deg);
  background: #D4A22A; color: #1a1a1a; border-color: #D4A22A;
}
details.faq > p,
details.faq > * + * { margin-top: 0.75rem; line-height: 1.7; color: var(--text-2); font-size: 0.95rem; }
details.faq summary + p { margin-top: 0.85rem; }
details.faq ul, details.faq ol { margin: 0.75rem 0 0; padding-left: 1.4rem; line-height: 1.7; color: var(--text-2); font-size: 0.95rem; }
details.faq li { margin-bottom: 0.4rem; }

/* ── RESPONSIBLE GAMBLING ── */
.responsible-bar {
  background: var(--bg-footer);
  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: var(--bg-footer);
  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: var(--bg-deep);
  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; }
/* Tummalla kova-hero -taustalla breadcrumb tarvitsee vaaleamman värin */
.kova-hero .breadcrumb { color: rgba(255,255,255,0.62); padding: 0.5rem 0 1.25rem; font-weight: 500; position: relative; z-index: 3; }
.kova-hero .breadcrumb a { color: rgba(212,162,42,0.95); text-decoration: none; }
.kova-hero .breadcrumb a:hover { color: #EDB030; text-decoration: underline; }
.kova-hero .breadcrumb strong { color: rgba(255,255,255,0.86); font-weight: 600; }
.kova-hero .breadcrumb span { color: rgba(212,162,42,0.6); opacity: 1; }

/* Mobile-padding -fix kaikille kova-page artikkeleille — varmista että lista ja teksti eivät mene vasempaan laitaan kiinni */
@media (max-width: 720px) {
  .kova-page .container,
  body.kova-page > section .container,
  body.kova-page section .container {
    padding-left: 1.4rem !important;
    padding-right: 1.4rem !important;
  }
  .kova-page main ul,
  .kova-page main ol {
    padding-left: 1.6rem;
    padding-right: 0.3rem;
  }
  .kova-page main ul li,
  .kova-page main ol li {
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .kova-page main h2,
  .kova-page main h3,
  .kova-page main p {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Kova-hero CTA napit yhtenäisellä koolla — desktopilla rinnakkain, mobiilissa pinoutuvat */
.kova-hero-cta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch !important;
}

/* MOBILE: piilota hero-osio paitsi otsikko + kriittiset CTA:t
   Pidetään vain: breadcrumb (nav), H1, "Kuukauden ykkönen" CTA */
@media (max-width: 720px) {
  .kova-hero { min-height: auto !important; }
  .kova-hero .container { padding-top: 1rem !important; padding-bottom: 1.25rem !important; }
  .kova-hero-inner .kova-eyebrow,
  .kova-hero-inner .kova-hero-sub,
  .kova-hero-inner .kova-badges,
  .kova-hero-inner .kova-hero-meta { display: none !important; }
  /* Piilotetaan kova-hero-cta:n ENSIMMÄINEN nappi (esim. "Katso TOP 3"),
     säilytetään vain toissijainen luokkalinkki (esim. "Kuukauden ykkönen: EpicBet") */
  .kova-hero-cta .btn:first-child { display: none !important; }
  .kova-hero-cta { gap: 0; }
  /* Otsikko hieman tiukempi mobiilissa */
  .kova-hero h1 { font-size: clamp(1.4rem, 5vw, 1.9rem); line-height: 1.2; margin-bottom: 1rem; }
}
.kova-hero-cta .btn {
  flex: 1 1 240px;
  min-width: 0;
  justify-content: center;
  text-align: center;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  min-height: 52px;
  align-items: center;
  display: inline-flex;
  white-space: normal;
  line-height: 1.25;
}
@media (max-width: 720px) {
  .kova-hero-cta { flex-direction: column; }
  .kova-hero-cta .btn { flex: 1 1 auto; width: 100%; }
}

/* ── 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: -12px; right: 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #09090e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.28rem 0.78rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.1;
  box-shadow: 0 3px 10px rgba(207,144,16,0.25);
}

/* ── 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 MODAL ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.cookie-modal[hidden] { display: none; }
.cookie-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.48);
}
.cookie-box h2 {
  color: var(--gold);
  font-size: 1.15rem;
  margin: 0 0 .75rem;
}
.cookie-intro {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.cookie-intro a { color: var(--gold); text-decoration: underline; }
.cookie-cats { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.cookie-cat-info { flex: 1; }
.cookie-cat-info strong { display: block; font-size: .88rem; color: var(--text-1); margin-bottom: .18rem; }
.cookie-cat-info span { font-size: .77rem; color: var(--text-3); }
.cookie-always-on { font-size: .75rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.ck-toggle { position: relative; flex-shrink: 0; cursor: pointer; display: block; }
.ck-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.ck-track {
  display: block;
  width: 44px; height: 24px;
  background: var(--text-3);
  border-radius: 12px;
  position: relative;
  transition: background .2s;
}
.ck-toggle input:checked ~ .ck-track { background: var(--gold); }
.ck-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,.35);
  transition: transform .2s;
}
.ck-toggle input:checked ~ .ck-track .ck-thumb { transform: translateX(20px); }
.cookie-btns {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ── 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(16,16,16,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.55);
    border-bottom: 1px solid rgba(207,144,16,.22);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.85rem 1rem; border-radius: 6px; font-size: 0.93rem; }
  .hamburger { display: block; margin-left: auto; }
  .site-header nav { flex: 0 0 0px; overflow: visible; }

  section { padding: 2.5rem 0; }
  .blog-hero { padding: 1.75rem 0 1rem; }

  /* bonus table: hide middle columns on mobile, keep kasino + bonus */
  .bonus-table th:nth-child(3),
  .bonus-table td:nth-child(3),
  .bonus-table th:nth-child(4),
  .bonus-table td:nth-child(4),
  .bonus-table th:nth-child(5),
  .bonus-table td:nth-child(5),
  .bonus-table th:nth-child(6),
  .bonus-table td:nth-child(6) { display: none; }
  .bonus-table { table-layout: fixed; }
  .bonus-table th:first-child,
  .bonus-table td:first-child { width: 40%; padding-left: 0.85rem; }
  .bonus-table th:nth-child(2),
  .bonus-table td:nth-child(2) { width: 60%; }
  .bonus-table .casino-logo-cell { flex-wrap: nowrap; min-width: 0; }
  .bonus-table .casino-logo-cell img { flex-shrink: 0; width: 48px; height: 24px; }
  .bonus-table .casino-logo-cell strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
  .bonus-table .amount { display: block; font-size: 0.85rem; word-break: break-word; }
  .bonus-table tr.table-row-link td:last-child::after { display: none; }

  .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; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns .btn { width: 100%; justify-content: center; }
}

@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; }
}

/* ── NEWSLETTER POPUP ── */
.nl-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  padding: 1rem;
}
.nl-popup[hidden] { display: none; }
.nl-popup-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2.25rem 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,.48);
}
.nl-close {
  position: absolute;
  top: .85rem; right: .85rem;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 1rem;
  cursor: pointer;
  padding: .25rem .5rem;
  border-radius: 4px;
  line-height: 1;
  transition: color .15s;
}
.nl-close:hover { color: var(--text-1); }
.nl-icon { font-size: 2.4rem; margin-bottom: .6rem; }
.nl-popup-box h2 {
  color: var(--gold-light);
  font-size: 1.3rem;
  margin: 0 0 .65rem;
  line-height: 1.3;
}
.nl-popup-box > p {
  color: var(--text-2);
  font-size: .87rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: .6rem;
}
.nl-form input[type="email"] {
  width: 100%;
  padding: .78rem 1rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-size: .9rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.nl-form input[type="email"]:focus { border-color: var(--gold); }
.nl-form input[type="email"]::placeholder { color: var(--text-3); }
.nl-form .btn { width: 100%; justify-content: center; padding: .82rem; font-size: .9rem; }
.nl-fine {
  font-size: .72rem;
  color: var(--text-3);
  margin: .45rem 0 .65rem;
}
.nl-fine a { color: var(--text-3); text-decoration: underline; }
.nl-dismiss {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: .75rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.nl-dismiss:hover { color: var(--text-2); }
.nl-success { padding: .75rem 0; color: var(--gold-light); font-size: .9rem; }

/* ── NEWSLETTER SLIDE-IN ── */
.nl-slide {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.25rem;
  width: 300px;
  z-index: 9998;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  transform: translateY(130%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.nl-slide[hidden] { display: none; }
.nl-slide.slide-in { transform: translateY(0); }
.nl-slide-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .65rem;
}
.nl-slide-title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
  line-height: 1.35;
}
.nl-slide .nl-form { margin-bottom: .45rem; }
.nl-slide .nl-fine { margin: .3rem 0 0; }

@media (max-width: 480px) {
  .nl-slide { width: calc(100% - 2rem); right: 1rem; bottom: 1rem; }
}

/* ── BLOG PAGE ── */
.blog-hero {
  background:
    linear-gradient(180deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.80) 55%, rgba(13,13,13,0.90) 100%),
    radial-gradient(120% 130% at 88% 50%, rgba(207,144,16,0.18) 0%, transparent 60%),
    url('../img/hero-bg.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  color: var(--text-1);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
/* Teemavariantit hero-taustalle (varianssi ilman per-sivu-kuvia) */
.blog-hero.hero-sport { background-image: linear-gradient(180deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.80) 55%, rgba(13,13,13,0.90) 100%), radial-gradient(120% 130% at 88% 50%, rgba(207,144,16,0.16) 0%, transparent 60%), url('../img/hero-bg-sport.jpg'); }
.blog-hero.hero-marble { background-image: linear-gradient(180deg, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.80) 55%, rgba(13,13,13,0.90) 100%), radial-gradient(120% 130% at 88% 50%, rgba(207,144,16,0.16) 0%, transparent 60%), url('../img/hero-bg-marble.jpg'); }
.blog-hero h1 { margin-bottom: 0.5rem; }
.blog-hero p  { color: var(--text-2); max-width: 620px; }

/* Hero decorative cutout (game-provider character) — desktop only, never overlaps text */
.blog-hero { position: relative; overflow: hidden; }
.blog-hero .container { position: relative; z-index: 2; }
.blog-hero .hero-deco {
  position: absolute;
  right: clamp(0.5rem, 4vw, 3.5rem);
  bottom: 0;
  height: 116%;
  max-height: 270px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.5));
  z-index: 1;
}
@media (max-width: 1024px) { .blog-hero .hero-deco { max-height: 210px; opacity: 0.55; } }
@media (max-width: 640px)  { .blog-hero .hero-deco { display: none; } }

.article-body { max-width: 760px; margin: 0 auto; overflow-wrap: break-word; word-break: break-word; }
.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; max-width: 100%; }

.blog-body { overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.blog-body h2 { font-size: clamp(1.15rem, 3.5vw, 1.5rem); line-height: 1.3; margin: 2rem 0 0.9rem; color: var(--text-1); }
.blog-body h3 { font-size: clamp(1rem, 2.5vw, 1.15rem); line-height: 1.35; margin: 1.5rem 0 0.6rem; color: var(--text-1); }
.blog-body p  { font-size: 0.97rem; line-height: 1.75; color: var(--text-2); margin-bottom: 1.1rem; }
.blog-body ul, .blog-body ol { margin: 0 0 1.1rem 1.5rem; color: var(--text-2); font-size: 0.95rem; line-height: 1.7; }
.blog-body li { margin-bottom: 0.45rem; }
.blog-body strong { color: var(--text-1); }
.blog-body .notice-box { margin: 1.5rem 0; font-size: 0.93rem; line-height: 1.65; }

/* ── SIDEBAR ── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.content-sidebar > * { min-width: 0; }
/* Review article inside content-sidebar shouldn't lift on hover */
.content-sidebar main > .blog-card:hover { transform: none; border-color: var(--border-gold); }
.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); font-family:'Oswald','Inter',sans-serif; font-weight:600; letter-spacing:.01em; }
/* ── Premium brand cards inside sidebar widgets ── */
.sw-list { display:flex; flex-direction:column; gap:.7rem; }
.sw-card { background:linear-gradient(165deg,rgba(255,255,255,.05),rgba(0,0,0,.18)); border:1px solid rgba(233,182,62,.20); border-radius:12px; padding:.8rem .85rem; transition:border-color .2s ease; }
.sw-card:hover { border-color:rgba(233,182,62,.5); }
.sw-card.is-top { border-color:rgba(233,182,62,.42); box-shadow:inset 0 0 0 1px rgba(233,182,62,.12); }
.sw-top { display:flex; align-items:center; gap:.5rem; margin-bottom:.6rem; }
.sw-logo { height:26px; width:auto; max-width:140px; object-fit:contain; flex-shrink:0; }
.sw-rate { margin-left:auto; display:inline-flex; align-items:center; gap:.15rem; font-size:.72rem; font-weight:700; color:#23180a; background:linear-gradient(160deg,#F6D277,#E0A52E); padding:.13rem .46rem; border-radius:999px; white-space:nowrap; }
.sw-meta { font-size:.78rem; color:var(--text-mid); line-height:1.45; margin-bottom:.7rem; }
.sw-btn { display:flex; align-items:center; justify-content:center; width:100%; font-family:'Oswald','Inter',sans-serif; font-weight:600; font-size:.86rem; letter-spacing:.02em; padding:.5rem .8rem; border-radius:9px; background:linear-gradient(160deg,#F6D277,#E0A52E); color:#23180a; text-decoration:none; transition:filter .2s ease; }
.sw-btn:hover { filter:brightness(1.08); }
.sw-foot { font-size:.7rem; color:var(--text-light); text-align:center; margin-top:.7rem; opacity:.85; }

@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; }

/* ============================================
   MOBILE: GENERIC TABLES → fit-to-viewport (no horizontal scroll)
   Sovelletaan kaikkiin <table>-elementteihin paitsi .bonus-table
   ============================================ */
@media (max-width: 720px) {
  main table:not(.bonus-table),
  article table:not(.bonus-table),
  .kova-page table:not(.bonus-table) {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: visible;
    font-size: 0.85rem;
    border-collapse: collapse;
  }
  main table:not(.bonus-table) thead,
  article table:not(.bonus-table) thead,
  .kova-page table:not(.bonus-table) thead { display: none; }
  main table:not(.bonus-table) tbody,
  article table:not(.bonus-table) tbody,
  .kova-page table:not(.bonus-table) tbody { display: block; width: 100%; }
  main table:not(.bonus-table) tr,
  article table:not(.bonus-table) tr,
  .kova-page table:not(.bonus-table) tr {
    display: block;
    background: var(--bg-card, #1d1d1d);
    border: 1px solid rgba(212,162,42,0.18);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.75rem;
  }
  main table:not(.bonus-table) td,
  article table:not(.bonus-table) td,
  .kova-page table:not(.bonus-table) td {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px dotted rgba(255,255,255,0.08);
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
    line-height: 1.5;
  }
  main table:not(.bonus-table) tr td:last-child,
  article table:not(.bonus-table) tr td:last-child,
  .kova-page table:not(.bonus-table) tr td:last-child { border-bottom: none; }
}

/* ============================================
   MOBILE: BONUS TABLE → stacked cards
   ============================================ */
@media (max-width: 720px) {
  .bonus-table-wrap { overflow-x: visible !important; border: none !important; }
  .bonus-table { min-width: 0 !important; width: 100% !important; display: block !important; }
  .bonus-table thead { display: none; }
  .bonus-table tbody { display: block; }
  .bonus-table tr {
    display: block;
    background: linear-gradient(180deg, #1d1d1d 0%, #141414 100%);
    border: 1px solid rgba(212,162,42,0.22);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.9rem;
  }
  .bonus-table tr[style*="background:rgba(212,162,42,0.08)"] {
    border-color: rgba(212,162,42,0.55);
    background: linear-gradient(180deg, #251f10 0%, #16130a 100%) !important;
  }
  .bonus-table td {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px dotted rgba(255,255,255,0.08);
    text-align: left;
    min-width: 0;
    color: var(--text-1, #fff);
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .bonus-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
  }
  .bonus-table td > * {
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .bonus-table td:last-child {
    border-bottom: none;
    padding-top: 0.85rem;
    text-align: center;
    display: block;
  }
  .bonus-table td:last-child::before { display: none; }
  .bonus-table td:last-child .btn-sm,
  .bonus-table td:last-child .btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }
  .bonus-table td:first-child {
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(212,162,42,0.20);
    margin-bottom: 0.35rem;
  }
  .bonus-table td:first-child::before { display: none; }
  .bonus-table .casino-logo-cell {
    display: flex; align-items: center; gap: 0.6rem;
    width: 100%; flex-wrap: wrap;
  }
  .bonus-table .casino-logo-cell img { max-height: 36px; width: auto; flex-shrink: 0; }
  .bonus-table .casino-logo-cell strong { flex: 1 1 auto; min-width: 0; white-space: normal; font-size: 1rem; }
  .bonus-table td:empty::after { content: "—"; color: var(--text-3); }
}

/* ============================================
   MOBIILIN VISUAALINEN SIIVOUS
   Vähemmän melua, pienempi rasitus näytöllä, paremmat ydintoiminnot
   ============================================ */
@media (max-width: 720px) {
  /* Trust bar pois mobiilista — se on koristevaikutus, ei lisäarvoa */
  .trust-bar { display: none; }

  /* Hero-osio pienemmäksi */
  .hero { padding: 2.5rem 0 2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-cta-group { gap: 0.75rem; }
  .hero-cta-group .btn { padding: 0.78rem 1.3rem; font-size: 0.92rem; }

  /* Sektioiden välistys pienemmäksi */
  section { padding: 2rem 0; }

  /* Casino-kortit kompaktimmiksi */
  .casino-card { padding: 1.05rem; gap: 0.85rem; }
  .casino-card h3 { font-size: 1rem; }
  .casino-bonus { padding: 0.5rem 0.7rem; margin: 0.4rem 0; }
  .bonus-amount { font-size: 0.92rem; }
  .bonus-label { font-size: 0.72rem; }
  /* Vain 3 tärkeintä tagia näkyy mobiilissa, loput piiloon */
  .casino-tags .tag:nth-child(n+4) { display: none; }
  .casino-tags { gap: 0.3rem; }
  .tag { font-size: 0.68rem; padding: 0.14rem 0.45rem; }
  /* Trust-rivit pienemmiksi mobiilissa */
  .card-trust { gap: 0.35rem 0.75rem; font-size: 0.68rem; }
  .card-trust .trust-proof { display: none; } /* katselut/viikko - melua */

  /* Stars + rating pienemmiksi */
  .star { font-size: 0.85rem; }
  .rating-text { font-size: 0.72rem; }

  /* Section title hierarchy tighter */
  .section-sub { margin-bottom: 1.5rem; font-size: 0.92rem; }

  /* Otsikoiden välykset tiukemmiksi mobiilissa */
  main h2 { margin: 1.75rem 0 0.85rem; }
  main h3 { margin: 1.4rem 0 0.65rem; }

  /* Eyebrow + kova-hero kompaktimpi */
  .kova-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; }
  .kova-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.1rem) !important; }
  .kova-hero-sub { font-size: 0.95rem; }
  .kova-badges { gap: 0.4rem; margin: 1rem 0 1.25rem; }
  .kova-badge { font-size: 0.72rem; padding: 0.32rem 0.6rem; }

  /* Blog-hero ja breadcrumb pienempi */
  .blog-hero h1 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .blog-hero p { font-size: 0.92rem; }

  /* Footer kompaktimpi */
  .footer-grid { gap: 1.25rem; }
}

/* ============================================
   ARVOSTELUT — review-blog-card -tyyli erottuvampi
   ============================================ */
.review-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-blog-card {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a1a 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.review-blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}
.review-blog-card.featured {
  border-color: rgba(207,144,16,0.45);
  background: linear-gradient(135deg, #1d1b25 0%, var(--bg-card) 60%);
}
.review-blog-card .rb-hero {
  height: 175px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.review-blog-card .rb-hero img { max-width: 75%; max-height: 75%; object-fit: contain; }
/* EpicBet = leveä 7:1-wordmark 3:1-viewBoxissa → kapeampi max-width ettei levitä siblingejä isommaksi headlinerissa */
.review-blog-card .rb-hero img[src*="casino-epicbet"] { max-width: 52%; }
.review-blog-card .rb-score {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #09090e;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}
.review-blog-card .rb-body { min-width: 0; }
.review-blog-card .rb-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 0.6rem;
}
.review-blog-card .rb-cat {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-blog-card h3 { font-size: 1.18rem; margin: 0 0 0.5rem; color: var(--text-1); }
.review-blog-card .rb-excerpt {
  font-size: 0.93rem;
  color: var(--text-2);
  margin: 0 0 0.85rem;
  line-height: 1.55;
}
.review-blog-card .rb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  font-size: 0.7rem;
  color: var(--text-2);
  margin-top: 0.4rem;
}
.review-blog-card .rb-tags span::before { content: "·"; margin-right: 0.4rem; color: var(--text-3); }
.review-blog-card .rb-tags span:first-child::before { display: none; }
.review-blog-card .rb-action { display: flex; flex-direction: column; gap: 0.55rem; align-items: stretch; min-width: 150px; }
.review-blog-card .rb-action .btn { width: 100%; justify-content: center; }
.review-blog-card .rb-action .rb-read-link {
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  text-align: center;
  padding-top: 0.25rem;
}
.review-blog-card .rb-action .rb-read-link:hover { color: var(--gold); }
@media (max-width: 720px) {
  .review-blog-card { grid-template-columns: 1fr; padding: 1rem; }
  .review-blog-card .rb-hero { height: 130px; }
  .review-blog-card .rb-action { min-width: 0; }
}

/* ============================================
   BONUKSET — bonus-spotlight-grid -tyyli erottuvampi
   ============================================ */
.bonus-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .bonus-spotlight-grid { grid-template-columns: 1fr; }
  .desktop-only-top3 { display: none !important; }
}
@media (min-width: 1100px) {
  .bonus-spotlight-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Responsiivinen kaksi-sarakeruudukko (esim. plussat/miinukset arvosteluissa) */
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
@media (max-width: 600px) { .cmp-grid { grid-template-columns: 1fr; } }

/* Apuluokka: piilota elementti mobiilissa */
@media (max-width: 680px) { .hide-on-mobile { display: none !important; } }

/* Eväste-modaalin "Lue lisää" -avattava (hyöty-kehystys) */
.ck-more { margin-top: .45rem; }
.ck-more summary { cursor: pointer; color: var(--gold); font-size: .8rem; font-weight: 600; list-style: none; display: inline-block; }
.ck-more summary::-webkit-details-marker { display: none; }
.ck-more summary::after { content: " ▾"; font-size: .7rem; }
.ck-more[open] summary::after { content: " ▴"; }
.ck-more p { margin: .4rem 0 0; font-size: .8rem; line-height: 1.5; color: var(--text-2); }

/* Mobiili: enemmän hengitystilaa + kevyempi koristelu (desktop koskematon) */
@media (max-width: 680px) {
  .casino-grid { gap: 1.4rem; }                              /* ilmaa korttien väliin */
  .casino-card { box-shadow: none; }                          /* kevyempi koristelu kapealla */
  .casino-card .casino-bonus .bonus-label { display: none; }  /* verbose alaotsikko pois → rauhallisempi */
  .casino-tags .tag:nth-child(n+3) { display: none; }         /* 2 tagia riittää mobiilissa (väljempi) */
}

/* Eväste-modaali kompaktiksi mobiilissa (bottom sheet) */
@media (max-width: 480px) {
  .cookie-modal { align-items: flex-end; padding: 0; }
  .cookie-box { max-width: none; width: 100%; border-radius: 16px 16px 0 0; padding: 1.2rem 1.05rem calc(1.2rem + env(safe-area-inset-bottom)); max-height: 88vh; overflow-y: auto; }
  .cookie-box h2 { font-size: 1.02rem; margin-bottom: .45rem; }
  .cookie-intro { font-size: .78rem; line-height: 1.45; margin-bottom: .85rem; }
  .cookie-cats { gap: .45rem; margin-bottom: 1rem; }
  .cookie-cat { padding: .65rem .75rem; }
  .cookie-cat-info span { font-size: .74rem; }
}
.bonus-spotlight {
  background: linear-gradient(160deg, #1c1a14 0%, var(--bg-card) 70%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.35rem 1.25rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.bonus-spotlight:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.bonus-spotlight.top { border-color: rgba(207,144,16,0.5); background: linear-gradient(160deg, #271f0d 0%, var(--bg-card) 70%); }
.bonus-spotlight .bs-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.bonus-spotlight .bs-head img { height: 28px; }
.bonus-spotlight .bs-name { font-weight: 700; font-size: 0.92rem; color: var(--text-1); }
.bonus-spotlight .bs-rating { font-size: 0.72rem; color: var(--gold); margin-left: auto; }
.bonus-spotlight .bs-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}
.bonus-spotlight .bs-amount-sub { font-size: 0.78rem; color: var(--text-2); margin-bottom: 1rem; }
.bonus-spotlight .bs-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--text-2);
}
.bonus-spotlight .bs-details li {
  display: flex;
  justify-content: space-between;
  padding: 0.32rem 0;
  border-bottom: 1px dotted rgba(255,255,255,0.06);
}
.bonus-spotlight .bs-details li:last-child { border-bottom: none; }
.bonus-spotlight .bs-details li span:first-child { color: var(--text-3); }
.bonus-spotlight .bs-details li span:last-child { color: var(--text-1); font-weight: 600; }
.bonus-spotlight .bs-action { margin-top: auto; display: flex; flex-direction: column; gap: 0.5rem; }
.bonus-spotlight .bs-action .btn { width: 100%; justify-content: center; padding: 0.65rem; font-size: 0.88rem; }
.bonus-spotlight .bs-action .bs-review { font-size: 0.78rem; color: var(--text-2); text-decoration: none; text-align: center; }
.bonus-spotlight .bs-action .bs-review:hover { color: var(--gold); }

/* ── DARK MODE FORCED ──
   Light mode poistettu käytöstä: brändi on tumma. Selain ei saa
   tarjota vaaleaa taustaa lomakkeille tai scrollbareille. */

/* ═══════════════════════════════════════════════════════════════
   kx DESIGN KIT — globaali (aiemmin per-sivu inline <style>).
   Tumma/kulta artikkelikomponentit. Vars .kx:ssä → kääri sisältö
   <article class="kx"> tai <div class="kx">. Komponentit: kx-tldr,
   kx-pills, kx-cmp/kx-card (brändilista), kx-pick, kx-grid/kx-tile,
   kx-steps, kx-faq.
   ═══════════════════════════════════════════════════════════════ */
.kx{--g:#CF9010;--g2:#EDB030;--ink:#f4efe6;--mut:#b7ab97;--ln:rgba(207,144,16,.22);}
.kx h2{font-size:1.5rem;margin:2.4rem 0 1rem;letter-spacing:-.01em;}
.kx h2 .kx-em{color:var(--g2);}
.kx>p{line-height:1.7;}
.kx-tldr{position:relative;background:radial-gradient(120% 140% at 0% 0%,#241b10,#15110b 60%);border:1px solid var(--ln);border-left:4px solid var(--g2);border-radius:16px;padding:1.4rem 1.5rem;margin:0 0 2rem;}
.kx-tldr .lbl{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--g2);font-weight:700;}
.kx-tldr p{margin:.5rem 0 1rem;font-size:1.12rem;line-height:1.55;color:var(--ink);}
.kx-pills{display:flex;flex-wrap:wrap;gap:.6rem;}
.kx-pill{display:flex;flex-direction:column;gap:2px;background:rgba(255,255,255,.04);border:1px solid var(--ln);border-radius:11px;padding:.6rem .9rem;min-width:0;}
.kx-pill b{color:var(--g2);font-size:1.05rem;line-height:1;}
.kx-pill span{font-size:.74rem;color:var(--mut);letter-spacing:.03em;}
.kx-cmp{display:flex;flex-direction:column;gap:14px;margin:1.2rem 0 1rem;}
.kx-card{display:grid;grid-template-columns:46px 110px 1fr auto;gap:1.1rem;align-items:center;background:linear-gradient(180deg,#1c1812,#15120d);border:1px solid var(--ln);border-radius:16px;padding:1rem 1.2rem;transition:transform .15s,border-color .15s;}
.kx-card:hover{transform:translateY(-2px);border-color:rgba(237,176,48,.4);}
.kx-card.top{border-color:rgba(237,176,48,.6);box-shadow:0 10px 34px -16px rgba(207,144,16,.55);}
.kx-no{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.3rem;color:#1a1206;background:linear-gradient(160deg,var(--g2),var(--g));}
.kx-card:not(.top) .kx-no{background:none;color:var(--g2);border:1px solid var(--ln);}
.kx-logo{display:flex;align-items:center;justify-content:center;height:48px;}
.kx-logo img{height:42px;width:auto;max-width:100%;object-fit:contain;}
.kx-mid .nm{font-weight:700;color:var(--ink);font-size:1.05rem;}
.kx-mid .mt{font-size:.82rem;color:var(--mut);margin-top:2px;}
.kx-meter{display:inline-flex;gap:3px;margin-top:.45rem;vertical-align:middle;}
.kx-meter i{width:16px;height:7px;border-radius:2px;background:rgba(255,255,255,.12);}
.kx-meter i.on{background:linear-gradient(90deg,var(--g),var(--g2));}
.kx-lic{display:inline-block;font-size:.72rem;color:var(--mut);border:1px solid var(--ln);border-radius:999px;padding:2px 9px;margin-left:.5rem;}
.kx-right{text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:.5rem;}
.kx-time{font-weight:700;color:var(--g);font-size:1rem;line-height:1.15;white-space:nowrap;}
.kx-time span{display:block;font-family:inherit;font-weight:400;font-size:.68rem;color:var(--mut);letter-spacing:.06em;text-transform:uppercase;margin-bottom:3px;}
.kx-btn{display:inline-block;background:linear-gradient(160deg,var(--g2),var(--g));color:#1a1206;font-weight:700;text-decoration:none;border-radius:999px;padding:.5rem 1.15rem;font-size:.9rem;white-space:nowrap;}
.kx-pick{display:flex;flex-wrap:wrap;align-items:center;gap:1.1rem;justify-content:space-between;background:linear-gradient(135deg,#0c0a07,#1d1710);border:1px solid rgba(237,176,48,.4);border-radius:16px;padding:1.3rem 1.5rem;margin:1.6rem 0;}
.kx-pick .t{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--g2);font-weight:700;}
.kx-pick .d{color:var(--ink);margin-top:.35rem;max-width:52ch;line-height:1.5;font-size:.96rem;}
.kx-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin:1.2rem 0;}
.kx-tile{background:linear-gradient(180deg,#1a1610,#141009);border:1px solid var(--ln);border-radius:14px;padding:1.2rem;}
.kx-tile .ic{font-size:1.5rem;}
.kx-tile h3{font-size:1.02rem;color:var(--ink);margin:.5rem 0 .35rem;}
.kx-tile p{font-size:.9rem;color:var(--mut);line-height:1.55;margin:0;}
.kx-tile .for{display:block;margin-top:.6rem;font-size:.78rem;color:var(--g2);font-weight:600;}
.kx-tile a{color:var(--g2);text-decoration:none;}
.kx-steps{counter-reset:s;display:flex;flex-direction:column;gap:.8rem;margin:1.2rem 0;}
.kx-step{position:relative;padding:1rem 1.1rem 1rem 3.4rem;background:rgba(255,255,255,.03);border:1px solid var(--ln);border-radius:12px;color:var(--ink);font-size:.95rem;line-height:1.5;}
.kx-step::before{counter-increment:s;content:counter(s);position:absolute;left:.95rem;top:50%;transform:translateY(-50%);width:30px;height:30px;border-radius:50%;background:linear-gradient(160deg,var(--g2),var(--g));color:#1a1206;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:.95rem;}
.kx-step strong{color:var(--g2);}
.kx-step a{color:var(--g2);}
.kx-faq{display:flex;flex-direction:column;gap:.7rem;margin:1.2rem 0;}
.kx-faq details{background:rgba(255,255,255,.03);border:1px solid var(--ln);border-radius:12px;padding:0 1.1rem;}
.kx-faq summary{cursor:pointer;font-weight:600;color:var(--ink);padding:1rem 0;list-style:none;}
.kx-faq summary::-webkit-details-marker{display:none;}
.kx-faq summary::after{content:'+';float:right;color:var(--g2);font-weight:700;}
.kx-faq details[open] summary::after{content:'-';}
.kx-faq details p{margin:0 0 1rem;color:var(--mut);line-height:1.6;font-size:.95rem;}
@media(max-width:640px){
  .kx-card{grid-template-columns:40px 1fr;grid-auto-rows:auto;row-gap:.6rem;}
  .kx-logo{justify-content:flex-start;grid-column:2;}
  .kx-mid{grid-column:1 / -1;}
  .kx-right{grid-column:1 / -1;align-items:stretch;text-align:left;flex-direction:row;justify-content:space-between;}
  .kx-btn{flex:0 0 auto;}
}

/* ── Language switcher (theklinq EN mirror) ── */
.lang-switch{display:inline-flex;align-items:center;gap:.35rem;margin-left:1rem;font-weight:700;font-size:.82rem}
.lang-switch a,.lang-switch .current{padding:.2rem .5rem;border-radius:6px;text-decoration:none;color:var(--text-mid,#cabfa6)}
.lang-switch .current{background:linear-gradient(180deg,#F8D873,#CB8E12);color:#26180a}
.lang-switch a:hover{color:var(--gold,#EDB030)}
@media(max-width:600px){.lang-switch{margin-left:.5rem;font-size:.78rem}}