/* ============================================================
   WideBase — Feuille de style
   Direction : fond blanc, texte noir, accents bleu clair,
   minimaliste, moderne, lisible, premium léger.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-blue: #eaf3fb;
  --ink: #10151b;
  --ink-soft: #4a5560;
  --ink-faint: #7e8a96;
  --accent: #2f8fe0;
  --accent-strong: #1d76c4;
  --accent-soft: #d8eafb;
  --line: #e4eaf0;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(16, 40, 64, .05), 0 6px 20px rgba(16, 40, 64, .06);
  --shadow-hover: 0 2px 4px rgba(16, 40, 64, .07), 0 12px 32px rgba(16, 40, 64, .11);

  /* Couleurs des classements */
  --rk-excellent-bg: #e3f4ea; --rk-excellent-ink: #147a43;
  --rk-tres_bon-bg:  #ddeefc; --rk-tres_bon-ink:  #1d6fb8;
  --rk-bon-bg:       #e6f2f5; --rk-bon-ink:       #21798a;
  --rk-moyen-bg:     #fdf1dc; --rk-moyen-ink:     #a06a10;
  --rk-a_eviter-bg:  #fce7e5; --rk-a_eviter-ink:  #bb3a30;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 19px;
  border-radius: 5px;
  background: linear-gradient(120deg, var(--accent), #6db7ee);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand span.base { color: var(--accent-strong); }

.main-nav { display: flex; gap: 6px; }

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { background: var(--bg-soft); text-decoration: none; color: var(--ink); }
.main-nav a.active { background: var(--accent-soft); color: var(--accent-strong); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 420px at 85% -80px, var(--bg-blue), transparent 65%),
    radial-gradient(700px 300px at 5% -60px, #f2f8fd, transparent 60%);
  padding: 72px 0 56px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  letter-spacing: -.03em;
  line-height: 1.12;
}

.hero h1 .base { color: var(--accent-strong); }

.hero .tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 14px;
}

.hero .sub {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.format-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- Recherche ---------- */
.search-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 15px 20px 15px 48px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  box-shadow: var(--shadow);
  transition: border-color .15s, box-shadow .15s;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.search-wrap .icon {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  pointer-events: none;
  display: flex;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  text-align: left;
  z-index: 30;
  display: none;
}
.search-results.open { display: block; }

.search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.search-results a:last-child { border-bottom: none; }
.search-results a:hover { background: var(--bg-soft); text-decoration: none; }
.search-results .empty {
  padding: 13px 16px;
  color: var(--ink-faint);
  font-size: .92rem;
}

/* ---------- Sections ---------- */
.section { padding: 52px 0; }
.section.alt { background: var(--bg-soft); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.section-head .link-all { font-weight: 600; font-size: .95rem; white-space: nowrap; }

/* ---------- Cartes de jeux ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.game-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}

.game-card .thumb {
  aspect-ratio: 460 / 215;
  background: linear-gradient(120deg, #dfedf9, #eef5fb);
  position: relative;
  overflow: hidden;
}
.game-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: var(--accent-strong);
  background: linear-gradient(120deg, #dcecfa, #eef6fc);
  text-align: center;
  padding: 0 16px;
}

.game-card .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
}

.game-card .name {
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.3;
}

/* ---------- Badges de classement ---------- */
.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .01em;
}
.badge.rk-excellent { background: var(--rk-excellent-bg); color: var(--rk-excellent-ink); }
.badge.rk-tres_bon  { background: var(--rk-tres_bon-bg);  color: var(--rk-tres_bon-ink); }
.badge.rk-bon       { background: var(--rk-bon-bg);       color: var(--rk-bon-ink); }
.badge.rk-moyen     { background: var(--rk-moyen-bg);     color: var(--rk-moyen-ink); }
.badge.rk-a_eviter  { background: var(--rk-a_eviter-bg);  color: var(--rk-a_eviter-ink); }

.badge.lg { font-size: .9rem; padding: 6px 15px; }

/* ---------- Étapes (homepage) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.step .step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 13px;
}

.step h3 { margin: 0 0 6px; font-size: 1.02rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .93rem; }

/* ---------- Bandeau CTA ---------- */
.cta-band {
  text-align: center;
  padding: 54px 0;
  background: linear-gradient(120deg, #eef6fd, #e6f0fa);
}
.cta-band h2 { margin: 0 0 8px; font-size: 1.4rem; letter-spacing: -.02em; }
.cta-band p { margin: 0 0 22px; color: var(--ink-soft); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--accent-strong); text-decoration: none; transform: translateY(-1px); }

.btn.ghost {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid var(--line);
}
.btn.ghost:hover { background: var(--bg-soft); }

/* ---------- Page catalogue ---------- */
.page-head { padding: 46px 0 8px; }
.page-head h1 { margin: 0 0 8px; font-size: 2rem; letter-spacing: -.02em; }
.page-head p { margin: 0; color: var(--ink-soft); max-width: 640px; }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 22px 0 8px;
}

