@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow:wght@400;500&display=swap");

:root {
  --bg: #0a1020;
  --bg-2: #0d1428;
  --card: #111a30;
  --border: #233150;
  --border-2: #2a3a5c;
  --gold: #e8bb45;
  --gold-2: #f4d477;
  --gold-3: #d19f2f;
  --red: #cf3a2c;
  --discord: #5865f2;
  --green: #39d56b;
  --text: #f2efe9;
  --muted: #aeb7c6;
  --muted-2: #8593ac;
  --muted-3: #78859e;
  --muted-4: #63708a;
  --accent: var(--gold);
  --accent-2: var(--gold-2);
  --font-head: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  padding: 11px 15px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  border-color: #f6dc84;
  color: #12183a;
  box-shadow: 0 0 16px rgba(232, 187, 69, .32);
}
.btn-gold:hover { filter: brightness(1.07); }
.btn-outline {
  padding: 9px 16px;
  background: #152039;
  border-color: var(--border-2);
  color: var(--text);
  font-size: 13.5px;
}
.btn-outline:hover { border-color: var(--gold); }
.btn:disabled { opacity: .6; cursor: default; }

/* ============ NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(9, 14, 30, .86);
  border-bottom: 1px solid #1e2a44;
}
.site-header .wrap {
  padding-top: 11px;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 42px; height: 42px; object-fit: contain; display: block; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: .07em; color: var(--text); line-height: 1.1; }
.brand-tag { font-size: 9px; letter-spacing: .34em; color: var(--gold); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover { color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 18%, rgba(232, 187, 69, .12), transparent 55%),
    radial-gradient(95% 85% at 10% 95%, rgba(42, 64, 120, .30), transparent 62%),
    linear-gradient(135deg, #0c1428 0%, #0a1020 48%, #080d1c 100%);
  background-size: 170% 170%;
  animation: bgShift 24s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 80px 24px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow-line { width: 28px; height: 2px; background: var(--gold); }
.eyebrow-text { font-family: var(--font-head); font-size: 13px; letter-spacing: .32em; color: var(--gold); text-transform: uppercase; font-weight: 600; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid var(--border-2);
  background: rgba(232, 187, 69, .06);
  margin-bottom: 24px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .14em;
  color: #c7cfdd;
  text-transform: uppercase;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 2s ease-in-out infinite; }

.hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(44px, 7vw, 92px); line-height: .9; letter-spacing: .012em; text-transform: uppercase; margin: 0; }
.hero h1 .line-1 { display: block; color: #f6f4ef; text-shadow: 0 4px 26px rgba(0, 0, 0, .5); }
.hero h1 .line-2 {
  display: block;
  background: linear-gradient(100deg, #c1902c 0%, var(--gold-2) 24%, #fff2c4 40%, var(--gold-2) 56%, #c1902c 82%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 5s linear infinite;
}

.hero-sub { position: relative; display: inline-block; margin-top: 24px; }
.hero-sub span { font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 2.3vw, 22px); letter-spacing: .05em; text-transform: uppercase; color: var(--text); }
.hero-sub::after { content: ""; position: absolute; left: 0; bottom: -8px; height: 3px; width: 100%; background: var(--red); border-radius: 2px; box-shadow: 0 0 14px rgba(207, 58, 44, .5); }

.hero p { margin-top: 28px; max-width: 52ch; font-size: 17px; line-height: 1.55; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag { padding: 9px 15px; border: 1px solid var(--border-2); background: var(--card); border-radius: 3px; font-family: var(--font-head); font-weight: 500; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 32px; }
.hero-cta .btn-gold { padding: 16px 36px; font-size: 17px; box-shadow: 0 10px 32px rgba(232, 187, 69, .35); }
.hero-cta .link { font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); text-decoration: none; }
.hero-cta .link:hover { color: var(--gold); }

.hero-logo { position: relative; display: grid; place-items: center; min-height: 300px; min-width: 0; }
.hero-logo-halo { position: absolute; width: min(440px, 86%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(232, 187, 69, .24), rgba(232, 187, 69, .05) 45%, transparent 66%); animation: haloPulse 4.6s ease-in-out infinite; }
.hero-logo img { position: relative; width: min(430px, 86%); max-width: 430px; filter: drop-shadow(0 24px 55px rgba(0, 0, 0, .55)) drop-shadow(0 0 34px rgba(232, 187, 69, .22)); animation: badgeFloat 6s ease-in-out infinite; }

/* ============ RÉASSURANCE ============ */
.trust-bar { border-top: 1px solid #1e2a44; border-bottom: 1px solid #1e2a44; background: #0b1327; }
.trust-bar .wrap { padding-top: 18px; padding-bottom: 18px; display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 14.5px; letter-spacing: .04em; color: #e7e4dc; text-transform: uppercase; }
.trust-item b { color: var(--gold); font-weight: 600; }

/* ============ SECTION HEADERS ============ */
section { max-width: 1200px; margin: 0 auto; padding: 64px 24px 40px; }
.sec-head { text-align: center; margin-bottom: 10px; }
.sec-eyebrow { font-family: var(--font-head); font-size: 13px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.sec-head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4.5vw, 46px); line-height: 1; color: #f6f4ef; text-transform: uppercase; margin: 0; }
.sec-head p { margin: 12px auto 0; max-width: 56ch; font-size: 14.5px; color: var(--muted-3); }

/* ============ FILTRES + GRILLE PRODUITS ============ */
.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin: 30px 0 34px; }
.filter-btn {
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 4px;
  border: 1px solid var(--border-2);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
}
.filter-btn span { opacity: .5; margin-left: 7px; font-weight: 600; }
.filter-btn:hover { border-color: var(--gold); color: var(--text); }
.filter-btn.active { background: linear-gradient(180deg, var(--gold-2), var(--gold-3)); border-color: #f6dc84; color: #12183a; }

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

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 14px 44px rgba(232, 187, 69, .16); }
.card-media {
  height: 148px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(130px 95px at 50% 38%, rgba(232, 187, 69, .14), transparent 70%), #0d1428;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-cat {
  position: absolute; top: 11px; right: 11px;
  font-family: var(--font-head); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--border-2); padding: 3px 8px; border-radius: 3px;
  background: rgba(9, 14, 30, .5);
}
.card-body { padding: 16px 17px 17px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--font-head); font-weight: 600; font-size: 18px; line-height: 1.12; color: var(--text); letter-spacing: .01em; margin: 0; }
.card-body .desc { margin-top: 7px; font-size: 12.5px; line-height: 1.5; color: var(--muted-2); flex: 1; }
.card-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 15px; }
.price-col { display: flex; flex-direction: column; line-height: 1; }
.price-prefix { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-4); }
.price { font-family: var(--font-head); font-weight: 700; font-size: 25px; color: #fff; margin-top: 2px; }

/* ============ RÔLES DONATEUR ============ */
.ranks-row { display: flex; gap: 10px; overflow-x: auto; padding: 24px 2px 8px; }
.rank-chip {
  flex: none; width: 128px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 12px; background: var(--card); border: 1px solid var(--border); border-radius: 6px;
}
.rank-chip:hover { border-color: var(--gold); }
.rank-glyph { font-size: 30px; line-height: 1; }
.rank-name { font-family: var(--font-head); font-size: 15px; letter-spacing: .04em; color: var(--text); text-transform: uppercase; text-align: center; }
.rank-amt { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--gold); }

