/*
 * GSI — PEAU VISUELLE PARTAGÉE (refonte 2026-09-08, décision Dan). UN SEUL FICHIER, servi par la LANDING
 * (via <link> au <head>) ET par /play (public/play/index.html via <link>). ⛔ NE JAMAIS RECOPIER CES VALEURS :
 * une règle écrite deux fois diverge en silence (CLAUDE.md § SOURCES PARALLÈLES).
 *
 * ── TOKENS + PEAU, TOUS SCOPÉS À `.gsi-skin` ────────────────────────────────────────────────────────────
 * ⚠⚠ **LES TOKENS SONT SUR `.gsi-skin`, PAS `:root` — ET C'EST OBLIGATOIRE (mesuré 2026-09-08).** Les noms
 *  (`--surface`, `--text-primary`…) COLLISIONNENT avec le système de thème de `globals.css`, qui redéfinit
 *  ces mêmes variables par thème (`--surface` = blanc en thème clair). Sur `:root`, la valeur du thème
 *  l'emportait et `.gsi-card` sortait BLANC (titres illisibles, vu à l'écran). Définis sur `.gsi-skin`, ils
 *  résolvent en LOCAL pour tous les descendants, et n'atteignent aucune surface sans `.gsi-skin` (ex. /method).
 *  La PEAU (styles de composants) est déjà scopée `.gsi-skin` — jamais un sélecteur d'élément nu.
 */
.gsi-skin {
  --bg-primary: #050A10;
  --bg-secondary: #09131D;
  --surface: #0D1722;
  --surface-light: #111E2B;
  --text-primary: #F5F7FA;
  --text-secondary: #AEB8C4;
  --text-muted: #73808C;
  --gold: #D6A84B;
  --gold-light: #F0C86A;
  --blue: #376CFF;
  --blue-light: #5C86FF;
  --border: rgba(255, 255, 255, .10);
  --radius-card: 16px;
  --radius-pill: 999px;
  --glow: 0 20px 60px rgba(0, 0, 0, .35), 0 0 40px rgba(214, 168, 75, .06);
  /* --maxw / --pad-inline : source unique sur :root de globals.css (largeur du site, lisible partout). */
  /* Échelle d'espacement 8 12 16 24 32 48 64 96 128 */
  --sp-1: 8px; --sp-2: 12px; --sp-3: 16px; --sp-4: 24px; --sp-5: 32px; --sp-6: 48px; --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;
  --bord-or: rgba(214, 168, 75, .75);
  --bord-argent: rgba(210, 215, 225, .65);
  --bord-bronze: rgba(190, 115, 55, .70);
}

/* ─────────── PEAU (scopée .gsi-skin) ─────────── */
.gsi-skin {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.gsi-skin *, .gsi-skin *::before, .gsi-skin *::after { box-sizing: border-box; }
.gsi-shell { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad-inline); }

.gsi-skin h1, .gsi-skin h2, .gsi-skin h3 { color: var(--text-primary); line-height: 1.1; margin: 0; }
.gsi-skin p { color: var(--text-secondary); margin: 0; }
.gsi-skin a { color: inherit; text-decoration: none; }

/* Boutons */
.gsi-btn {
  display: inline-flex; align-items: center; gap: var(--sp-1); justify-content: center;
  border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer;
  padding: 14px 26px; font-size: 15px; font-weight: 700; line-height: 1;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
/* .gsi-btn.gsi-btn-primary (0,2,0) : rétablit le texte sombre — `.gsi-skin a { color:inherit }`
   (public/gsi-skin.css, 0,1,1) battait l'ancien `.gsi-btn-primary` (0,1,0) et faisait hériter
   --text-primary (#F5F7FA) sur le bouton <a>, d'où blanc-sur-or ~2:1. Relief au repos : dégradé
   gold-light→gold + liseré clair + ombre chaude ; le survol garde l'or clair plein (validé Dan). */
.gsi-btn.gsi-btn-primary {
  background: var(--gold-relief); color: #10161d;
  box-shadow: var(--gold-relief-shadow);
}
.gsi-btn.gsi-btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--gold-relief-shadow-hover);
}
.gsi-btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border); }
.gsi-btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.gsi-btn:hover { transform: translateY(-4px); }

/* Champ (recherche visuelle) */
.gsi-input {
  width: 100%; border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: var(--surface-light); color: var(--text-primary);
  padding: 16px 22px; font-size: 15px; outline: none;
}
.gsi-input::placeholder { color: var(--text-muted); }
.gsi-input:focus { border-color: var(--gold); }