.toolbar .search-wrap { flex: 1 1 250px; max-width: 340px; margin: 0; }
.toolbar .search-input { padding: 11px 16px 11px 44px; font-size: .95rem; box-shadow: none; }

.filter-group, .sort-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.group-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 2px;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .13s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-strong); }
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.sort-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sort-chip .arrow { font-size: .78rem; line-height: 1; }

.genre-select {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  padding: 7px 32px 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a5560' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  transition: border-color .13s;
}
.genre-select:hover, .genre-select:focus { border-color: var(--accent); color: var(--accent-strong); outline: none; }

.load-more-wrap {
  text-align: center;
  padding: 8px 0 60px;
}

.result-count {
  color: var(--ink-faint);
  font-size: .9rem;
  padding: 10px 0 18px;
}

.catalog-grid { padding-bottom: 64px; }

.no-results {
  text-align: center;
  color: var(--ink-faint);
  padding: 60px 0;
}

/* ---------- Fiche jeu ---------- */
.game-hero {
  background: linear-gradient(180deg, var(--bg-blue), transparent);
  padding: 40px 0 0;
}

.breadcrumb {
  font-size: .88rem;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--accent-strong); }

.game-layout {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
}

.game-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(120deg, #dfedf9, #eef5fb);
  aspect-ratio: 460 / 215;
  position: relative;
}
.game-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.game-info h1 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.game-meta {
  color: var(--ink-faint);
  font-size: .92rem;
  margin-bottom: 16px;
}
.game-meta span + span::before { content: "·"; margin: 0 8px; }

.game-summary { color: var(--ink-soft); max-width: 640px; }

/* Tableau d'évaluation */
.eval-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 26px 0 0;
}

.eval-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.eval-row:last-child { border-bottom: none; }

.eval-row .label { font-weight: 600; font-size: .95rem; }
.eval-row .hint { display: block; font-weight: 400; font-size: .82rem; color: var(--ink-faint); }

.status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
}
.status.ok      { background: var(--rk-excellent-bg); color: var(--rk-excellent-ink); }
.status.ok-mod  { background: var(--rk-tres_bon-bg);  color: var(--rk-tres_bon-ink); }
.status.mid     { background: var(--rk-moyen-bg);     color: var(--rk-moyen-ink); }
.status.bad     { background: var(--rk-a_eviter-bg);  color: var(--rk-a_eviter-ink); }
.status.unknown { background: var(--bg-soft);         color: var(--ink-faint); }

.mod-note {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-blue);
  color: var(--ink-soft);
  font-size: .9rem;
}
.mod-note strong { color: var(--ink); }

.fiche-not-found { text-align: center; padding: 90px 0; }

/* ---------- Contenu enrichi de la fiche ---------- */
.game-info .game-h2 {
  font-size: 1.18rem;
  letter-spacing: -.01em;
  margin: 30px 0 8px;
}
.game-info p { color: var(--ink-soft); max-width: 640px; }

.sources-block { margin-top: 30px; }
.sources-intro { margin-bottom: 6px; font-size: .93rem; }
.sources-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: .93rem;
}
.sources-list li { margin-bottom: 3px; }

.related {
  border-top: 1px solid var(--line);
  padding: 34px 0 56px;
}
.related h2 { margin: 0 0 18px; font-size: 1.25rem; letter-spacing: -.02em; }

.rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.rel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .13s, box-shadow .13s;
}
.rel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); text-decoration: none; }
.rel-name { font-weight: 600; font-size: .94rem; line-height: 1.3; }

.rel-all { margin: 18px 0 0; font-size: .93rem; }

/* ---------- Page méthode ---------- */
.method-content { max-width: 780px; padding-bottom: 70px; }
.method-content h2 {
  font-size: 1.3rem;
  letter-spacing: -.01em;
  margin: 44px 0 10px;
  padding-top: 8px;
}
.method-content h2:first-of-type { margin-top: 26px; }
.method-content p { color: var(--ink-soft); }

