/*
Theme Name: Leon CA
Theme URI: https://example.com/
Author: the editorial team
Description: A dark, high-contrast casino/affiliate editorial theme with a red accent.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leon-ca
*/

/* dark charcoal + red sportsbook/casino theme */
:root {
  --bg: #0b0d0f;
  --bg-elev: #101318;
  --surface: #16191e;
  --surface-2: #1c2127;
  --border: #262b33;
  --border-strong: #343b45;
  --text: #e8eaed;
  --text-muted: #a0a7b0;
  --text-faint: #6b7380;
  --accent: #e63946;
  --accent-strong: #ff5b6e;
  --accent-dark: #8f1620;
  --accent-dim: rgba(230, 57, 70, 0.12);
  --accent-border: rgba(230, 57, 70, 0.35);
  --gold: #f5b50a;
  --gold-strong: #ffd34d;
  --gold-dim: rgba(245, 181, 10, 0.14);
  --red: #ff7b7b;
  --red-dim: rgba(255, 123, 123, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: #0b0d0f;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}
.btn-accent:hover { background: var(--accent-strong); box-shadow: 0 8px 26px rgba(230, 57, 70, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); box-shadow: none; }

/* ── Header ──────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg-elev); border-bottom: 2px solid var(--accent-dark); }
.nav-inner { display: flex; align-items: center; gap: 18px; min-height: 64px; }
.site-branding { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); flex: 0 0 auto; }
.site-branding:hover { text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0b0d0f; font-weight: 900; font-size: 18px; flex: 0 0 auto;
}
.site-title { text-transform: uppercase; letter-spacing: 0.02em; }
.main-navigation { display: flex; align-items: center; flex: 1 1 auto; min-width: 0; }
.menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.menu-item a {
  display: block; padding: 8px 12px; color: var(--text-muted);
  font-size: 14px; font-weight: 500; border-radius: 6px;
}
.menu-item a:hover { color: var(--accent-strong); background: var(--accent-dim); text-decoration: none; }
.menu-item-home a { color: var(--text); font-weight: 600; }
.nav-cta-group { margin-left: auto; flex: 0 0 auto; display: flex; align-items: center; gap: 8px; }
.nav-cta-group .btn { padding: 9px 20px; font-size: 14px; white-space: nowrap; }

/* Hamburger (CSS-only, driven by the #nav-toggle checkbox) */
.nav-toggle-input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; cursor: pointer; border-radius: 8px;
  border: 1px solid var(--border-strong); align-items: center;
}
.nav-toggle-bar { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; }

/* HERO BLOCK — optional 18+ / brand / quick-links strip for non-homepage pages. */
.hero-block { background: #08090b; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--text-faint); }
.hero-block-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-height: 30px; }
.utility-age {
  background: var(--accent); color: #0b0d0f; font-weight: 800;
  border-radius: 4px; padding: 1px 6px; font-size: 11px;
}
.utility-note { color: var(--text-muted); }
.hero-block-inner a { color: var(--text-faint); }
.hero-block-inner a:hover { color: var(--accent-strong); }
.utility-sep { color: var(--border-strong); }

/* Language switcher — shown only when the site has >1 locale. */
.lang-switcher { display: flex; align-items: center; }
.lang-select {
  background: var(--surface); color: var(--text); border: 1px solid var(--border-strong);
  border-radius: 6px; padding: 7px 10px; font-size: 13px; font-weight: 700; cursor: pointer;
}

/* ── Hero ────────────────────────────────────────────── */
.index-hero {
  padding: 44px 0 32px;
  background:
    radial-gradient(1000px 400px at 80% -20%, var(--accent-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg));
  border-bottom: 1px solid var(--border);
}
/* Text-page hero — full first screen, text left + promo image right */
.page-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 40px 0;
  background:
    radial-gradient(900px 420px at 85% 15%, var(--accent-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}
.page-hero-text { min-width: 0; }
.page-hero-figure { margin: 0; display: flex; justify-content: center; }
.page-hero-figure img {
  width: 100%; max-width: 420px; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.hero-kicker {
  margin: 0 0 10px; color: var(--accent); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
}
.entry-title, .page-title {
  margin: 0 0 14px; font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15; font-weight: 800; letter-spacing: -0.01em;
}
.entry-subtitle, .archive-description { margin: 0 0 20px; color: var(--text-muted); font-size: 17px; max-width: 760px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin: 20px 0 0; }
.hero-bonus { color: var(--accent-strong); font-size: 14px; max-width: 420px; }

/* Eye-catching offer (a badge above the CTA) */
.hero-offer {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 6px 0 14px; padding: 10px 16px;
  border: 1px solid var(--accent-border);
  background: linear-gradient(135deg, var(--accent-dim), var(--surface));
  border-radius: var(--radius-sm);
  color: var(--text); font-size: 15px; font-weight: 600;
}
.hero-offer-icon { width: 20px; height: 20px; flex: 0 0 auto; color: var(--accent); }

/* Attractive, interactive CTA */
.hero-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0b0d0f; font-size: 17px; padding: 15px 34px;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}
.hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.55);
}
.hero-cta::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.5s ease;
}
.hero-cta:hover::after { left: 120%; }
.hero-cta-arrow { display: inline-block; margin-left: 8px; transition: transform 0.15s ease; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

/* Author / EEAT — subtle byline just before the text */
.article-byline {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.author-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: var(--surface-2); color: var(--accent);
  border: 1px solid var(--border); font-weight: 800; font-size: 13px;
}
.author-meta { display: flex; flex-direction: row; gap: 8px; align-items: baseline; }
.author-name { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.author-date { font-size: 12px; color: var(--text-faint); }

/* ── Article layout ──────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0 20px;
}
.article-sidebar { position: sticky; top: 96px; align-self: start; }
.article-main { min-width: 0; }

/* ── Entry content (dark editorial) ──────────────────── */
.entry-content { font-family: var(--font-body); font-size: 17.5px; color: #d8dbe0; }
.entry-content h2 { font-family: var(--font-ui); font-size: 26px; font-weight: 800; margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); color: var(--text); }
.entry-content h3 { font-family: var(--font-ui); font-size: 20px; font-weight: 700; margin: 30px 0 12px; color: var(--text); }
.entry-content p { margin: 0 0 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 20px; padding-left: 24px; }
.entry-content li { margin: 6px 0; }
.entry-content a { color: var(--accent-strong); }
.entry-content blockquote {
  margin: 24px 0; padding: 14px 20px; border-left: 3px solid var(--accent);
  background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}
.entry-content code { background: var(--surface-2); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-family: var(--font-ui); font-size: 14px; }
.entry-content th, .entry-content td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; }
.entry-content th { background: var(--surface-2); color: var(--accent-strong); }
.entry-content tr:nth-child(even) td { background: var(--surface); }

/* ── TOC ─────────────────────────────────────────────── */
.table-of-contents {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.toc-title {
  margin: 0 0 10px; font-weight: 700; color: var(--accent-strong);
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.table-of-contents ol { margin: 0; padding-left: 20px; }
.table-of-contents li { margin: 5px 0; font-size: 14px; }
.table-of-contents a { color: var(--text-muted); }
.table-of-contents a:hover { color: var(--accent-strong); }

/* ── Pros / cons ─────────────────────────────────────── */
.pros-cons { margin: 8px 0 28px; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pc-col { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; background: var(--surface); }
.pc-pros { border-top: 3px solid var(--gold); }
.pc-cons { border-top: 3px solid var(--red); }
.pc-title { margin: 0 0 14px; font-size: 17px; font-weight: 800; }
.pc-pros .pc-title { color: var(--gold-strong); }
.pc-cons .pc-title { color: var(--red); }
.pc-list { list-style: none; margin: 0; padding: 0; }
.pc-list li { display: flex; gap: 10px; margin: 10px 0; font-size: 14.5px; color: var(--text); }
.pc-icon { flex: 0 0 auto; font-weight: 800; font-size: 13px; line-height: 1.5; }
.pc-check { color: var(--gold); }
.pc-cross { color: var(--red); }

/* ── Offer box ───────────────────────────────────────── */
.offer-box {
  margin: 8px 0 28px; border: 1px solid var(--accent-border);
  background: linear-gradient(135deg, var(--accent-dim), var(--surface));
  border-radius: var(--radius); padding: 26px;
}
.offer-kicker { margin: 0 0 6px; color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.offer-title { margin: 0 0 10px; font-size: 22px; font-weight: 800; }
.offer-bonus { margin: 0 0 18px; color: var(--text-muted); font-size: 15px; }
.offer-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 20px; }
.offer-stat { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; display: flex; flex-direction: column; gap: 2px; }
.offer-stat-value { font-weight: 800; color: var(--accent-strong); font-size: 16px; }
.offer-stat-label { font-size: 12px; color: var(--text-faint); }

/* ── Features grid ───────────────────────────────────── */
.features-section { margin: 8px 0 28px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.feature-icon { font-size: 22px; }
.feature-title { margin: 8px 0 6px; font-size: 15.5px; font-weight: 700; }
.feature-desc { margin: 0; font-size: 13.5px; color: var(--text-muted); }

/* ── Plan tables ─────────────────────────────────────── */
.plan-table-block { margin: 8px 0 28px; }
.plan-table-title { margin: 0 0 12px; font-size: 18px; font-weight: 800; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.plan-table { width: 100%; border-collapse: collapse; font-family: var(--font-ui); font-size: 14px; min-width: 560px; }
.plan-table th { background: var(--accent); color: #0b0d0f; padding: 11px 14px; text-align: left; font-weight: 700; }
.plan-table td { padding: 11px 14px; border-top: 1px solid var(--border); color: var(--text); }
.plan-table tbody tr:nth-child(even) { background: var(--surface); }

/* ── Steps / HowTo block-scheme ───────────────────────── */
.plan-steps-list { list-style: none; margin: 8px 0 28px; padding: 0; counter-reset: step; }
.plan-steps-list li { display: flex; gap: 16px; align-items: flex-start; margin: 0; position: relative; padding-bottom: 18px; }
.plan-steps-list li::before {
  content: ""; position: absolute; left: 15px; top: 34px; bottom: 2px;
  width: 2px; background: var(--accent-border);
}
.plan-steps-list li:last-child::before { display: none; }
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; flex: 1 1 auto;
}
.step-num {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #0b0d0f; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  position: relative; z-index: 1;
}
.step-text { padding-top: 4px; color: var(--text); flex: 1 1 auto; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section { margin: 8px 0 28px; }
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: 15.5px; color: var(--text); list-style: none; }
.faq-question::marker { color: var(--accent); }
.faq-question:hover { color: var(--accent-strong); }
.faq-answer { padding: 0 18px 16px; color: var(--text-muted); font-size: 15px; }
.faq-answer p { margin: 0; }
.faq-item[open] .faq-question { color: var(--accent-strong); }

/* ── Related ─────────────────────────────────────────── */
.related-posts { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.related-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 18px; color: var(--text);
  font-size: 14.5px; font-weight: 600; transition: border-color 0.12s ease, background 0.12s ease;
}
.related-card:hover { border-color: var(--accent-border); background: var(--accent-dim); text-decoration: none; color: var(--accent-strong); }
.related-card span { color: var(--accent); }

/* ── Section titles ──────────────────────────────────── */
.section-title { margin: 0 0 6px; font-size: 22px; font-weight: 800; color: var(--text); }
.section-eyebrow { margin: 0; color: var(--text-faint); font-size: 14px; }
.featured-head { margin-bottom: 18px; }

/* ── Home / cards ────────────────────────────────────── */
.home-container { padding-top: 32px; padding-bottom: 48px; }
.home-intro { max-width: 860px; margin: 0 auto 32px; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.guide-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.12s ease, transform 0.12s ease; }
.guide-card:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.card-link { display: flex; flex-direction: column; gap: 8px; padding: 20px; color: var(--text); height: 100%; }
.card-link:hover { text-decoration: none; }
.card-tag { margin: 0; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--accent); }
.entry-title { margin: 0; font-size: 16.5px; font-weight: 700; line-height: 1.3; }
.entry-summary { margin: 0; font-size: 13.5px; color: var(--text-muted); }
.card-arrow { margin-top: auto; color: var(--accent); font-weight: 800; }
.featured-posts, .posts-list { margin: 0 0 40px; }
.featured-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* ── Why section ─────────────────────────────────────── */
.why-section { margin: 0 0 40px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 16px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.why-icon { font-size: 24px; }
.why-title { margin: 10px 0 6px; font-size: 15.5px; font-weight: 700; }
.why-text { margin: 0; font-size: 13.5px; color: var(--text-muted); }

/* ── Category page lobby ───────────────────────────────── */
.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(800px 380px at 85% 0%, var(--accent-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.category-hero-text { min-width: 0; }
.category-hero-figure { margin: 0; }
.category-hero-figure img {
  width: 100%; max-width: 380px; height: auto; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: 0 14px 34px rgba(0,0,0,0.35);
  margin-left: auto;
}
.aviator-tile span { color: var(--accent); }
@media (max-width: 860px) {
  .category-hero { grid-template-columns: 1fr; padding: 20px; }
  .category-hero-figure img { max-width: 100%; max-height: 240px; object-fit: cover; }
}

/* ── Go modal (game/category click interception) ────────── */
.go-modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  visibility: hidden; opacity: 0; transition: opacity 0.2s ease, visibility 0.2s ease;
}
.go-modal.is-open { visibility: visible; opacity: 1; }
.go-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 5, 6, 0.82);
  backdrop-filter: blur(4px);
}
.go-modal-dialog {
  position: relative; width: 100%; max-width: 420px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  border: 1px solid var(--accent-border);
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  text-align: center;
}
.go-modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 30px; height: 30px; border: none; background: transparent;
  color: var(--text-faint); font-size: 22px; line-height: 1; cursor: pointer;
  border-radius: 6px;
}
.go-modal-close:hover { color: var(--text); background: var(--surface-2); }
.go-modal-head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.go-modal-logo { width: 40px; height: 40px; border-radius: 9px; }
.go-modal-kicker { margin: 0; color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.go-modal-title { margin: 0 0 8px; font-size: 22px; font-weight: 800; color: var(--text); }
.go-modal-text { margin: 0 0 20px; font-size: 14.5px; color: var(--text-muted); }
.go-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.go-modal-actions .btn { width: 100%; font-size: 15px; }
/* LOGIN — least attractive (ghost). */
.go-modal-login {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-strong);
}
.go-modal-login:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-2); transform: none; box-shadow: none; }
/* REGISTER — main button. */
.go-modal-register {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0b0d0f; box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}
.go-modal-register:hover { box-shadow: 0 12px 32px rgba(230, 57, 70, 0.55); }
/* BONUS — distinct secondary CTA (orange). */
.go-modal-bonus {
  background: #f5b50a; color: #0b0d0f; box-shadow: 0 6px 18px rgba(245, 181, 10, 0.3);
}
.go-modal-bonus:hover { background: #ffd34d; }
.go-modal-note { margin: 16px 0 0; font-size: 11.5px; color: var(--text-faint); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { margin-top: 40px; background: var(--bg-elev); border-top: 2px solid var(--accent-dark); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding-top: 40px; padding-bottom: 32px; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px;
  text-decoration: none; color: var(--text);
}
.footer-logo:hover { text-decoration: none; }
.footer-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0b0d0f; font-weight: 900; font-size: 24px;
}
.footer-logo-text {
  font-family: var(--font-ui); font-size: 26px; font-weight: 900;
  letter-spacing: -0.01em; text-transform: uppercase; line-height: 1;
}
.footer-logo-accent { color: var(--accent); }
.footer-disclosure { font-size: 13px; color: var(--text-faint); max-width: 320px; }
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.widget-title { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: var(--accent-strong); text-transform: uppercase; letter-spacing: 0.05em; }
.widget-title::after { content: "▾"; margin-left: 6px; font-size: 11px; color: var(--text-faint); }
.widget .menu { flex-direction: column; align-items: stretch; gap: 0; }
.widget .widget-menu { display: none; }
.widget:hover .widget-menu, .widget:focus-within .widget-menu { display: flex; }
.widget .menu-item a { padding: 5px 0; color: var(--text-muted); font-size: 13.5px; }
.widget .menu-item a:hover { color: var(--accent-strong); background: transparent; }
@media (hover: none) { .widget .widget-menu { display: flex; } }
.site-info { background: #08090b; border-top: 1px solid var(--border); }
.site-info-inner { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; padding: 18px 0; font-size: 12.5px; color: var(--text-faint); }
.site-info-inner p { margin: 0; }
.age-warning { color: var(--text-muted); }
.proudly-powered a { color: var(--text-faint); }

/* ── Sticky bar — removed (single footbar only: the footer). ── */

/* ── Homepage product layout ─────────────────────────── */
.home-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
}
.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
  position: sticky;
  top: 120px;
}
.sidebar-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 8px;
  padding: 0 10px;
}
.activity-nav, .game-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
}
.activity-item, .game-cat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.cat-icon { width: 16px; height: 16px; flex: 0 0 auto; }
.activity-item:hover, .game-cat:hover { color: var(--accent-strong); background: var(--accent-dim); text-decoration: none; }
.activity-item.active { color: var(--accent-strong); background: var(--accent-dim); font-weight: 700; }
.home-main { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.mobile-nav-games { display: none; }

/* Hero carousel */
.hero-carousel { overflow: hidden; border-radius: var(--radius); }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.promo-card {
  position: relative;
  flex: 0 0 62%;
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
}
.promo-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.promo-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0));
}
.promo-kicker {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.promo-title { margin: 0 0 10px; font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.2; }
.promo-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0d0f;
  font-weight: 700;
  font-size: 13px;
}