/* Cartes */
.gsi-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--glow); padding: var(--sp-4);
  transition: transform 220ms ease, border-color 220ms ease;
}
.gsi-card-hover:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .gsi-skin *, .gsi-btn, .gsi-card, .gsi-card-hover { transition: none !important; animation: none !important; }
  .gsi-btn:hover, .gsi-card-hover:hover { transform: none; }
}

/* ─────────── HEADER (scopé .gsi-skin) ─────────── */
.gsi-header { position: sticky; top: 0; z-index: 50; background: rgba(5,10,16,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.gsi-header-in { display: flex; align-items: center; gap: var(--sp-4); height: 68px; position: relative; z-index: 1; }
/* FOND IMAGE DU HEADER (hors landing) — recadré `cover`, ancré à DROITE (globe visible), sur ~68px de haut.
   Le WRAP porte `overflow:hidden` pour recadrer l'image SANS rogner les menus déroulants (siblings de
   .gsi-header-in, hors du wrap). Voile sombre en gradient : plus opaque à GAUCHE (libellés de nav) que sur la
   droite (globe). ⚠ Contraste vérifié au RENDU (composité image+voile), pas sur la règle. */
.gsi-header--img { background: #060a0f; }
.gsi-header-bg-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.gsi-header-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,15,.72) 0%, rgba(6,10,15,.55) 52%, rgba(6,10,15,.36) 100%); }
.gsi-logo b { color: var(--text-primary); font-size: 16px; font-weight: 800; letter-spacing: .04em; }
.gsi-logo b::after { content: ""; }
.gsi-nav { display: flex; align-items: center; gap: var(--sp-4); margin-left: var(--sp-4); flex: 1; }
.gsi-nav-link { color: var(--text-secondary); font-size: 14px; font-weight: 600; padding: 6px 2px; border-bottom: 2px solid transparent; transition: color 220ms ease, border-color 220ms ease; }
.gsi-nav-link:hover { color: var(--text-primary); }
.gsi-nav-link.is-active { color: var(--gold-light); border-bottom-color: var(--gold); }
.gsi-header-right { display: flex; align-items: center; gap: var(--sp-2); }
.gsi-icon-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--text-secondary); background: transparent; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 12px; cursor: pointer; }
.gsi-icon-btn:hover { color: var(--text-primary); border-color: var(--gold); }
.gsi-lang-code { font-size: 12px; font-weight: 700; }
.gsi-lang, .gsi-burger { position: relative; }
.gsi-lang summary, .gsi-burger summary { list-style: none; }
.gsi-lang summary::-webkit-details-marker, .gsi-burger summary::-webkit-details-marker { display: none; }
.gsi-lang-menu, .gsi-burger-menu { position: absolute; right: 0; top: calc(100% + 8px); background: var(--surface-light); border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--glow); padding: 8px; display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.gsi-lang-opt { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.gsi-lang-opt:hover { background: var(--surface); color: var(--text-primary); }
.gsi-lang-flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; flex: none; display: block; }
.gsi-signin { padding: 9px 18px; font-size: 14px; }
.gsi-burger { display: none; }
.gsi-burger-menu { min-width: 200px; padding: 12px; }
.gsi-burger-menu .gsi-nav-link { padding: 8px 4px; }
/* Sous-menu de nav (Awards → Award Race) — CSS pur : révélé au SURVOL et au FOCUS clavier (focus-within),
   masqué sinon. Le parent reste un LIEN vers sa route. La nav du haut est masquée < 720px → le burger liste
   l'enfant à plat (`.gsi-nav-child`, indenté). Aucune classe existante modifiée. */
.gsi-nav-item { position: relative; display: inline-flex; align-items: center; }
.gsi-nav-caret { margin-left: 4px; opacity: .8; flex: none; }
.gsi-nav-sub { position: absolute; left: 0; top: calc(100% + 8px); display: none; flex-direction: column; gap: 4px;
  background: var(--surface-light); border: 1px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--glow); padding: 8px; min-width: 160px; z-index: 60; }
