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

:root {
  --ink: #1a1a18;
  --ink-mid: #4a4a46;
  --ink-light: #8a8a84;
  --bg: #f5f0e8;
  --bg-card: #fffdf8;
  --bg-alt: #ede8dc;
  --bg-warm: #faf5ec;
  --accent: #2d5a3d;
  --accent-hover: #234830;
  --accent-light: #e2ede6;
  --accent-warm: #c8541a;
  --accent-warm-hover: #a8431a;
  --accent-yellow: #f5c842;
  --border: #d8d2c4;
  --border-light: #e5dfd4;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.07);
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,90,61,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,84,26,0.04) 0%, transparent 50%);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ── HEADER ── */
.site-header {
  background: rgba(45,90,61,0.97);
  border-bottom: 3px solid rgba(245,200,66,0.4);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.3px;
}
.logo-icon { font-size: 26px; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px; border-radius: 8px;
  transition: all 0.15s;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav-cta {
  background: var(--accent-yellow) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  border-radius: 8px;
}
.nav-cta:hover { background: #f0bc30 !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 80px 0 0;
  background: linear-gradient(160deg, #1e3d2a 0%, #2d5a3d 60%, #3a7050 100%);
  border-bottom: none;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(245,200,66,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,200,66,0.2); color: var(--accent-yellow);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
  border: 1px solid rgba(245,200,66,0.3);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.08;
  color: #fff; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero h1 em { color: var(--accent-yellow); font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--accent-yellow); color: var(--ink);
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
  transition: all 0.15s; box-shadow: 0 4px 16px rgba(245,200,66,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #f0bc30; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,66,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.15s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.15); }
.hstat { padding: 24px 32px 24px 0; display: flex; flex-direction: column; gap: 2px; }
.hstat + .hstat { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.15); }
.hstat-n { font-family: 'Fraunces', serif; font-size: 34px; font-weight: 700; color: var(--accent-yellow); line-height: 1; }
.hstat-l { font-size: 13px; color: rgba(255,255,255,0.6); }

.hero-visual { position: relative; padding-bottom: 40px; }
.hero-board {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 28px; min-height: 360px;
  display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(8px);
}
.hero-board-title { font-family: 'Fraunces', serif; color: var(--accent-yellow); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.hero-card-row { display: flex; gap: 12px; }
.hero-game-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 16px; flex: 1;
  transition: transform 0.2s, background 0.2s;
}
.hero-game-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.16); }
.hgc-emoji { font-size: 28px; margin-bottom: 8px; }
.hgc-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hgc-tag { font-size: 11px; color: rgba(255,255,255,0.55); }
.hgc-note { font-size: 12px; color: var(--accent-yellow); margin-top: 6px; }
.hero-badge {
  position: absolute; bottom: 60px; right: -10px;
  background: var(--bg-card); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
}
.hero-badge-icon { font-size: 24px; }
.hero-badge-text strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.hero-badge-text span { color: var(--ink-light); font-size: 12px; }

/* ── SECTION COMMUNE ── */
.section-categories { padding: 72px 0; background: var(--bg-warm); }
.section-featured { padding: 72px 0; background: var(--bg); }
.section-guides { padding: 72px 0; background: var(--bg-alt); }
.section-newsletter { padding: 72px 0; background: var(--bg-warm); }

.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.section-title { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.section-link { font-size: 14px; color: var(--accent); font-weight: 600; }

/* ── CAT GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.2s; text-align: center;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-icon { font-size: 32px; }
.cat-card h3 { font-size: 14px; font-weight: 700; color: var(--ink); }
.cat-card p { font-size: 12px; color: var(--ink-light); line-height: 1.4; }
.cat-count { font-size: 11px; font-weight: 700; color: var(--accent); background: var(--accent-light); padding: 3px 10px; border-radius: 20px; align-self: center; }

/* ── JEU CARDS ── */
.jeux-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.jeu-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.jeu-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.jeu-card-visual {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.jeu-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.jeu-meta { display: flex; justify-content: space-between; align-items: center; }
.jeu-note { font-size: 13px; font-weight: 700; color: var(--accent-warm); }
.jeu-card h3 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 700; line-height: 1.2; }
.jeu-card h3 a { color: var(--ink); }
.jeu-card h3 a:hover { color: var(--accent); }
.jeu-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.55; flex: 1; }
.jeu-infos { display: flex; gap: 8px; flex-wrap: wrap; }
.jeu-info-pill { font-size: 12px; color: var(--ink-mid); background: var(--bg-alt); padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border); }
.jeu-actions { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border-light); }
.link-fiche { font-size: 13px; font-weight: 700; color: var(--accent); }
.link-acheter { font-size: 12px; font-weight: 700; color: #fff; background: var(--accent-warm); padding: 6px 14px; border-radius: 6px; transition: background 0.15s; }
.link-acheter:hover { background: var(--accent-warm-hover); }

/* ── TAGS ── */
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.tag-strat { background: #dbeafb; color: #1050a0; }
.tag-fam { background: #d4f0e4; color: #0d5e42; }
.tag-coop { background: #e8e6fd; color: #3828a0; }
.tag-party { background: #fde8d0; color: #7a3d08; }
.tag-deck { background: #fde0ec; color: #8c2040; }
.tag-2j { background: #ece0fd; color: #5c1888; }
.tag-abs { background: #dff0d8; color: #286018; }

/* ── GUIDES ── */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.guide-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.guide-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-3px); }
.guide-card-visual { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.guide-card-body { padding: 20px; }
.guide-tag { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 8px; }
.guide-card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.guide-card p { font-size: 13px; color: var(--ink-mid); line-height: 1.5; margin-bottom: 14px; }
.guide-link { font-size: 13px; font-weight: 700; color: var(--accent); }

/* ── NEWSLETTER ── */
.newsletter-box {
  background: linear-gradient(135deg, #1e3d2a 0%, #2d5a3d 100%);
  border-radius: var(--radius-xl); padding: 56px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border: 2px solid rgba(245,200,66,0.2);
  box-shadow: var(--shadow-lg);
}
.newsletter-left h2 { font-family: 'Fraunces', serif; font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.newsletter-left p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.newsletter-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.nf-item { display: flex; align-items: center; gap: 12px; }
.nf-icon { font-size: 18px; }
.nf-text { font-size: 14px; color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input { padding: 14px 16px; border-radius: var(--radius); border: none; font-size: 15px; color: var(--ink); background: rgba(255,255,255,0.95); }
.newsletter-form button { padding: 14px 22px; background: var(--accent-yellow); color: var(--ink); border: none; border-radius: var(--radius); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.15s; }
.newsletter-form button:hover { background: #f0bc30; transform: translateY(-1px); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; }

/* ── FOOTER ── */
.site-footer { background: #111810; color: #aaa; padding: 56px 0 28px; border-top: 3px solid rgba(245,200,66,0.2); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: #777; max-width: 220px; }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-yellow); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 13px; color: #777; transition: color 0.15s; }
.site-footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #222; padding-top: 24px; }
.footer-copy { font-size: 12px; color: #555; }
.footer-badges { display: flex; gap: 12px; }
.footer-badge { font-size: 11px; color: #555; padding: 4px 10px; border: 1px solid #333; border-radius: 6px; }

/* ── JEUX INDEX ── */
.jeux-page-hero { background: linear-gradient(135deg, #1e3d2a, #2d5a3d); padding: 48px 0 0; border-bottom: none; }
.jeux-page-hero h1 { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; color: #fff; }
.jeux-page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }

/* ── FILTERS ── */
.filters-bar { background: var(--bg-card); border-bottom: 2px solid var(--border); padding: 16px 0; position: sticky; top: 64px; z-index: 90; box-shadow: var(--shadow-sm); }
.filters-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-group { display: flex; align-items: center; gap: 6px; }
.filter-label { font-size: 11px; font-weight: 700; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.filter-select {
  padding: 7px 28px 7px 10px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 13px; color: var(--ink); background: var(--bg-card); cursor: pointer;
  font-family: 'Inter', sans-serif; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a84' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
  transition: border-color 0.15s;
}
.filter-select:focus { outline: none; border-color: var(--accent); }
.filter-divider { width: 1px; height: 24px; background: var(--border); }
.filter-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tag {
  padding: 6px 14px; border: 2px solid var(--border); border-radius: 20px;
  font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.15s;
  color: var(--ink-mid); background: transparent;
}
.filter-tag:hover { border-color: var(--accent); color: var(--accent); }
.filter-tag.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.filters-reset { font-size: 12px; color: var(--ink-light); cursor: pointer; padding: 6px 12px; border-radius: 6px; border: none; background: transparent; font-family: 'Inter', sans-serif; transition: color 0.15s; }
.filters-reset:hover { color: var(--accent-warm); }
.results-count { font-size: 13px; color: var(--ink-light); margin-left: auto; white-space: nowrap; font-weight: 600; }

/* ── FICHE JEU ── */
.fiche-hero { background: var(--bg-card); border-bottom: 2px solid var(--border); padding: 48px 0 40px; }
.fiche-breadcrumb { font-size: 13px; color: var(--ink-light); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.fiche-breadcrumb a { color: var(--accent); font-weight: 600; }
.fiche-header { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.fiche-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.fiche-title { font-family: 'Fraunces', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
.fiche-tagline { font-size: 17px; color: var(--ink-mid); margin-bottom: 28px; line-height: 1.5; }
.fiche-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-item { background: var(--bg-alt); padding: 14px 16px; text-align: center; }
.spec-label { font-size: 11px; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 4px; font-weight: 700; }
.spec-val { font-size: 15px; font-weight: 700; color: var(--ink); }
.fiche-note-box { background: var(--accent-light); border: 3px solid var(--accent); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; min-width: 160px; }
.note-num { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 700; color: var(--accent); line-height: 1; display: block; }
.note-label { font-size: 12px; color: var(--ink-mid); margin-top: 6px; display: block; font-weight: 600; }
.note-stars { font-size: 20px; color: var(--accent-warm); margin-top: 8px; }
.fiche-visual-banner { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); margin-bottom: 32px; font-size: 80px; overflow: hidden; border: 2px solid var(--border); }
.fiche-content { padding: 56px 0; background: var(--bg-warm); }
.fiche-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.fiche-body h2 { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; margin: 40px 0 14px; color: var(--ink); letter-spacing: -0.3px; }
.fiche-body h2:first-child { margin-top: 0; }
.fiche-body p { font-size: 15px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 14px; }
.fiche-body strong { color: var(--ink); font-weight: 700; }
.fiche-sidebar { display: flex; flex-direction: column; gap: 14px; }
.sidebar-box { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); }
.sidebar-box h3 { font-size: 11px; font-weight: 700; color: var(--ink-light); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-buy { background: var(--accent); color: #fff; display: block; text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 700; font-size: 14px; margin-bottom: 8px; transition: background 0.15s; }
.sidebar-buy:hover { background: var(--accent-hover); }
.sidebar-buy-alt { display: block; text-align: center; padding: 10px; border-radius: var(--radius); font-weight: 700; font-size: 13px; margin-bottom: 8px; transition: all 0.15s; }
.affil-note { font-size: 11px; color: var(--ink-light); text-align: center; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.pros { padding: 16px; border-radius: var(--radius); background: #edf7ed; border: 2px solid #b8dfb8; }
.cons { padding: 16px; border-radius: var(--radius); background: #fdf3f3; border: 2px solid #f0c0c0; }
.pros h4 { font-size: 13px; font-weight: 700; color: #1e6a1e; margin-bottom: 10px; }
.cons h4 { font-size: 13px; font-weight: 700; color: #a02020; margin-bottom: 10px; }
.pros ul, .cons ul { margin-left: 16px; }
.pros ul li { font-size: 13px; color: #1e5a1e; margin-bottom: 5px; }
.cons ul li { font-size: 13px; color: #801818; margin-bottom: 5px; }
.info-table tr { border-top: 1px solid var(--border-light); }
.info-table tr:first-child { border-top: none; }
.info-table td { padding: 8px 0; font-size: 13px; }
.info-table td:first-child { color: var(--ink-light); font-weight: 600; }
.info-table td:last-child { font-weight: 700; text-align: right; color: var(--ink); }

/* ── GUIDE ── */
.guide-hero { background: var(--bg-card); border-bottom: 2px solid var(--border); padding: 56px 0; }
.guide-body h1 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; }
.guide-body .intro { font-size: 18px; color: var(--ink-mid); line-height: 1.7; }
.guide-meta-bar { display: flex; gap: 20px; align-items: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.guide-meta-item { font-size: 13px; color: var(--ink-light); font-weight: 600; }
.guide-content { padding: 56px 0; background: var(--bg-warm); }
.guide-content-inner { display: grid; grid-template-columns: 1fr 260px; gap: 56px; }
.guide-article h2 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; margin: 40px 0 16px; letter-spacing: -0.4px; }
.guide-article h2:first-child { margin-top: 0; }
.guide-article p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px; }
.guide-article ul { margin: 12px 0 16px 22px; }
.guide-article ul li { font-size: 15px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 8px; }
.guide-article strong { color: var(--ink); font-weight: 700; }
.guide-jeu-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--bg-alt); border-radius: var(--radius); margin: 20px 0; border: 2px solid var(--border); }
.guide-jeu-emoji { font-size: 40px; flex-shrink: 0; }
.guide-jeu-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.guide-jeu-info p { font-size: 13px; color: var(--ink-mid); margin: 0; line-height: 1.5; }
.guide-jeu-info a { color: var(--accent); font-weight: 700; font-size: 13px; margin-top: 6px; display: inline-block; }
.guide-toc { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 80px; }
.guide-toc h3 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-light); margin-bottom: 14px; }
.guide-toc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.guide-toc ul li a { font-size: 13px; color: var(--ink-mid); transition: color 0.15s; display: block; padding: 2px 0 2px 10px; border-left: 2px solid transparent; font-weight: 500; }
.guide-toc ul li a:hover { color: var(--accent); border-left-color: var(--accent); }

/* ── COMPARATIF ── */
.comp-hero { background: linear-gradient(135deg, #1e3d2a, #2d5a3d); border-bottom: none; padding: 48px 0 36px; }
.comp-hero h1 { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; color: #fff; }
.comp-hero p { font-size: 17px; color: rgba(255,255,255,0.7); }
.comp-content { padding: 48px 0; background: var(--bg-warm); }
.comp-section { margin-bottom: 56px; }
.comp-section-title { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.4px; }
.comp-section-sub { font-size: 14px; color: var(--ink-light); margin-bottom: 24px; font-weight: 600; }
.comp-table-wrap { border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table thead tr { background: var(--bg-alt); }
.comp-table th { padding: 12px 16px; text-align: left; font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mid); border-bottom: 2px solid var(--border); }
.comp-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); color: var(--ink); vertical-align: middle; background: var(--bg-card); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--bg-alt); }
.comp-table .game-name { font-weight: 700; display: flex; align-items: center; gap: 10px; }
.comp-table .game-emoji { font-size: 22px; }
.comp-note { font-weight: 700; color: var(--accent-warm); font-size: 15px; }
.comp-best { background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.comp-link { color: var(--accent); font-weight: 700; font-size: 13px; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 80px 24px; }
.empty-state-icon { font-size: 56px; margin-bottom: 16px; }
.empty-state h3 { font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 8px; font-weight: 700; }
.empty-state p { color: var(--ink-mid); font-size: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fiche-header { grid-template-columns: 1fr; }
  .fiche-grid { grid-template-columns: 1fr; }
  .guide-content-inner { grid-template-columns: 1fr; }
  .guide-toc { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 32px; }
  .fiche-specs { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  nav a:not(.nav-cta) { display: none; }
}

/* ── SEARCH BAR ── */
.search-bar-wrap {
  position: relative;
  max-width: 520px;
  margin-top: 24px;
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 13px 44px 13px 44px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.search-input:focus {
  outline: 2px solid var(--accent-yellow);
}
.search-input::placeholder {
  color: var(--ink-light);
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-alt);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 11px;
  color: var(--ink-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-clear:hover { background: var(--border); }

/* ── HEADER NAV SEARCH ── */
.nav-search-form {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.nav-search-icon {
  position: absolute;
  left: 11px;
  font-size: 12px;
  pointer-events: none;
  opacity: 0.65;
}
.nav-search-input {
  width: 150px;
  padding: 7px 10px 7px 30px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: width 0.2s ease, background 0.2s ease;
}
.nav-search-input::placeholder { color: rgba(255,255,255,0.55); }
.nav-search-input:focus {
  width: 210px;
  background: rgba(255,255,255,0.16);
  outline: none;
  border-color: var(--accent-yellow);
}
@media (max-width: 860px) {
  .nav-search-form { display: none; }
}

/* ── BUY BUTTON GROUP (jeux index cards) ── */
.jeu-buy-group {
  display: flex;
  gap: 6px;
}
.link-acheter {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.link-acheter-phil {
  background: var(--accent);
  color: #fff;
}
.link-acheter-phil:hover { background: var(--accent-hover); }
.link-acheter-amz {
  background: #FF9900;
  color: #111;
}
.link-acheter-amz:hover { background: #e88a00; }

@media (max-width: 600px) {
  .jeu-actions { flex-wrap: wrap; gap: 8px; }
  .jeu-buy-group { width: 100%; }
  .link-acheter { flex: 1; text-align: center; }
}

/* ── EXTENSIONS BOX (fiche jeu) ── */
.extensions-box {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 24px 0;
}
.extensions-box h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.extension-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
}
.extension-item:first-of-type { border-top: none; padding-top: 0; }
.extension-emoji { font-size: 22px; flex-shrink: 0; }
.extension-info { flex: 1; }
.extension-info a { font-size: 14px; font-weight: 700; color: var(--ink); }
.extension-info a:hover { color: var(--accent); }
.extension-info p { font-size: 12px; color: var(--ink-light); margin-top: 2px; }

/* ── SIMILAR GAMES (sidebar) ── */
.similar-games { display: flex; flex-direction: column; gap: 10px; }
.similar-game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.similar-game-item:hover { background: var(--bg-alt); }
.similar-game-emoji {
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}
.similar-game-info a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}
.similar-game-info a:hover { color: var(--accent); }
.similar-game-info span {
  font-size: 11px;
  color: var(--ink-light);
}

/* ── COMPARATIF — SECTIONS REPLIABLES ── */
.comp-section {
  margin-bottom: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.comp-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.comp-section-toggle:hover { background: var(--bg-alt); }
.comp-toggle-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}
.comp-toggle-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.comp-section-toggle[aria-expanded="true"] .comp-toggle-count {
  background: var(--accent-light);
  color: var(--accent);
}
.comp-toggle-icon {
  font-size: 14px;
  color: var(--ink-light);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.comp-section-toggle[aria-expanded="true"] .comp-toggle-icon {
  transform: rotate(180deg);
}
.comp-section-body {
  padding: 0 24px 24px;
  max-height: 6000px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
}
.comp-section-body.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.comp-section-sub {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .comp-section-toggle { padding: 16px 18px; gap: 8px; }
  .comp-toggle-title { font-size: 16px; }
  .comp-toggle-count { font-size: 11px; padding: 3px 9px; }
  .comp-section-body { padding: 0 18px 18px; }
}