/* ============ FEATURES ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.feature-card { padding: 26px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 6px; }
.feature-card:hover { border-color: var(--gold); }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; background: rgba(232, 187, 69, .1); border: 1px solid #3d3016; border-radius: 6px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--text); text-transform: uppercase; letter-spacing: .02em; margin: 0; }
.feature-card p { margin-top: 9px; font-size: 14px; line-height: 1.55; color: var(--muted-3); }

/* ============ RÈGLES ============ */
.rules-box { border: 1px solid var(--border); background: linear-gradient(180deg, rgba(16, 24, 46, .9), rgba(9, 14, 30, .4)); border-radius: 6px; padding: 34px 30px; }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px 28px; }
.rule-item { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; }
.rule-num { flex: none; width: 26px; height: 26px; display: grid; place-items: center; background: rgba(232, 187, 69, .12); border: 1px solid #3d3016; color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 13px; border-radius: 4px; }
.rule-item span:last-child { font-size: 14.5px; line-height: 1.5; color: #c2c0b8; }

/* ============ REJOINDRE LE SERVEUR ============ */
.ip-box { display: flex; align-items: stretch; border: 1px solid var(--border-2); border-radius: 5px; overflow: hidden; max-width: 520px; width: 100%; box-shadow: 0 0 40px rgba(232, 187, 69, .12); margin: 0 auto; }
.ip-box-info { flex: 1; padding: 16px 20px; background: var(--bg-2); display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.ip-box-label { font-family: var(--font-head); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-4); margin-bottom: 5px; }
.ip-box-value { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--text); letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ip-copy-btn { flex: none; width: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: var(--card); border: none; border-left: 1px solid var(--border-2); color: var(--muted); cursor: pointer; }
.ip-copy-btn:hover { color: var(--gold); }
.ip-copy-btn span { font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.ip-hint { text-align: center; font-size: 13px; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; }
.ip-hint code { font-size: 12px; background: #141d36; padding: 2px 6px; border-radius: 3px; color: var(--text); }

.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }
.connect-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 26px 24px; }
.connect-card-title { font-family: var(--font-head); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.step { display: flex; align-items: flex-start; gap: 14px; }
.step + .step { margin-top: 16px; }
.step-num { flex: none; width: 32px; height: 32px; display: grid; place-items: center; background: rgba(232, 187, 69, .1); border: 1px solid #3d3016; border-radius: 50%; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--gold); }
.step-title { font-family: var(--font-head); font-size: 16px; color: var(--text); letter-spacing: .01em; }
.step-text { font-size: 13px; color: var(--muted-3); margin-top: 3px; line-height: 1.45; }

.server-info-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid #1a2540; }
.server-info-row .label { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--muted-3); }
.server-info-row .value { font-family: var(--font-head); font-size: 15px; font-weight: 500; color: var(--text); letter-spacing: .02em; }

.discord-cta {
  margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; background: rgba(88, 101, 242, .12); border: 1px solid var(--discord); color: #c8cdff;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
}
.discord-cta:hover { background: rgba(88, 101, 242, .24); }

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid #1e2a44; background: var(--bg); }
.footer-top { padding: 42px 24px; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 34ch; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand-row img { width: 38px; height: 38px; object-fit: contain; }
.footer-brand-row span { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: .05em; color: var(--text); }
.footer-brand p { font-size: 13px; line-height: 1.55; color: var(--muted-3); }
.footer-col-title { font-family: var(--font-head); font-size: 12px; letter-spacing: .2em; color: var(--muted-3); text-transform: uppercase; margin-bottom: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-payment { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }
.footer-bottom { border-top: 1px solid #1e2a44; padding: 16px 24px; text-align: center; font-size: 12px; color: #5a677f; }

/* ============ PAGES SUCCÈS / ANNULATION ============ */
.center-box {
  max-width: 520px;
  margin: 80px auto;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  font-family: var(--font-body);
}
.center-box h1 { font-family: var(--font-head); text-transform: uppercase; }
.center-box a { color: var(--gold-2); }

/* ============ ANIMATIONS ============ */
@keyframes bgShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes goldShimmer { to { background-position: 200% center; } }
@keyframes haloPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.06); opacity: .8; } }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .connect-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   FX — AMBIANCE VIVANTE (particules, reveal, widgets, curseur)
   Tout est purement visuel et désactivable (reduced-motion).
   ═══════════════════════════════════════════════════════════ */

/* Le fond du hero couvre toute la largeur (la règle générique `section` le limitait à 1200px). */
section.hero { max-width: none; padding: 0; }

/* Image produit manquante → logo L'EXIL en placeholder (retiré dès que le PNG existe dans /img). */
.card-media img.img-fallback {
  width: 58%; height: 72%; object-fit: contain; opacity: .92;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .55));
}

/* ── Couches d'ambiance plein écran (au-dessus du contenu, non cliquables) ── */
#fxAsh { position: fixed; inset: 0; z-index: 3; pointer-events: none; }
.fx-fog {
  position: fixed; inset: -20%; z-index: 2; pointer-events: none; opacity: .55;
  background:
    radial-gradient(42% 30% at 18% 72%, rgba(130, 150, 190, .09), transparent 70%),
    radial-gradient(36% 28% at 82% 26%, rgba(232, 187, 69, .055), transparent 70%);
  animation: fogDrift 26s ease-in-out infinite alternate;
}
.fx-vignette {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, transparent 56%, rgba(4, 8, 18, .5) 100%);
  animation: vignetteBreathe 9s ease-in-out infinite;
}
.fx-scanlines {
  position: fixed; inset: 0; z-index: 50; pointer-events: none; overflow: hidden;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .014) 0 1px, transparent 1px 3px);
}
.fx-scanlines::after {
  content: ""; position: absolute; inset: -100%; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainJitter 1.4s steps(6) infinite;
}
@keyframes fogDrift { from { transform: translate3d(-2.5%, -1.5%, 0) scale(1); } to { transform: translate3d(2.5%, 1.8%, 0) scale(1.07); } }
@keyframes vignetteBreathe { 0%, 100% { opacity: .7; } 50% { opacity: 1; } }
@keyframes grainJitter {
  0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); } 60% { transform: translate(-5%, -2%); }
  80% { transform: translate(4%, 4%); } 100% { transform: translate(0, 0); }
}