.gsi-nav-item:hover .gsi-nav-sub, .gsi-nav-item:focus-within .gsi-nav-sub { display: flex; }
.gsi-nav-sub-link { display: block; padding: 8px 12px; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--text-secondary); white-space: nowrap; }
.gsi-nav-sub-link:hover { background: var(--surface); color: var(--gold-light); }
.gsi-burger-menu .gsi-nav-child { padding-left: 18px; opacity: .85; }
.gsi-burger-sep { display: block; height: 1px; background: var(--border); margin: 6px 2px; }
/* COMPTE — chip d'en-tête (icône + pseudo, ou icône seule). Même gabarit pilule que les boutons-icônes. */
.gsi-account { display: inline-flex; align-items: center; gap: 6px; color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 12px; }
.gsi-account:hover { border-color: var(--gold); color: var(--gold-light); }
.gsi-account-name { font-size: 13px; font-weight: 700; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ORGANIZER — à l'extrême droite ; masqué en mobile (dans le burger), comme Sign in. */
.gsi-organizer { white-space: nowrap; }
.gsi-organizer.is-active { border-color: var(--gold); color: var(--gold-light); } /* page /organizer courante */

/* ─────────── LANDING (scopé .gsi-skin) — échelle DENSE, calée sur la maquette ─────────── */
/* DENSITÉ (2026-09-08) : padding de section resserré (mesuré : 3245 px / 3,6 écrans avant ; l'espacement,
   pas la typo). Le texte NE change PAS ; seuls les blancs verticaux tombent. */
.gsi-section { padding-block: clamp(12px, 1.4vw, 18px); }
.gsi-eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gsi-h2 { font-size: clamp(17px, 1.82vw, 22px); font-weight: 800; margin-top: 6px; }
.gsi-lead { color: var(--text-secondary); font-size: 15px; max-width: 620px; margin-top: 6px; }

/* Hero — fond photo NU + dégradé sombre au tiers gauche (lisibilité titre/boutons). */
.gsi-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--bg-primary); }
.gsi-hero-bg { position: absolute; inset: 0; z-index: 0; }
.gsi-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.gsi-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,16,.98) 0%, rgba(5,10,16,.92) 33%, rgba(5,10,16,.55) 62%, rgba(5,10,16,.15) 100%); }
.gsi-hero-in { position: relative; z-index: 1; padding-block: clamp(22px, 2.8vw, 36px); max-width: 620px; }
.gsi-hero h1 { font-size: clamp(21px, 2.8vw, 32px); font-weight: 800; letter-spacing: -.01em; line-height: 1.06; text-transform: uppercase; }
.gsi-hero-gold { color: var(--gold); }
.gsi-hero-tagline { color: var(--text-primary); font-size: clamp(16px, 1.4vw, 17px); font-weight: 700; margin-top: 10px; }
.gsi-hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.gsi-search-wrap { margin-top: var(--sp-4); max-width: 620px; }
.gsi-search-row { display: flex; gap: var(--sp-2); align-items: center; }
.gsi-search-row .gsi-input-fake { flex: 1 1 auto; min-width: 0; }   /* min-width:0 = le champ rétrécit (ellipsis) au lieu de déborder */
.gsi-search-go { flex: 0 0 auto; width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-pill); background: var(--gold); color: #10161d; transition: transform 220ms ease, background 220ms ease; }
.gsi-search-go:hover { background: var(--gold-light); transform: translateY(-2px); }
.gsi-popular { color: var(--text-muted); font-size: 13px; margin-top: var(--sp-2); }
.gsi-popular a { color: var(--text-secondary); }
.gsi-popular a:hover { color: var(--gold-light); }

/* Podiums — FOND IMAGE fourni (médaille laurée + cadre couleur du rang + carte du monde CUITS dans l'image).
   ⛔ AUCUNE médaille HTML, AUCUNE bordure CSS de rang (doublon). Contenu par-dessus, voile de contraste. */
.gsi-podiums > a { min-width: 0; }
.gsi-podiums { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-3); margin-top: var(--sp-3); align-items: stretch; }
/* ⚠ PAS d'aspect-ratio : la hauteur vient du CONTENU (titres 2 lignes) ; l'image est ÉTIRÉE (object-fit:fill)
   pour couvrir TOUTE la carte quelle que soit sa hauteur — aucune zone noire, cadre visible sur les 4 côtés,
   médaille entière (déformation du MOTIF carte-du-monde acceptée, décision Dan). min-height = place médaille+contenu. */
.gsi-podium { position: relative; aspect-ratio: 1374 / 1145; min-height: 300px; display: flex; flex-direction: column; overflow: hidden; border-radius: 14px; padding: 14px 16px; box-shadow: 0 10px 28px rgba(0,0,0,.45); }
/* CADRE : porté par les 3 NOUVELLES images (2026-09-08), net sur les 4 côtés (vérifié au pixel). ⛔ PLUS
   d'anneau/bordure CSS de rang — il doublerait le cadre de l'image (motif de son retrait, lot 0800166d posait
   l'inverse parce que l'ancien art n'avait PAS de cadre à droite). Ratio de carte calé sur l'image
   (1374×1145 ≈ 6:5) : `object-fit:fill` remplit EXACTEMENT ⇒ AUCUNE découpe, distorsion nulle quand le
   contenu tient ; si le contenu dépasse, la carte grandit et le cadre reste ENTIER (fill ne coupe jamais). */
