:root {
  --bg:       #0f1419;
  --bg-alt:   #161c24;
  --card:     #1c2330;
  --border:   #2a3446;
  --text:     #e7edf5;
  --muted:    #8a96a8;
  --accent:   #c9a43a;      /* or discret */
  --accent-d: #a3861f;
  --accent-l: #e6c663;
  --good:     #3ea374;
  --bad:      #d75a68;
  --mid:      #e0a93a;
  --radius:   14px;
  --max:      1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-l); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; margin-top: 0; color: var(--text); }
h1 { font-size: 2.1em; margin-bottom: 16px; }
h2 { font-size: 1.6em; margin: 32px 0 16px; }
h3 { font-size: 1.2em; margin: 24px 0 10px; }
p  { margin: 0 0 14px; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 20, 25, .96);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(8px);
}
.age-gate[hidden] { display: none; }
.age-gate-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 32px; max-width: 480px;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.age-icon { width: 44px; height: 44px; stroke: var(--accent); margin: 0 auto 16px; }
.age-gate-card h2 { margin: 0 0 12px; color: var(--accent); }
.age-gate-card p { color: var(--muted); font-size: .95em; }
.age-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.btn {
  display: inline-block; padding: 12px 22px;
  border-radius: 10px; font-weight: 600; font-size: .95em;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .15s;
}
.btn-primary { background: var(--accent); color: #0f1419; }
.btn-primary:hover { background: var(--accent-l); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 20px;
  justify-content: space-between;
}
.logo strong {
  font-size: 1.4em; color: var(--text); letter-spacing: -.01em;
}
.logo strong span { color: var(--accent); }
.main-nav { display: flex; gap: 4px; flex: 1; align-items: center; margin: 0; }
.main-nav > a, .nav-parent {
  color: var(--text); font-weight: 500; font-size: .95em;
  padding: 8px 12px; transition: color .15s; display: block;
}
.main-nav > a:hover, .nav-parent:hover { color: var(--accent); text-decoration: none; }
.nav-parent::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--muted);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-parent::after { border-top-color: var(--accent); transform: rotate(180deg); }
.nav-dropdown { position: relative; }
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  z-index: 110;
}
@media (min-width: 721px) { .nav-dropdown:hover .nav-sub { display: block; } }
.nav-sub a {
  display: block;
  padding: 8px 18px;
  color: var(--text);
  font-size: .88em;
  font-weight: 400;
  transition: all .1s;
}
.nav-sub a:hover { background: rgba(201,164,58,.08); color: var(--accent); text-decoration: none; }
.menu-toggle {
  background: none; border: none; color: var(--text); cursor: pointer;
  display: none;
}

/* ===== RESPONSIBLE BAR ===== */
.responsible-bar {
  background: #2a1f0a;
  color: #e0c178;
  padding: 8px 20px;
  text-align: center;
  font-size: .82em;
  border-bottom: 1px solid #3a2d14;
}
.responsible-bar svg {
  width: 14px; height: 14px; display: inline-block; vertical-align: middle;
  margin-right: 6px; stroke: var(--accent);
}
.responsible-bar a { color: var(--accent-l); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 16px 0; font-size: .85em; color: var(--muted); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--border); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== HERO HOME ===== */
.home-hero {
  background: linear-gradient(135deg, #0f1419 0%, #1a2230 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.home-hero h1 {
  font-size: 2.6em; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent-l), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.home-hero .lead { font-size: 1.15em; color: var(--muted); max-width: 640px; margin: 0 auto 32px; }

.hero-search {
  max-width: 520px; margin: 0 auto; position: relative;
}
.hero-search input {
  width: 100%; padding: 16px 20px; font-size: 1em;
  background: var(--card); border: 1px solid var(--border); border-radius: 50px;
  color: var(--text); outline: none;
}
.hero-search input:focus { border-color: var(--accent); }
.hero-search { position: relative; }
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  z-index: 50;
}
.search-results[hidden] { display: none; }
.search-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: rgba(201,164,58,.08); text-decoration: none; }
.search-name { font-weight: 500; }
.search-type { font-size: .78em; color: var(--muted); background: var(--bg); padding: 3px 10px; border-radius: 12px; }