/* Game rows — horizontal scrollable lines of slots/games */
.game-row { min-width: 0; }
.game-row-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.game-row-title { margin: 0; font-size: 20px; font-weight: 800; color: var(--text); }
.game-row-all {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.game-row-all:hover { border-color: var(--accent); background: var(--accent-dim); text-decoration: none; }
.game-row-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.game-tile {
  position: relative;
  flex: 0 0 160px;
  scroll-snap-align: start;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: border-color 0.12s ease, transform 0.12s ease;
}
.game-tile:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.game-tile img { width: 100%; height: 100px; object-fit: cover; display: block; }
.game-tile-name {
  display: block; padding: 8px 10px; font-size: 12.5px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-tile-badge {
  position: absolute; top: 6px; left: 6px; z-index: 1;
  background: var(--accent); color: #0b0d0f;
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em; padding: 2px 7px; border-radius: 4px;
}
.game-tile-badge.live { background: var(--red); color: #0b0d0f; }

/* Provider tiles (text) */
.provider-tile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex; align-items: center; justify-content: center;
  min-width: 140px; min-height: 64px; padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  text-decoration: none;
  transition: border-color 0.12s ease, transform 0.12s ease;
}
.provider-tile:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.provider-tile span { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; }

/* Winners — a single horizontal line, no wrap */
.winners-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.winners-all { font-size: 13px; color: var(--accent-strong); white-space: nowrap; }
.winners-track { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.winner-item {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  text-decoration: none; white-space: nowrap;
}
.winner-item:hover { border-color: var(--accent-border); text-decoration: none; }
.winner-thumb { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); flex: 0 0 auto; }
.winner-name { font-size: 13px; font-weight: 600; color: var(--text); }
.winner-nick { font-size: 12px; color: var(--text-faint); }
.winner-amount { font-size: 13px; font-weight: 800; color: var(--accent); }

/* Folded text */
.home-text-fold { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.fold-summary { cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: 15.5px; color: var(--text); list-style: none; }
.fold-summary:hover { color: var(--accent-strong); }
.fold-summary::marker { color: var(--accent); }
.fold-body { padding: 0 18px 18px; color: var(--text-muted); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-inner { flex-wrap: nowrap; gap: 8px; min-height: 56px; padding-top: 8px; padding-bottom: 8px; }
  .site-branding { order: 0; font-size: 17px; gap: 8px; margin-right: auto; }
  .brand-mark { width: 30px; height: 30px; font-size: 15px; border-radius: 7px; }
  /* Mobile header = logo only, no wordmark/site-title text. */
  .site-title { display: none; }
  .nav-cta-group { order: 1; margin-left: 0; gap: 6px; }
  .nav-cta-group .btn { padding: 8px 13px; font-size: 13px; white-space: nowrap; }

  /* collapse nav into a hamburger; header stays one short row (no wrap) */
  .nav-toggle { order: 2; display: flex; margin-left: 0; }
  .main-navigation { order: 10; width: 100%; display: none; }
  .nav-toggle-input:checked ~ .main-navigation { display: block; }
  .menu { flex-direction: column; align-items: stretch; padding: 4px 0 10px; }
  .menu-item a { padding: 10px 12px; }

  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .page-hero { min-height: 0; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-figure img { max-height: 260px; object-fit: cover; }
  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .article-sidebar { position: static; }
  .home-layout { grid-template-columns: 1fr; }
  /* hide the sidebar on mobile — its items move into the burger menu */
  .home-sidebar { display: none; }
  .mobile-nav-games { display: block; padding: 4px 0 14px; }
  .mobile-nav-games .activity-nav, .mobile-nav-games .game-cats { background: transparent; border: none; padding: 4px 0; }
  .promo-card { flex: 0 0 86%; }
  .game-tile { flex: 0 0 120px; }
}

@media (max-width: 480px) {
  .nav-cta-group .btn { padding: 7px 10px; font-size: 12px; }
  .game-tile { flex: 0 0 104px; }
  .game-tile img { height: 82px; }
  .promo-card img { height: 160px; }
}