.gsi-podium-bg { position: absolute; inset: 0; z-index: 0; }
.gsi-podium-bg img { width: 100%; height: 100%; object-fit: fill; }
/* Voile INSÉRÉ de 8px + tête plus claire : la bande de bord (liseré métal de l'image) reste NON assombrie. */
.gsi-podium-bg::after { content: ""; position: absolute; inset: 8px; border-radius: 8px; background: linear-gradient(180deg, rgba(4,8,14,.18) 0%, rgba(4,8,14,.50) 44%, rgba(4,8,14,.82) 100%); }
.gsi-podium > *:not(.gsi-podium-bg) { position: relative; z-index: 1; }
/* Ligne 1 : drapeau à GAUCHE, badge AWARD à DROITE, CENTRE LIBRE pour la médaille. Les deux icônes alignées
   par le CENTRE (align-items:center — mesuré : tops alignés laissaient 15px d'écart de centre). */
.gsi-podium-head { flex: 0 0 auto; min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.gsi-podium-flag { flex: 0 0 auto; width: 40px; height: 26px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 3px rgba(0,0,0,.6); }
.gsi-podium-seal { flex: 0 0 auto; width: 60px; height: 60px; object-fit: contain; }
/* Ligne 2 : le NOM DE MARQUE, JUSTE SOUS la médaille, CENTRÉ, sur TOUTE la largeur, une seule ligne
   (plus de max-width:37% qui l'étranglait — mesuré : « ASIAN POKER TOUR » tenait sur 2 lignes). */
.gsi-podium-brand { color: var(--text-primary); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; text-align: center; line-height: 1.15; white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,.75); }
.gsi-podium-tourn { color: var(--text-primary); font-size: 13px; font-weight: 700; text-align: center; line-height: 1.3; min-height: 2.6em; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 1px 4px rgba(0,0,0,.85); }
/* Casino SOUS le titre : petit, gris, centré, JAMAIS tronqué (jusqu'à 2 lignes, pas d'ellipse). */
.gsi-podium-casino { color: var(--text-secondary); font-size: 11px; text-align: center; line-height: 1.25; margin-top: 4px; text-shadow: 0 1px 3px rgba(0,0,0,.85); }
/* Corps : grandit, centre le score DOMINANT + étoiles au milieu. */
.gsi-podium-body { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-1); }
.gsi-podium-score { font-size: clamp(24px, 2.8vw, 32px); font-weight: 800; color: #fff; line-height: 1; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,.9); }
.gsi-podium-stars { display: flex; justify-content: center; }
.gsi-podium-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-2); }
.gsi-podium-year { color: var(--text-primary); font-size: 13px; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.85); }
.gsi-podium-details { padding: 8px 12px; font-size: 12px; background: rgba(5,10,16,.55); border-color: rgba(255,255,255,.25); }

/* Why + product cards */
.gsi-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--sp-3); margin-top: var(--sp-3); }
.gsi-benefit { padding: var(--sp-3); }
.gsi-benefit b { color: var(--text-primary); font-size: 15px; font-weight: 800; }
.gsi-benefit p { margin-top: 6px; font-size: 13px; }
.gsi-quote { margin-top: var(--sp-3); font-size: clamp(16px, 1.54vw, 18px); font-weight: 700; color: var(--gold-light); font-style: italic; text-align: center; }
/* GSI PLAY — bloc PREMIUM (plus important que les 3 cartes) : surface sombre, liseré + accents OR, bouton OR,
   image play à droite (empile sous le texte en mobile). Sobre — aucun code visuel « casino ». */
.gsi-play { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-5); align-items: center;
  background: linear-gradient(135deg, var(--surface-light) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--bord-or); border-radius: var(--radius-card); box-shadow: var(--glow);
  padding: clamp(24px, 3vw, 44px); overflow: hidden; }