/* ── Entrées au chargement : logos ── */
body.fx-on .brand img { animation: logoIn .8s cubic-bezier(.2, .8, .3, 1.25) .1s backwards; }
body.fx-on .hero-logo img {
  animation: heroLogoIn 1.1s cubic-bezier(.2, .7, .25, 1) .2s backwards,
             badgeFloat 6s ease-in-out 1.3s infinite;
}
@keyframes logoIn { from { opacity: 0; transform: scale(.4) rotate(-14deg); } }
@keyframes heroLogoIn { from { opacity: 0; transform: scale(.86) translateY(18px); filter: drop-shadow(0 0 0 rgba(232, 187, 69, 0)); } }

/* ── Titre : machine à écrire + glitch ── */
.hero h1 .line-1 { min-height: .95em; }
.hero h1 .line-1.typing::after {
  content: ""; display: inline-block; width: .48ch; height: .74em; margin-left: 8px;
  background: var(--gold); box-shadow: 0 0 14px rgba(232, 187, 69, .7);
  animation: caretBlink .75s steps(1) infinite;
}
.hero h1 .line-2.fx-pending { opacity: 0; }
.hero h1 .line-2.glitch-in { animation: goldShimmer 5s linear infinite, glitchIn .55s steps(10) backwards; }
@keyframes caretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes glitchIn {
  0% { opacity: 0; transform: translateX(-8px) skewX(-10deg); }
  15% { opacity: 1; transform: translateX(6px) skewX(8deg); }
  30% { opacity: .4; transform: translateX(-4px) skewX(-5deg); }
  45% { opacity: 1; transform: translateX(3px) skewX(3deg); }
  60% { opacity: .7; transform: translateX(-2px); }
  100% { opacity: 1; transform: none; }
}