.def-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .94rem;
}
.def-table { border-style: hidden; box-shadow: 0 0 0 1px var(--line), var(--shadow); border-radius: var(--radius); }
.def-table th, .def-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.def-table tr:last-child td { border-bottom: none; }
.def-table th { width: 250px; background: var(--bg-soft); font-weight: 600; white-space: nowrap; }
.def-table td { color: var(--ink-soft); }

.callout {
  margin: 18px 0;
  padding: 15px 18px;
  border-left: 3px solid var(--accent);
  background: var(--bg-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  font-size: .95rem;
}
.callout strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--ink-faint);
  font-size: .88rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: var(--ink-faint); }
.site-footer a:hover { color: var(--accent-strong); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .game-layout { grid-template-columns: 1fr; gap: 26px; }
  .hero { padding: 52px 0 44px; }
  .main-nav a { padding: 8px 10px; font-size: .9rem; }
  .def-table th { width: auto; white-space: normal; }
}

/* ---------- Deux formats : panneaux d'évaluation ---------- */
.eval-panel + .eval-panel { margin-top: 16px; }

.eval-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  background: var(--bg-blue);
  border-bottom: 1px solid var(--line);
}

.fmt-label { font-size: .95rem; color: var(--ink-soft); }
.fmt-label strong { color: var(--ink); font-size: 1.05rem; }
.fmt-res {
  display: block;
  font-size: .78rem;
  color: var(--ink-faint);
  letter-spacing: .02em;
}

.verdict-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

/* Sélecteur de format du catalogue */
.format-switch {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.format-switch button {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .13s;
}
.format-switch button:hover { color: var(--accent-strong); }
.format-switch button.active {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.format-note {
  font-size: .88rem;
  color: var(--ink-faint);
  padding-top: 6px;
}

/* ---------- Films ---------- */
.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding-bottom: 64px;
}

.film-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.film-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); text-decoration: none; }

.film-visual {
  position: relative;
  width: 100%;
  background: #10151b;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.film-img {
  display: block;
  height: 100%;
  background: linear-gradient(120deg, #2f8fe0, #6db7ee);
}
.film-pct {
  position: absolute;
  right: 8px; bottom: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  padding: 2px 7px;
  border-radius: 999px;
}

.film-body { padding: 12px 15px 14px; }
.film-title { font-weight: 600; font-size: .97rem; line-height: 1.3; }
.film-year { color: var(--ink-faint); font-weight: 400; font-size: .88rem; }
.film-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
}

.ratio-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
}
.ratio-chip.sm { font-size: .76rem; padding: 3px 9px; }

/* Schéma de la fiche film */
.diagram-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.diagram-title { font-weight: 600; margin-bottom: 16px; }
.diagram { margin-bottom: 18px; }
.diagram-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.diagram-cap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 7px;
  font-size: .88rem;
  color: var(--ink-soft);
}
.diagram-cap span { margin-left: auto; color: var(--ink-faint); font-size: .84rem; }
.diagram-legend {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* ---------- Accueil : encart Films ---------- */
.films-teaser {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 40px;
  align-items: center;
}
.teaser-text p { color: var(--ink-soft); margin: 0 0 12px; }
.teaser-text p:last-of-type { margin-bottom: 0; }
.teaser-cta { margin-top: 20px !important; }

.tv-row { margin-bottom: 16px; }
.tv-svg { width: 100%; height: auto; display: block; border-radius: 5px; }
.tv-cap {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 6px;
  font-size: .86rem;
  color: var(--ink-soft);
}
.tv-cap span { margin-left: auto; color: var(--ink-faint); font-weight: 600; }

/* Sous-titres de la page méthode */
.m-sub {
  font-size: 1.05rem;
  margin: 30px 0 8px;
  letter-spacing: -.01em;
}

@media (max-width: 820px) {
  .films-teaser { grid-template-columns: 1fr; gap: 26px; }
}

.res-kind {
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-faint);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1px 7px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Logo : cadre large + image intérieure (évoque le rapport d'image) */
.brand-mark svg { width: 30px; height: 19px; display: block; }
.brand-mark svg rect { fill: none; stroke: #fff; stroke-width: 2; }
.brand-mark svg rect.inner { fill: rgba(255,255,255,.55); stroke: none; }

/* Résumé du jeu (ce qu'est le jeu, avant le verdict ultrawide) */
.game-about {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.62;
  padding: 16px 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--line);
  max-width: 640px;
  margin: 18px 0 4px;
}