.gsi-play-title { font-size: clamp(21px, 2.38vw, 31px); font-weight: 900; letter-spacing: .02em; margin-top: 6px; }
.gsi-play-accroche { color: var(--gold-light); font-size: clamp(16px, 1.6vw, 20px); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-top: 8px; }
.gsi-play-body { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin-top: var(--sp-2); max-width: 520px; }
.gsi-play-infos { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: var(--sp-3) 0 0; padding: 0; }
.gsi-play-infos li { color: var(--text-primary); font-size: 13px; font-weight: 700; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--radius-pill); background: rgba(214,168,75,.06); }
.gsi-play-cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.gsi-play-secondary { color: var(--text-muted); font-size: 12px; margin: 0; }
.gsi-play-media { position: relative; }
.gsi-play-media img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
/* MY PLAYSTYLE — bloc intermédiaire (moins grand que GSI Play, plus qu'une carte). Dark premium, accents
   GOLD + bleu GSI. Image à gauche, texte à droite ; empile en mobile (image puis texte). */
.gsi-mps { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-5); align-items: stretch;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(0,0,0,.4); padding: clamp(20px, 2.4vw, 34px); overflow: hidden; }
/* Média = panneau qui remplit la hauteur du bloc ; l'image (~16:9) porte son sujet ÉTALÉ sur toute la largeur
   (curseurs à gauche, radar à droite) et CENTRÉ : object-position centré pour ne rogner ni l'un ni l'autre.
   (Ancien 78% 50% : réglé pour l'as + jetons à droite de l'ancienne photo large — faux pour ce visuel.) */
.gsi-mps-media { position: relative; min-height: 220px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.45); }
.gsi-mps-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.gsi-mps-title { font-size: clamp(16px, 1.68vw, 21px); font-weight: 800; letter-spacing: .01em; margin-top: 6px; line-height: 1.15; }
.gsi-mps-body { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin-top: var(--sp-2); max-width: 540px; }
.gsi-mps-ind { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: var(--sp-3) 0 0; padding: 0; }
.gsi-mps-ind li { color: var(--blue-light); font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(55,108,255,.4); border-radius: var(--radius-pill); background: rgba(55,108,255,.08); }
.gsi-mps-cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.gsi-mps-micro { color: var(--text-muted); font-size: 12px; margin: 0; }
.gsi-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); margin-top: var(--sp-3); }
.gsi-product { padding: var(--sp-3); }
.gsi-product b { color: var(--text-primary); font-size: 16px; font-weight: 800; }
.gsi-product p { margin-top: 6px; font-size: 13px; }

/* Footer */
.gsi-footer { background-size: cover; background-position: center; border-top: 1px solid var(--border); margin-top: var(--sp-5); }
.gsi-footer-in { display: flex; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap; padding-block: var(--sp-5); }
.gsi-footer-logo { color: var(--text-primary); font-size: 18px; font-weight: 800; letter-spacing: .04em; }
.gsi-footer-tagline { color: var(--gold-light); font-size: 16px; font-weight: 700; margin-top: var(--sp-2); }
.gsi-footer-sub { color: var(--text-secondary); font-size: 14px; margin-top: 6px; }
.gsi-footer-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; align-items: flex-start; }
.gsi-footer-link { color: var(--text-secondary); font-size: 14px; font-weight: 600; }
.gsi-footer-link:hover { color: var(--gold-light); }
.gsi-footer-slogan { color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding-bottom: var(--sp-4); }

/* Faux champ de recherche (visuel, lien vers #early) — une seule ligne (ellipsis) + liens légaux du pied */
.gsi-input-fake { display: flex; align-items: center; color: var(--text-muted); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gsi-input-fake:hover { border-color: var(--gold); color: var(--text-secondary); }
.gsi-legal { display: flex; gap: var(--sp-3); flex-wrap: wrap; padding-block: var(--sp-4); }
.gsi-legal a { color: var(--text-muted); font-size: 12px; }
.gsi-legal a:hover { color: var(--text-secondary); }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1024px) {
  .gsi-podiums { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gsi-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gsi-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .gsi-nav, .gsi-signin, .gsi-account, .gsi-organizer { display: none; }
  .gsi-burger { display: inline-flex; }
  .gsi-podiums, .gsi-products, .gsi-benefits { grid-template-columns: minmax(0, 1fr); }
  .gsi-play { grid-template-columns: minmax(0, 1fr); gap: var(--sp-4); }  /* texte puis image (ordre source) */
  .gsi-mps { grid-template-columns: minmax(0, 1fr); gap: var(--sp-4); }  /* image puis texte (ordre source) */
  .gsi-hero-cta .gsi-btn { width: 100%; }
  /* La recherche reste EN LIGNE (champ + flèche) : la flèche est compacte, elle tient. */
}