/* ===== SECTIONS ===== */
section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }

.section-title { text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 40px; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .2s;
  display: block;
  color: var(--text);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.card h3 { margin: 12px 0 8px; color: var(--text); }
.card p { color: var(--muted); font-size: .9em; margin: 0; }
.card .icon { width: 28px; height: 28px; stroke: var(--accent); }

/* ===== GAME CARDS ===== */
.game-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all .2s; display: block; color: var(--text);
}
.game-card:hover {
  border-color: var(--accent); transform: translateY(-3px);
  text-decoration: none;
}
.game-card[hidden] { display: none; }
.game-card .game-thumb {
  aspect-ratio: 4 / 3;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.game-card .game-body { padding: 14px 16px; }
.game-card h4 { margin: 0 0 6px; font-size: .95em; color: var(--text); }
.game-card .game-meta { font-size: .78em; color: var(--muted); display: flex; justify-content: space-between; }

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

/* Casino card with logo */
.casino-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: var(--text);
  transition: all .2s;
}
.casino-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.casino-card .casino-logo {
  aspect-ratio: 40 / 22;
  background-size: cover;
  background-position: center;
}
.casino-card .casino-body {
  padding: 16px 20px 20px;
}
.casino-card h3 {
  margin: 0 0 6px;
  font-size: 1.05em;
}
.casino-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85em;
}

/* ===== SLOT HERO (fiche) ===== */
.slot-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}
.slot-hero-img img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.slot-hero-info h1 { margin-bottom: 6px; }
.slot-provider {
  color: var(--muted);
  font-size: .95em;
  margin-bottom: 20px;
}
.slot-provider a { color: var(--accent); }

.slot-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1;
  min-width: 120px;
}
.stat-label {
  font-size: .75em;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-size: 1.4em;
  font-weight: 800;
}
.stat-value.good { color: var(--good); }
.stat-value.mid { color: var(--mid); }
.stat-value.bad { color: var(--bad); }
.stat-sub {
  font-size: .75em;
  color: var(--muted);
  margin-top: 4px;
}

.rtp-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.rtp-fill {
  height: 100%;
  background: var(--good);
  border-radius: 2px;
  transition: width .3s;
}

.vol-dots {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.vol-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.vol-dot.active { background: var(--accent); }

.slot-quick-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .88em;
  color: var(--muted);
}
.slot-quick-info span {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
}

.info-box {
  background: rgba(201,164,58,.08);
  border: 1px solid rgba(201,164,58,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0 24px;
  font-size: .92em;
  line-height: 1.6;
}
.info-box strong { color: var(--accent); }

@media (max-width: 720px) {
  .slot-hero { grid-template-columns: 1fr; gap: 20px; }
  .slot-hero-img img { max-width: 300px; }
  .slot-stats { flex-direction: column; }
  .stat-card { min-width: unset; }
}

/* ===== SLOT CONTENT ===== */
.slot-content h3 { font-size: 1.1em; margin: 24px 0 10px; color: var(--accent-l); }
.slot-content ul, .slot-content ol { padding-left: 20px; margin: 12px 0; }
.slot-content li { margin-bottom: 10px; line-height: 1.6; }
.slot-content p { margin-bottom: 12px; }
.slot-content .info-box { margin: 16px 0; }

/* ===== SPEC TABLE ===== */
.spec-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.spec-table th, .spec-table td {
  padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: .92em; white-space: nowrap;
}
.spec-table td { white-space: normal; min-width: 100px; }
.spec-table th { color: var(--muted); font-weight: 500; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .spec-table th, .spec-table td { padding: 10px 12px; font-size: .84em; }
}

/* ===== BADGES ===== */
.badge {
  display: inline-block; padding: 4px 10px;
  border-radius: 20px; font-size: .78em; font-weight: 600;
  background: var(--bg); color: var(--muted);
}
.badge.good { background: rgba(62,163,116,.15); color: var(--good); }
.badge.mid  { background: rgba(224,169,58,.15); color: var(--mid); }
.badge.bad  { background: rgba(215,90,104,.15); color: var(--bad); }

.vol-low    { color: var(--good); }
.vol-medium { color: var(--mid); }
.vol-high   { color: var(--bad); }
.vol-unknown{ color: var(--muted); }

/* ===== CATALOG LAYOUT ===== */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.catalog-sidebar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.sidebar-toggle { display: none; }
.sidebar-open-btn { display: none; }

.sidebar-search {
  position: relative;
  margin-bottom: 20px;
}
.sidebar-search .filter-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  pointer-events: none;
}
.sidebar-search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .9em;
  outline: none;
}
.sidebar-search input:focus { border-color: var(--accent); }
.sidebar-search input::placeholder { color: var(--muted); }