/* ── Apparition en cascade au scroll ── */
.reveal { opacity: 0; }
.reveal.in-view { animation: revealUp .7s cubic-bezier(.2, .7, .25, 1) var(--d, 0ms) both; }
.reveal.rv-done { opacity: 1; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* ── Cartes produits : glow par rareté + tilt ── */
.card { --glow: 232, 187, 69; }
.card.tier-common { --glow: 126, 156, 214; }
.card.tier-legendary { --glow: 224, 82, 60; }
.card:hover {
  border-color: rgba(var(--glow), .85);
  animation: cardGlow 2.2s ease-in-out infinite;
}
.card.tilting { transition: box-shadow .16s, border-color .16s; will-change: transform; }
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 14px 44px rgba(var(--glow), .14), 0 0 0 1px rgba(var(--glow), .16); }
  50% { box-shadow: 0 16px 52px rgba(var(--glow), .3), 0 0 24px rgba(var(--glow), .26); }
}
body.fx-on .card .btn-gold { animation: buyPulse 2.8s ease-in-out infinite; }
@keyframes buyPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(232, 187, 69, .22); }
  50% { box-shadow: 0 0 22px rgba(232, 187, 69, .5); }
}

/* ── Badges produits (POPULAIRE / NOUVEAU) ── */
.card-badge {
  position: absolute; top: 11px; left: 11px; z-index: 2; overflow: hidden;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px;
}
.card-badge.badge-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  color: #12183a; box-shadow: 0 0 14px rgba(232, 187, 69, .4);
  animation: badgePulse 2.4s ease-in-out infinite;
}
.card-badge.badge-green {
  background: rgba(57, 213, 107, .14); border: 1px solid var(--green);
  color: #8df2ae; box-shadow: 0 0 12px rgba(57, 213, 107, .25);
  animation: badgePulse 2.4s ease-in-out infinite;
}
.card-badge::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .4) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: badgeShine 3.2s ease-in-out 1s infinite;
}
@keyframes badgePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes badgeShine { 0% { transform: translateX(-130%); } 45%, 100% { transform: translateX(130%); } }

/* ── Ripple au clic ── */
.btn, .filter-btn, .ip-copy-btn { position: relative; overflow: hidden; }
.fx-ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 65%);
  transform: scale(0); animation: rippleOut .55s ease-out forwards;
}
@keyframes rippleOut { to { transform: scale(1); opacity: 0; } }