.filter-group { margin-bottom: 16px; }
.filter-heading {
  font-size: .82em;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin: 0 0 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.filter-heading::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  transition: transform .2s;
}
.filter-heading.collapsed::after { transform: rotate(-90deg); }

.filter-options { display: flex; flex-direction: column; gap: 2px; }
.filter-options.collapsed { display: none; }
.filter-scrollable { max-height: 180px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .1s;
  font-size: .88em;
}
.filter-options label:hover { background: rgba(255,255,255,.04); }

.filter-options input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
.filter-options input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.filter-options input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #0f1419;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cb-label { flex: 1; display: flex; justify-content: space-between; align-items: center; }
.cb-count { font-size: .78em; color: var(--muted); opacity: .6; }

.filter-reset-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: .85em;
  cursor: pointer;
}
.filter-reset-btn:hover { color: var(--accent); border-color: var(--accent); }

/* ===== CATALOG TOOLBAR ===== */
.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.catalog-count { flex: 1; font-size: .9em; color: var(--muted); }
.catalog-sort {
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .85em;
  cursor: pointer;
  outline: none;
}
.catalog-sort:focus { border-color: var(--accent); }

/* ===== ACTIVE TAGS ===== */
.active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.active-tags:empty { margin-bottom: 0; }
.active-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(201,164,58,.12);
  border: 1px solid rgba(201,164,58,.25);
  border-radius: 20px;
  font-size: .8em;
  color: var(--accent-l);
}
.active-tag button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 1.1em;
  line-height: 1;
  padding: 0;
}
.active-tag button:hover { color: var(--bad); }

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1.05em;
}
.no-results button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
}

/* ===== GAME TAGS ===== */
.game-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.game-tags .badge {
  font-size: .72em;
  padding: 3px 8px;
}

/* ===== SIDEBAR RESPONSIVE ===== */
@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 300px;
    max-height: 100vh;
    z-index: 200;
    border-radius: 0;
    transform: translateX(-100%);
    transition: transform .25s ease;
    padding-top: 56px;
  }
  .catalog-sidebar.open { transform: translateX(0); }
  .sidebar-toggle {
    display: block;
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1;
  }
  .sidebar-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: .85em;
    cursor: pointer;
  }
  .sidebar-open-btn svg { width: 16px; height: 16px; }
}

/* ===== HUB GRID (editeurs, themes, mecaniques) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.hub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: block;
  color: var(--text);
  transition: all .2s;
}
.hub-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hub-card h3 { margin: 0 0 8px; font-size: 1.05em; }
.hub-meta {
  display: flex;
  gap: 12px;
  font-size: .82em;
  color: var(--accent);
  margin-bottom: 6px;
}
.hub-sub {
  font-size: .82em;
  color: var(--muted);
  line-height: 1.4;
}

/* ===== MINI FILTERS (sub-pages) ===== */
.mini-filters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.mini-filters-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.mini-search {
  flex: 1;
  position: relative;
}
.mini-search .filter-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--muted);
  pointer-events: none;
}
.mini-search input {
  width: 100%;
  padding: 9px 12px 9px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .9em;
  outline: none;
}
.mini-search input:focus { border-color: var(--accent); }
.mini-search input::placeholder { color: var(--muted); }