/* ── Ticker / bandeau défilant ── */
.ticker {
  position: relative; overflow: hidden;
  background: #0a1226; border-bottom: 1px solid #1e2a44;
  font-family: var(--font-head); font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track { display: inline-flex; white-space: nowrap; padding: 8px 0; }
.ticker-track.scrolling { animation: tickerScroll var(--ticker-dur, 40s) linear infinite; will-change: transform; }
.ticker:hover .ticker-track.scrolling { animation-play-state: paused; }
.ticker-seq { display: inline-flex; }
.ticker-item { display: inline-flex; align-items: center; }
.ticker-item::after { content: "✦"; margin: 0 22px; color: var(--gold); opacity: .55; font-size: 10px; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ── Bandeau stats vivantes (joueurs / membres / horloge) ── */
.live-strip { border-bottom: 1px solid #1e2a44; background: #0a1124; }
.live-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 18px 56px; justify-content: center;
  padding-top: 16px; padding-bottom: 16px;
}
.live-item { display: flex; align-items: center; gap: 12px; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 12px var(--green); animation: pulse 2s ease-in-out infinite;
}
.live-nums { display: flex; flex-direction: column; line-height: 1.15; }
.live-value { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--gold); font-variant-numeric: tabular-nums; }
.live-label { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-4); }
.live-clock { color: var(--text); }
.tick-flash { animation: tickFlash .6s ease-out; }
@keyframes tickFlash { 0% { color: #fff; text-shadow: 0 0 12px rgba(232, 187, 69, .8); } 100% { text-shadow: none; } }

/* ── Pill statut serveur (hero) ── */
.status-sep { width: 1px; height: 12px; background: var(--border-2); }
#playersCount { color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Curseur viseur tactique ── */
body.fx-cursor-on, body.fx-cursor-on a, body.fx-cursor-on button { cursor: none; }
.fx-cursor {
  position: fixed; left: -17px; top: -17px; z-index: 999; pointer-events: none;
  width: 34px; height: 34px; opacity: 0; transition: opacity .25s;
}
.fx-cursor.visible { opacity: 1; }
.fx-cursor-ring {
  position: absolute; inset: 6px; border: 1px solid rgba(242, 239, 233, .65);
  border-radius: 50%; transition: transform .18s ease, border-color .18s ease;
}
.fx-cursor-ring::before, .fx-cursor-ring::after {
  content: ""; position: absolute; background: rgba(242, 239, 233, .65);
  transition: background .18s ease;
}
.fx-cursor-ring::before { left: 50%; top: -9px; width: 1px; height: 40px; margin-left: -.5px;
  -webkit-mask-image: linear-gradient(180deg, #000 22%, transparent 22%, transparent 78%, #000 78%);
  mask-image: linear-gradient(180deg, #000 22%, transparent 22%, transparent 78%, #000 78%); }
.fx-cursor-ring::after { top: 50%; left: -9px; height: 1px; width: 40px; margin-top: -.5px;
  -webkit-mask-image: linear-gradient(90deg, #000 22%, transparent 22%, transparent 78%, #000 78%);
  mask-image: linear-gradient(90deg, #000 22%, transparent 22%, transparent 78%, #000 78%); }
.fx-cursor-dot {
  position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; margin: -1.5px 0 0 -1.5px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px rgba(232, 187, 69, .9);
}
.fx-cursor.on-target .fx-cursor-ring { transform: scale(1.45); border-color: var(--gold); }
.fx-cursor.on-target .fx-cursor-ring::before, .fx-cursor.on-target .fx-cursor-ring::after { background: var(--gold); }
.fx-cursor.firing .fx-cursor-ring { transform: scale(.75); border-color: var(--red); }

/* Correctif lisibilité : le bouton or de la nav gardait la couleur grise des liens. */
.nav-links a.btn-gold, .nav-links a.btn-gold:hover { color: #12183a; }

/* ── Transitions douces supplémentaires ── */
.filter-btn { transition: border-color .18s, color .18s, background .18s, transform .18s; }
.filter-btn:hover { transform: translateY(-1px); }
.rank-chip { transition: border-color .2s, transform .2s, box-shadow .2s; }
.rank-chip:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(232, 187, 69, .12); }
.feature-card { transition: border-color .2s, transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, .35); }
.nav-links a { position: relative; transition: color .18s; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.btn-gold { transition: filter .18s, box-shadow .18s, transform .12s; }
.btn-gold:active { transform: scale(.97); }
.ip-copy-btn { transition: color .18s, background .18s; }
.discord-cta { transition: background .2s, box-shadow .2s; }
.discord-cta:hover { box-shadow: 0 0 22px rgba(88, 101, 242, .3); }

/* ═══════════════ COMPTE / PANIER / PAGES (parité lexil.net) ═══════════════ */

/* ── Connexion Steam + chip utilisateur ── */
.site-header .wrap { max-width: 1560px; }
.auth-area { position: relative; display: flex; align-items: center; flex: none; }
.cart-btn { flex: none; }
.btn-steam {
  padding: 9px 14px; background: #152039; border-color: var(--border-2); color: var(--text); font-size: 13px;
  white-space: nowrap;
}
.btn-steam:hover { border-color: var(--gold); color: var(--gold-2); }
.user-chip {
  display: flex; align-items: center; gap: 9px; padding: 6px 12px 6px 7px;
  background: #152039; border: 1px solid var(--border-2); border-radius: 4px;
  color: var(--text); cursor: pointer; font-family: var(--font-head); font-size: 13.5px; letter-spacing: .03em;
  transition: border-color .18s;
}
.user-chip:hover { border-color: var(--gold); }
.user-chip img { width: 26px; height: 26px; border-radius: 3px; object-fit: cover; }
.user-chip .chev { color: var(--muted-3); font-size: 11px; }
.user-menu {
  position: absolute; right: 0; top: calc(100% + 9px); min-width: 250px; z-index: 60;
  background: #101a31; border: 1px solid var(--border-2); border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55); padding: 8px 0; display: none;
}
.user-menu.open { display: block; animation: revealUp .22s ease both; }
.user-menu-head { padding: 8px 16px 6px; font-family: var(--font-head); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-4); }
.user-menu-linked { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 6px 16px; font-size: 13.5px; color: var(--muted); }
.user-menu-linked .ok { color: var(--green); font-weight: 600; font-size: 12.5px; }
.user-menu-sep { height: 1px; background: #1c2947; margin: 7px 0; }
.user-menu-item {
  display: block; width: 100%; text-align: left; padding: 9px 16px; background: none; border: none;
  color: var(--text); font-family: var(--font-body); font-size: 14.5px; cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s;
}
.user-menu-item:hover { background: rgba(232, 187, 69, .08); color: var(--gold-2); }
.user-menu-item.gold { color: var(--gold); }
.user-menu-item.danger { color: #e05a4e; }

/* ── Bouton panier ── */
.cart-btn {
  display: flex; align-items: center; gap: 8px; padding: 9px 13px;
  background: #152039; border: 1px solid var(--border-2); border-radius: 4px;
  color: var(--text); cursor: pointer; transition: border-color .18s;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-btn span {
  min-width: 20px; padding: 1px 6px; border-radius: 3px; text-align: center;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3)); color: #12183a;
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
}

/* ── Drawer panier ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 80; background: rgba(4, 8, 18, .6);
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; width: min(400px, 94vw);
  display: flex; flex-direction: column;
  background: #0e1730; border-left: 1px solid var(--border-2);
  transform: translateX(102%); transition: transform .3s cubic-bezier(.2, .7, .25, 1);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid #1c2947; }
.cart-head h3 { margin: 0; font-family: var(--font-head); font-size: 19px; text-transform: uppercase; letter-spacing: .05em; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cart-empty { font-size: 13.5px; color: var(--muted-3); }
.cart-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid #16233f; }
.cart-line-name { font-family: var(--font-head); font-size: 15px; color: var(--text); }
.cart-line-sub { font-size: 12px; color: var(--muted-3); margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 9px; }
.cart-qty button {
  width: 26px; height: 26px; border-radius: 4px; background: #152039; border: 1px solid var(--border-2);
  color: var(--text); cursor: pointer; font-size: 15px; line-height: 1;
}
.cart-qty button:hover { border-color: var(--gold); }
.cart-qty span { font-family: var(--font-head); font-weight: 600; min-width: 16px; text-align: center; }
.cart-foot { padding: 16px 20px 20px; border-top: 1px solid #1c2947; }
.cart-steamid span { display: block; font-family: var(--font-head); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 7px; }
.cart-steamid input {
  width: 100%; padding: 11px 12px; border-radius: 4px; background: #0a1226; border: 1px solid var(--border-2);
  color: var(--text); font-family: var(--font-head); font-size: 15px; letter-spacing: .04em;
}
.cart-steamid input:focus { outline: none; border-color: var(--gold); }
.cart-steamid small { display: block; margin-top: 7px; font-size: 11.5px; line-height: 1.45; color: var(--muted-4); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin: 15px 0 12px; font-family: var(--font-head); }
.cart-total-row span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-3); }
.cart-total-row b { font-size: 24px; color: var(--gold); }
.cart-checkout { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }
.cart-msg { min-height: 18px; margin: 10px 0 0; font-size: 12.5px; color: #e05a4e; }

/* ── Icônes produits officielles (badges hexagonaux, PNG transparents) ── */
/* Sélecteur qualifié : `.card-media img` (plus spécifique) forcerait sinon
   width/height 100% + object-fit:cover et rognerait le badge. */
.card-media img.card-icon, .prod-media img.card-icon {
  height: 116px; width: auto; display: block; object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .55));
  transition: transform .25s, filter .25s;
}
/* Teinte dorée au survol (les PNG sont argentés → sepia + saturation). */
.card:hover .card-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .6)) sepia(.55) saturate(2.6) hue-rotate(354deg) brightness(1.04);
}
.prod-media img.card-icon { height: 178px; }

/* Pictogramme dans les boutons de filtre */
.filter-ico { height: 17px; width: auto; margin-right: 8px; vertical-align: -3px; opacity: .85; }
.filter-btn.active .filter-ico { filter: brightness(0) saturate(100%); opacity: .8; }

/* ── Variantes de durée + chip durée sur les cartes ── */
.variant-row { display: flex; gap: 7px; margin-top: 11px; }
.variant-btn {
  flex: 1; padding: 7px 4px; border-radius: 4px; background: #0d1730; border: 1px solid var(--border-2);
  color: var(--muted); font-family: var(--font-head); font-size: 11px; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer; transition: border-color .15s, color .15s;
}
.variant-btn:hover { border-color: var(--gold); }
.variant-btn.active { background: rgba(232, 187, 69, .13); border-color: var(--gold); color: var(--gold-2); }
.card-duree {
  position: absolute; bottom: 10px; left: 11px;
  font-family: var(--font-head); font-size: 10px; letter-spacing: .13em; text-transform: uppercase;
  color: #9fe8b6; background: rgba(9, 24, 16, .55); border: 1px solid #1f4a2e;
  padding: 3px 8px; border-radius: 3px;
}

/* ── Modale compte ── */
.acct-modal {
  position: fixed; inset: 0; z-index: 95; display: none; align-items: center; justify-content: center;
  background: rgba(4, 8, 18, .68); padding: 20px;
}
.acct-modal.open { display: flex; }
.acct-box {
  width: min(560px, 100%); max-height: 84vh; display: flex; flex-direction: column;
  background: #0e1730; border: 1px solid var(--border-2); border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6); animation: revealUp .25s ease both;
}
.acct-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid #1c2947; }
.acct-head h3 { margin: 0; font-family: var(--font-head); font-size: 19px; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); }
.acct-body { padding: 20px 22px; overflow-y: auto; }
.acct-profil { text-align: center; margin-bottom: 18px; }
.acct-avatar { width: 76px; height: 76px; border-radius: 6px; border: 1px solid var(--border-2); }
.acct-name { font-family: var(--font-head); font-size: 21px; margin-top: 10px; }
.acct-sub { font-size: 13px; color: var(--muted-3); margin-top: 3px; }
.acct-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.acct-stats > div { text-align: center; padding: 14px 8px; background: #0a1226; border: 1px solid var(--border); border-radius: 6px; }
.acct-stats b { display: block; font-family: var(--font-head); font-size: 20px; color: var(--gold); }
.acct-stats span { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-4); }
.acct-progress-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; text-align: center; }
.acct-bar { height: 9px; border-radius: 5px; background: #0a1226; border: 1px solid var(--border); overflow: hidden; }
.acct-bar div { height: 100%; background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); transition: width .8s ease; }
.acct-empty { font-size: 13.5px; color: var(--muted-3); text-align: center; padding: 18px 0; }
.acct-order { padding: 13px 15px; background: #0a1226; border: 1px solid var(--border); border-radius: 6px; margin-bottom: 10px; }
.acct-order-head { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 13.5px; margin-bottom: 6px; }
.acct-order-head .ok { color: var(--green); }
.acct-order-head .ko { color: #e05a4e; }
.acct-order-line { font-size: 13px; color: var(--muted); padding: 2px 0; }
.acct-order-total { margin-top: 7px; font-family: var(--font-head); font-size: 14px; color: var(--gold); }
.acct-color { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #16233f; font-size: 14px; }
.acct-color .swatch { width: 22px; height: 22px; border-radius: 4px; border: 1px solid var(--border-2); flex: none; }
.acct-color b { margin-left: auto; font-family: var(--font-head); font-size: 13px; color: var(--muted); }
.acct-hint { font-size: 12px; color: var(--muted-4); margin-top: 14px; line-height: 1.5; }
.acct-prio { display: flex; gap: 15px; align-items: flex-start; padding: 16px; background: #0a1226; border: 1px solid #3a1a1d; border-radius: 6px; }
.acct-prio.on { border-color: #1f4a2e; }
.acct-prio-icon { font-size: 26px; }
.acct-prio b { font-family: var(--font-head); font-size: 16px; }
.acct-prio p { margin: 5px 0 0; font-size: 13px; color: var(--muted-3); line-height: 1.5; }

/* ── Fiche produit ── */
.card { cursor: pointer; }
.prod-modal {
  position: fixed; inset: 0; z-index: 97; display: none; align-items: center; justify-content: center;
  background: rgba(4, 8, 18, .72); padding: 20px;
}
.prod-modal.open { display: flex; }
.prod-box {
  position: relative; width: min(760px, 100%); max-height: 88vh; overflow-y: auto;
  display: grid; grid-template-columns: 250px 1fr; gap: 0;
  background: #0e1730; border: 1px solid var(--border-2); border-radius: 10px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, .65); animation: revealUp .28s ease both;
}
.prod-close { position: absolute; top: 12px; right: 16px; z-index: 2; }
.prod-media {
  display: grid; place-items: center; padding: 30px 20px;
  background: radial-gradient(180px 150px at 50% 42%, rgba(232, 187, 69, .14), transparent 70%), #0a1226;
  border-right: 1px solid var(--border);
}
.prod-info { padding: 26px 28px 28px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
.prod-tag {
  font-family: var(--font-head); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px; border: 1px solid var(--border-2); color: var(--muted-2);
}
.prod-tag.duree { color: #9fe8b6; border-color: #1f4a2e; background: rgba(9, 24, 16, .5); }
.prod-tag.badge { background: linear-gradient(180deg, var(--gold-2), var(--gold-3)); color: #12183a; border-color: #f6dc84; font-weight: 700; }
.prod-info h3 { font-family: var(--font-head); font-weight: 600; font-size: 26px; line-height: 1.1; margin: 0; color: var(--text); }
.prod-long { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 12px 0 18px; }
.prod-features { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 9px; }
.prod-features li { position: relative; padding-left: 26px; font-size: 13.5px; color: #c9d2e0; }
.prod-features li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 18px; height: 18px; display: grid; place-items: center; border-radius: 3px;
  background: rgba(57, 213, 107, .12); border: 1px solid #1f4a2e; color: var(--green); font-size: 11px;
}
.prod-variants-label { font-family: var(--font-head); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-3); margin-bottom: 8px; }
.prod-variants .variant-row { margin-top: 0; margin-bottom: 18px; }
.prod-buy { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid #1c2947; }
.prod-buy .price { font-size: 30px; }
.prod-buy .btn { padding: 13px 22px; font-size: 15px; }
.prod-note { font-size: 11.5px; color: var(--muted-4); margin: 12px 0 0; line-height: 1.5; }
@media (max-width: 640px) {
  .prod-box { grid-template-columns: 1fr; }
  .prod-media { border-right: none; border-bottom: 1px solid var(--border); padding: 22px; }
  .prod-info { padding: 20px; }
  .prod-buy { flex-direction: column; align-items: stretch; }
  .prod-buy .btn { justify-content: center; }
}

/* ── Bloc membres Discord (bandeau stats) ── */
.live-discord { text-decoration: none; color: #8b9bd4; transition: color .2s, transform .2s; }
.live-discord:hover { color: var(--discord); transform: translateY(-2px); }
.live-discord .live-value { color: var(--discord); }
.live-discord .live-label b { color: var(--green); font-weight: 600; }

/* ── Bannière retour paiement + cookies ── */
.paye-banner {
  position: fixed; top: 74px; left: 50%; transform: translateX(-50%); z-index: 96;
  max-width: min(620px, 92vw); padding: 14px 22px; border-radius: 6px;
  font-family: var(--font-head); font-size: 14.5px; letter-spacing: .02em; text-align: center;
  animation: revealUp .35s ease both; box-shadow: 0 14px 44px rgba(0, 0, 0, .5);
}
.paye-banner.ok { background: #0e2a1a; border: 1px solid var(--green); color: #a8f2c0; }
.paye-banner.ko { background: #2a120e; border: 1px solid #e05a4e; color: #f2b4ab; }
.cookie-bar {
  position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 96; margin: 0 auto; max-width: 680px;
  display: flex; align-items: center; gap: 18px; padding: 16px 20px;
  background: #0e1730; border: 1px solid var(--border-2); border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .55); animation: revealUp .4s ease both;
}
.cookie-bar b { font-family: var(--font-head); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.cookie-bar p { margin: 5px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted-3); }
.cookie-bar a { color: var(--gold-2); }
.cookie-bar .btn { flex: none; }

@media (max-width: 720px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .site-header .wrap { justify-content: center; }
}

/* ── Accessibilité : réduction des animations ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #fxAsh, .fx-fog, .fx-scanlines, .fx-cursor { display: none; }
  .fx-vignette { animation: none; opacity: .7; }
  .reveal, .hero h1 .line-2.fx-pending { opacity: 1 !important; transform: none !important; }
  .ticker-track.scrolling { animation: none !important; }
}

/* ── Mobile : on allège ── */
@media (max-width: 720px) {
  .live-strip .wrap { gap: 14px 28px; }
  .live-value { font-size: 18px; }
  .fx-fog { display: none; }
}