.vol-toggles {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.vol-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: .82em;
  transition: all .15s;
}
.vol-chip:has(input:checked) {
  border-color: var(--accent);
  background: rgba(201,164,58,.08);
}
.vol-chip input { display: none; }
.mini-count {
  margin-top: 10px;
  font-size: .82em;
  color: var(--muted);
}

@media (max-width: 520px) {
  .mini-filters-row { flex-wrap: wrap; }
  .vol-toggles { gap: 6px; }
}

/* ===== COMPARATOR ===== */
.compare-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.ac-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.ac-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: .95em;
  outline: none;
}
.ac-input:focus { border-color: var(--accent); }
.ac-input::placeholder { color: var(--muted); }
.ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 4px;
  z-index: 50;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.ac-list[hidden] { display: none; }
.ac-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: .92em;
  border-bottom: 1px solid var(--border);
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.active { background: rgba(201,164,58,.1); color: var(--accent-l); }
.ac-item strong { color: var(--accent); }
.vs-badge {
  font-weight: 900;
  font-size: 1.2em;
  color: var(--accent);
  padding: 0 8px;
}
@media (max-width: 600px) {
  .compare-selector select { min-width: 100%; }
  .compare-selector { justify-content: center; }
}

/* ===== PROS/CONS ===== */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ===== SUB NAV ===== */
.sub-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sub-nav a {
  padding: 7px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  font-size: .84em;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
}
.sub-nav a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ===== SEO INTRO ===== */
.seo-intro { margin-bottom: 28px; line-height: 1.75; font-size: .97em; }
.seo-intro p { margin-bottom: 12px; }
.seo-intro a { text-decoration: underline; text-underline-offset: 2px; }

/* ===== RELATED ===== */
.related-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.3em; margin-bottom: 16px; }

/* ===== FAQ ===== */
.faq-section h2 { margin-bottom: 16px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3em;
  color: var(--accent);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 20px 16px;
  line-height: 1.65;
  color: var(--muted);
}
.faq-answer a { color: var(--accent); }

/* ===== GUIDE CONTENT ===== */
.guide-content h2 { margin-top: 40px; }
.guide-content h3 { color: var(--accent-l); }
.guide-content ul, .guide-content ol { padding-left: 20px; margin: 12px 0 20px; }
.guide-content li { margin-bottom: 10px; line-height: 1.65; }
.guide-content p { line-height: 1.7; }
.guide-content .info-box { margin: 20px 0; }
.guide-content .spec-table { margin: 16px 0 24px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0d12;
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: 80px;
  font-size: .9em;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 0 20px;
}
.footer-col strong { color: var(--text); display: block; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); font-size: .9em; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--muted); font-size: .85em; }
.footer-warn { color: var(--accent) !important; margin-top: 12px; font-size: .8em !important; }

.footer-bottom {
  margin-top: 40px; padding: 20px 0;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: .82em; text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 1.7em; }
  h2 { font-size: 1.35em; }
  .home-hero { padding: 56px 20px 40px; }
  .home-hero h1 { font-size: 2em; }
}

@media (max-width: 720px) {
  .header-inner { position: relative; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    flex-direction: column;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 0;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav > a,
  .main-nav .nav-parent {
    padding: 14px 20px !important;
    font-size: 1em;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown { position: static; }
  .nav-sub {
    position: static !important;
    display: none !important;
    background: var(--bg) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    min-width: 0 !important;
  }
  .nav-dropdown.open > .nav-sub { display: block !important; }
  .nav-sub a {
    padding: 12px 20px 12px 40px !important;
    font-size: .9em;
    border-bottom: 1px solid var(--border);
  }
  .nav-parent::after { float: right; margin-top: 6px; }
  .nav-dropdown.open > .nav-parent::after { transform: rotate(180deg); }
  section { padding: 40px 0; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: 1.6em; }
  .home-hero .lead { font-size: 1em; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .slot-stats { flex-direction: column; }
  .stat-card { min-width: unset; }
  .card-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .compare-selector { flex-direction: column; }
  .sub-nav { gap: 6px; }
  .sub-nav a { font-size: .78em; padding: 6px 10px; }
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .slot-hero { grid-template-columns: 1fr !important; }
}
