/* ==========================================================================
   NTX 2026 — Design System (rebuild from scratch)
   Identité officielle Natrix : or #c9a227 / noir profond.
   Typo de marque : Cinzel (display) + Montserrat (body). Aucune couleur off-brand.
   Énergie esport 2026 : titres massifs en majuscules, hub de pôles, grandes
   surfaces sombres, accents or maîtrisés.
   ========================================================================== */

:root {
    /* Fonds — officiel */
    --bg: #0a0908;
    --bg-2: #0f0e0c;
    --bg-3: #050505;
    --bg-elevated: #16140f;

    /* Surfaces / bordures */
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.06);
    --line: rgba(201, 162, 39, 0.14);
    --line-strong: rgba(201, 162, 39, 0.32);

    /* Or — officiel */
    --gold: #c9a227;
    --gold-2: #e8c547;
    --gold-deep: #8b7019;
    --gold-soft: rgba(201, 162, 39, 0.12);
    --gold-glow: rgba(201, 162, 39, 0.42);

    /* Texte — officiel */
    --text: #f8f6f0;
    --muted: #9a9590;
    --dim: #5a5550;

    --r-sm: 12px;
    --r: 18px;
    --r-lg: 28px;

    --maxw: 1220px;
    --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
    --shadow: 0 30px 80px -38px rgba(0, 0, 0, 0.9);
    --shadow-gold: 0 20px 56px -24px var(--gold-glow);

    --font-display: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--bg-3); }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2823; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ===== Backdrop ========================================================= */
.bg-fx { position: fixed; inset: 0; z-index: -2; background: var(--bg); overflow: hidden; }
.bg-fx::before {
    content: ""; position: absolute; inset: -20%;
    background:
        radial-gradient(38% 38% at 16% 10%, rgba(201, 162, 39, 0.10), transparent 60%),
        radial-gradient(42% 42% at 86% 16%, rgba(201, 162, 39, 0.05), transparent 60%),
        radial-gradient(52% 52% at 50% 102%, rgba(201, 162, 39, 0.06), transparent 60%);
    filter: blur(22px);
    animation: drift 24s var(--ease) infinite alternate;
}
@keyframes drift { 0% { transform: translate3d(-2%, -1%, 0) scale(1); } 100% { transform: translate3d(2%, 2%, 0) scale(1.08); } }
.bg-grain {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Typographic helpers ============================================= */
.kicker {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 700; font-size: 0.7rem;
    letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
    padding: 0.45rem 0.95rem; border: 1px solid var(--line-strong);
    background: var(--gold-soft); border-radius: 100px;
}
.kicker i { font-size: 0.78rem; }

.eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.h2 {
    font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
    font-size: clamp(1.9rem, 4.6vw, 3.1rem); line-height: 1.02; letter-spacing: 0.02em;
    margin: 0.55rem 0 0.5rem;
}
.h2 .soft { color: var(--dim); }
.h2 .au {
    background: linear-gradient(120deg, var(--gold-2), var(--gold) 52%, var(--gold-deep));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { color: var(--muted); font-size: 1.04rem; max-width: 580px; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; position: relative; }
.section-head { margin-bottom: 2.2rem; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong) 50%, transparent); border: 0; }

/* ===== Buttons ========================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    font-family: var(--font-body); font-weight: 700; font-size: 0.86rem;
    letter-spacing: 0.04em; padding: 0.9rem 1.55rem; border-radius: 100px;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-gold { color: var(--bg-3); background: linear-gradient(120deg, var(--gold-2), var(--gold)); box-shadow: 0 12px 32px -12px var(--gold-glow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost { color: var(--text); background: var(--surface); border-color: var(--line-strong); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: 0.98rem; }

.arrow-link { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.arrow-link i { transition: transform 0.25s var(--ease); }
.arrow-link:hover i { transform: translateX(5px); }

/* ===== Navbar (floating glass pill) ==================================== */
.nav {
    position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
    width: calc(100% - 2rem); max-width: var(--maxw); z-index: 1000;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 0.55rem 0.55rem 0.55rem 1.2rem; border-radius: 100px;
    background: rgba(12, 11, 9, 0.62); border: 1px solid var(--line);
    backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { background: rgba(7, 6, 5, 0.86); box-shadow: 0 16px 44px -22px rgba(0, 0, 0, 0.85); border-color: var(--line-strong); }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.06em; }
.nav-logo img { width: 38px; height: 38px; border-radius: 50%; object-fit: contain; background: #000; }
.nav-logo .gd { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; color: var(--muted); padding: 0.55rem 0.9rem; border-radius: 100px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.nav-socials { display: flex; gap: 0.1rem; }
.nav-socials a { width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted); border-radius: 50%; transition: color 0.2s, background 0.2s; }
.nav-socials a:hover { color: var(--gold); background: var(--surface); }
.nav-lang { display: flex; align-items: center; color: var(--muted); font-size: 0.82rem; font-weight: 600; padding: 0 0.3rem; }
.nav-lang:hover { color: var(--gold); }
.nav-burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px; color: var(--text); font-size: 1.1rem; }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(5, 4, 4, 0.97); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.mobile-menu a:hover { color: var(--gold); }

/* ===== Hero ============================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 8rem 1.4rem 3rem; overflow: hidden; }
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 60% 45% at 50% 30%, rgba(201, 162, 39, 0.14), transparent 60%),
        radial-gradient(circle at 50% 38%, #000 0%, #050505 46%, #0a0908 100%);
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06) 1px, transparent 1px);
    background-size: 58px 58px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 38%, #000 24%, transparent 78%);
    mask-image: radial-gradient(ellipse 70% 65% at 50% 38%, #000 24%, transparent 78%);
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero .kicker { margin-bottom: 1.6rem; }
.hero-crest {
    width: clamp(190px, 30vw, 320px); height: auto; margin-bottom: 0.6rem;
    -webkit-mask-image: radial-gradient(ellipse 60% 58% at 50% 50%, #000 46%, transparent 72%);
    mask-image: radial-gradient(ellipse 60% 58% at 50% 50%, #000 46%, transparent 72%);
    animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.2rem, 13vw, 8rem); line-height: 0.92; letter-spacing: 0.05em; text-transform: uppercase; text-shadow: 0 0 70px rgba(201, 162, 39, 0.16); }
.hero-title .gd { color: var(--gold); }
.hero-tag { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold); font-size: clamp(0.66rem, 2vw, 0.9rem); margin-top: 1.1rem; }
.hero-desc { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.14rem); max-width: 540px; margin: 1.5rem auto 0; }
.hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.scroll-hint { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--dim); font-size: 1.2rem; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ===== Stats strip ===================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.7rem 1rem; border: 1px solid var(--line); background: var(--surface); border-radius: var(--r); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; background: linear-gradient(120deg, var(--gold-2), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: 0.8rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.14em; }

/* ===== Univers / hub de pôles ========================================== */
.poles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.pole {
    position: relative; display: flex; flex-direction: column; min-height: 280px;
    padding: 1.8rem; border-radius: var(--r-lg); border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg-3)); overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.pole::before { content: ""; position: absolute; top: -40%; right: -20%; width: 80%; height: 80%; background: radial-gradient(circle, var(--gold-soft), transparent 62%); opacity: 0.7; pointer-events: none; }
.pole:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.pole > * { position: relative; z-index: 1; }
.pole-ic { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--gold-soft); color: var(--gold); font-size: 1.3rem; margin-bottom: 1.1rem; }
.pole-kicker { font-family: var(--font-body); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.pole h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.55rem; letter-spacing: 0.02em; margin: 0.35rem 0 0.5rem; }
.pole p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; flex: 1; }
.pole .arrow-link { margin-top: 1rem; }
.pole-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.pole-meta span { font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 0.28rem 0.65rem; border: 1px solid var(--line); border-radius: 100px; }

/* ===== Drop / Maillot showcase ========================================= */
.drop {
    position: relative; display: grid; grid-template-columns: 0.9fr 1fr; align-items: center;
    gap: clamp(1.4rem, 3vw, 2.6rem); padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden;
    background:
        radial-gradient(70% 120% at 92% 50%, var(--gold-soft), transparent 58%),
        linear-gradient(180deg, var(--bg-elevated), var(--bg-3));
}
.drop-media { position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #0c0b0a; }
.drop-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; transition: transform 0.7s var(--ease); }
.drop:hover .drop-media img { transform: scale(1.05); }
.drop-body { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.drop-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.1rem, 6.4vw, 3.6rem); line-height: 0.96; letter-spacing: 0.02em; }
.drop-title .yr { background: linear-gradient(120deg, var(--gold-2), var(--gold) 50%, var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.drop-desc { color: var(--muted); font-size: 1rem; max-width: 430px; }
.drop-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.drop-meta span { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); padding: 0.35rem 0.75rem; border: 1px solid var(--gold-soft); background: var(--gold-soft); border-radius: 100px; }
.drop-price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; }
.drop-price .cur { color: var(--gold); }
.drop-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 0.2rem; }

/* ===== Roster ========================================================== */
.roster-block { margin-top: 1.8rem; }
.roster-label { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-size: 0.82rem; margin-bottom: 1rem; }
.roster-label i { color: var(--gold); }
.roster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.player { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-elevated), var(--bg-3)); padding: 1.8rem 1rem 1.4rem; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; }
.player:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.player-photo { width: clamp(112px, 62%, 150px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); box-shadow: 0 0 34px -8px var(--gold-glow); background: #0c0b0a; margin-bottom: 1rem; }
.player-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.player:hover .player-photo img { transform: scale(1.06); }
.player-tag { position: absolute; top: 0.9rem; left: 0.9rem; font-family: var(--font-body); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; padding: 0.3rem 0.6rem; border-radius: 100px; background: var(--gold); color: var(--bg-3); }
.player-tag.aca { background: #8b93a3; color: #0c0e12; }
.player-name { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; letter-spacing: 0.02em; }
.player-real { color: var(--muted); font-size: 0.84rem; margin-top: 0.15rem; }
.player-socials { display: flex; gap: 0.5rem; margin-top: 0.8rem; justify-content: center; }
.player-socials a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: rgba(255, 255, 255, 0.08); color: var(--text); font-size: 0.85rem; transition: background 0.2s, color 0.2s; }
.player-socials a:hover { background: var(--gold); color: var(--bg-3); }
.player.join { display: grid; place-items: center; gap: 0.4rem; background: linear-gradient(160deg, var(--gold-soft), transparent); border-style: dashed; }
.player.join .pj-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--gold-soft); color: var(--gold); font-size: 1.4rem; margin: 0 auto 0.4rem; }
.player.join h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; }
.player.join p { color: var(--muted); font-size: 0.84rem; padding: 0 0.6rem; }
.player.join a { margin-top: 0.8rem; }

.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; max-width: 780px; margin: 0 auto; }
.staff { display: flex; align-items: center; gap: 1.1rem; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface); padding: 1.2rem 1.4rem; transition: border-color 0.3s, transform 0.3s; }
.staff:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.staff-pic { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); background: #0c0b0a; flex-shrink: 0; }
.staff h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; }
.staff .role { color: var(--muted); font-size: 0.84rem; }
.staff .badge { display: inline-flex; gap: 0.35rem; align-items: center; font-family: var(--font-body); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.staff-socials { margin-top: 0.5rem; display: flex; gap: 0.6rem; }
.staff-socials a { color: var(--muted); transition: color 0.2s; }
.staff-socials a:hover { color: var(--gold); }

/* ===== Bento (pourquoi NTX) ============================================ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s, box-shadow 0.35s; }
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--surface-2); box-shadow: var(--shadow); }
.card .bicon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--gold-soft); color: var(--gold); font-size: 1.25rem; margin-bottom: 1rem; }
.card h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* ===== Partners ======================================================== */
.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 2.2rem; }
.partners-official { text-align: center; margin: 2.4rem 0 2.2rem; }
.po-label { display: flex; align-items: center; justify-content: center; gap: 0.9rem; font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.po-label::before, .po-label::after { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55)); }
.po-label::after { background: linear-gradient(90deg, rgba(201, 162, 39, 0.55), transparent); }
.po-logo { display: block; }
.po-logo img { height: clamp(54px, 8.5vw, 78px); width: auto; object-fit: contain; display: block; margin: 0 auto; opacity: 0.94; transition: opacity 0.25s, transform 0.25s; }
.po-logo:hover img { opacity: 1; transform: translateY(-2px); }
.partner { height: 120px; display: grid; place-items: center; gap: 0.45rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: linear-gradient(180deg, var(--bg-elevated), var(--bg-3)); color: var(--muted); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.partner::before { content: "\f067"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 1.05rem; color: var(--gold); opacity: 0.85; }
.partner:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.partner-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 2rem; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(120deg, var(--gold-soft), transparent 60%); }
.partner-cta h4 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.02em; }
.partner-cta p { color: var(--muted); font-size: 0.92rem; }

/* ===== Discord ========================================================= */
.discord { text-align: center; padding: clamp(2.6rem, 6vw, 4rem) 1.5rem; border-radius: var(--r-lg); border: 1px solid var(--line); background: radial-gradient(60% 80% at 50% 25%, var(--gold-soft), transparent 70%), var(--bg-2); position: relative; overflow: hidden; }
.discord-orb { width: 104px; height: 104px; margin: 0 auto 1.4rem; border-radius: 50%; display: grid; place-items: center; color: var(--bg-3); font-size: 2.6rem; background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep)); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--gold-glow); } 70% { box-shadow: 0 0 0 32px rgba(201, 162, 39, 0); } 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); } }
.discord h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 4.4vw, 2.4rem); letter-spacing: 0.02em; }
.discord-tags { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; margin: 1rem 0 1.8rem; color: var(--muted); font-size: 0.88rem; }
.discord-tags span { display: inline-flex; align-items: center; gap: 0.5rem; }
.discord-tags span::before { content: "●"; color: var(--gold); font-size: 0.5rem; }

/* ===== Contact ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.contact-side h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.6rem, 3.6vw, 2.2rem); letter-spacing: 0.02em; margin-top: 1rem; }
.contact-side p { color: var(--muted); margin-top: 0.8rem; }
.contact-channels { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-channel { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.1rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); transition: border-color 0.2s, transform 0.2s; }
.contact-channel:hover { border-color: var(--gold); transform: translateX(4px); }
.contact-channel i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--gold-soft); color: var(--gold); }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(0, 0, 0, 0.25); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field select option { background: #14130f; }
.form .btn { width: 100%; margin-top: 0.4rem; }
.form-note { color: var(--dim); font-size: 0.78rem; margin-top: 0.8rem; text-align: center; }

/* ===== Final CTA ======================================================= */
.final-cta { text-align: center; padding: clamp(3.5rem, 9vw, 6rem) 1.5rem; border-radius: var(--r-lg); border: 1px solid var(--line); background: radial-gradient(70% 120% at 50% 0%, var(--gold-soft), transparent 60%), var(--bg-2); position: relative; overflow: hidden; }
.final-cta h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: 0.02em; line-height: 1.04; }
.final-cta p { color: var(--muted); margin: 1rem auto 2rem; max-width: 480px; }

/* ===== Footer ========================================================== */
.foot { border-top: 1px solid var(--line); padding: 2.8rem 0 2rem; margin-top: 2.5rem; }
.foot-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.foot-brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.04em; }
.foot-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: contain; background: #000; }
.foot-tagline { color: var(--muted); font-size: 0.9rem; margin-top: 0.7rem; max-width: 290px; }
.foot-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.foot-socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; border: 1px solid var(--line); color: var(--muted); transition: all 0.2s; }
.foot-socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.foot-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.9rem; }
.foot-col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; color: var(--dim); font-size: 0.82rem; }

/* ===== Résultats / Palmarès ============================================ */
.results-feed { display: grid; gap: 0.7rem; }
.result-row {
    display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 1.1rem;
    padding: 0.95rem 1.2rem; border: 1px solid var(--line); border-radius: var(--r);
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg-3));
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.result-row:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.result-row.top { border-color: var(--line-strong); }
.result-row.featured {
    position: relative; margin-top: 0.7rem;
    border-color: var(--gold);
    background:
        radial-gradient(120% 180% at 0% 0%, rgba(201, 162, 39, 0.22), transparent 60%),
        linear-gradient(180deg, var(--bg-elevated), var(--bg-3));
    box-shadow: 0 0 0 1px var(--gold-soft), 0 14px 40px -18px rgba(201, 162, 39, 0.55), var(--shadow);
}
.result-row.featured .result-place { font-size: 1.85rem; }
.result-flag {
    position: absolute; top: -0.7rem; left: 1.1rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-body); font-weight: 800; font-size: 0.64rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: #12100a;
    padding: 0.28rem 0.7rem; border-radius: 100px;
    background: linear-gradient(120deg, var(--gold-2), var(--gold-deep));
    box-shadow: 0 4px 14px -6px rgba(201, 162, 39, 0.8);
}
.result-prize {
    font-family: var(--font-display); font-weight: 800; font-size: 1rem; line-height: 1;
    color: var(--gold);
}
.result-points {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
    color: var(--muted); white-space: nowrap;
}
.result-place { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; text-align: center; background: linear-gradient(120deg, var(--gold-2), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.result-place .hash { font-size: 0.85rem; opacity: 0.8; }
.result-main { min-width: 0; }
.result-event { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.98rem; letter-spacing: 0.01em; }
.result-sub { color: var(--muted); font-size: 0.82rem; margin-top: 0.15rem; }
.result-sub .result-player { color: var(--gold); font-weight: 600; }
.result-meta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.result-date { color: var(--muted); font-size: 0.8rem; white-space: nowrap; }
.result-game { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding: 0.22rem 0.55rem; border: 1px solid var(--gold-soft); background: var(--gold-soft); border-radius: 100px; }
.data-note { margin-top: 1.1rem; text-align: center; color: var(--dim); font-size: 0.78rem; }
.data-note a { color: var(--muted); text-decoration: underline; }
.data-note a:hover { color: var(--gold); }

/* ===== Calendrier ====================================================== */
.cal { display: grid; gap: 0.7rem; }
.cal-item { display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: 1.1rem; padding: 0.85rem 1.2rem; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(180deg, var(--bg-elevated), var(--bg-3)); transition: transform 0.3s var(--ease), border-color 0.3s; }
.cal-item:hover { transform: translateY(-3px); border-color: var(--gold); }
.cal-date { text-align: center; border-right: 1px solid var(--line); padding-right: 0.6rem; }
.cal-day { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; color: var(--gold); }
.cal-month { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-top: 0.15rem; }
.cal-main { min-width: 0; }
.cal-event { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.98rem; }
.cal-sub { color: var(--muted); font-size: 0.82rem; margin-top: 0.15rem; }
.cal-rappel { font-family: var(--font-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line-strong); background: var(--gold-soft); padding: 0.5rem 0.9rem; border-radius: 100px; white-space: nowrap; transition: background 0.2s, color 0.2s; }
.cal-rappel:hover { background: var(--gold); color: var(--bg-3); }
.cal-empty { text-align: center; color: var(--muted); padding: 2rem 1rem; border: 1px dashed var(--line-strong); border-radius: var(--r); }

@media (max-width: 560px) {
    .result-row { grid-template-columns: 54px 1fr; }
    .result-meta { grid-column: 2; flex-direction: row; align-items: center; justify-content: flex-start; gap: 0.5rem; margin-top: 0.2rem; }
    .cal-item { grid-template-columns: 54px 1fr; }
    .cal-rappel { grid-column: 2; justify-self: start; }
}

/* ===== Drapeau belge (CSS, rendu identique sur tous les OS) ============ */
.be-flag {
    display: inline-block; width: 1.5em; height: 1.05em; border-radius: 3px;
    vertical-align: -0.18em; flex-shrink: 0;
    background: linear-gradient(90deg, #1a1a1a 0 33.33%, #FDDA24 33.33% 66.66%, #EF3340 66.66% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}
.be-flag-lg { width: 2.8rem; height: 1.95rem; border-radius: 6px; -webkit-text-fill-color: initial; }

/* ===== Drapeau français (CSS) ========================================== */
.fr-flag {
    display: inline-block; width: 1.5em; height: 1.05em; border-radius: 3px;
    vertical-align: -0.18em; flex-shrink: 0;
    background: linear-gradient(90deg, #0055A4 0 33.33%, #FFFFFF 33.33% 66.66%, #EF4135 66.66% 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

/* ===== Reveal =========================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ====================================================== */
@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-burger { display: grid; place-items: center; }
    .nav-socials, .nav-lang { display: none; }
    .poles { grid-template-columns: 1fr; }
    .drop { grid-template-columns: 1fr; }
    .drop-media { aspect-ratio: 16 / 10; order: -1; }
    .roster-grid { grid-template-columns: repeat(2, 1fr); }
    .bento { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .wrap { padding: 0 1.1rem; }
    .roster-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .staff-grid { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav { padding-left: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ======================================================================
   Bandeau événement — Finale mondiale FNCS à Anvers (identité belge)
   ====================================================================== */
.anvers {
    position: relative; overflow: hidden;
    display: grid; grid-template-columns: 1.25fr 0.9fr; gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.8rem, 4vw, 3rem);
    border-radius: var(--r-lg);
    background:
        radial-gradient(120% 140% at 100% 0%, rgba(201, 162, 39, 0.18), transparent 58%),
        linear-gradient(180deg, var(--bg-elevated), var(--bg-2));
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
}
.anvers::before {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 6px;
    background: linear-gradient(180deg, #1a1a1a 0 33.33%, #FDDA24 33.33% 66.66%, #EF3340 66.66% 100%);
}
.anvers-fr::before {
    background: linear-gradient(180deg, #0055A4 0 33.33%, #FFFFFF 33.33% 66.66%, #EF4135 66.66% 100%);
}
.anvers-body { position: relative; z-index: 1; }
.anvers-kicker {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 700; font-size: 0.78rem;
    letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
    padding: 0.4rem 0.85rem; border: 1px solid var(--line-strong); border-radius: 100px;
    background: var(--gold-soft);
}
.anvers h2 {
    font-family: var(--font-display); font-weight: 800; line-height: 1.08;
    font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin: 1rem 0 0.7rem; text-transform: uppercase;
}
.anvers h2 .au { color: var(--gold); }
.anvers p { color: var(--muted); max-width: 46ch; margin-bottom: 1.4rem; }
.anvers-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.anvers-aside {
    position: relative; z-index: 1; display: flex; flex-direction: column;
    align-items: center; gap: 1rem;
}
.anvers-date {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em;
    color: var(--text); font-size: 1.05rem;
}
.anvers-count { display: flex; gap: 0.6rem; }
.cd-box {
    min-width: 70px; padding: 0.7rem 0.5rem; text-align: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.cd-num {
    font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.1rem);
    color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums;
}
.cd-lab { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }
@media (max-width: 860px) {
    .anvers { grid-template-columns: 1fr; text-align: center; }
    .anvers::before { left: 0; right: 0; bottom: auto; width: auto; height: 6px; }
    .anvers p { margin-left: auto; margin-right: auto; }
    .anvers-kicker, .anvers-cta { justify-content: center; }
    .anvers-cta { justify-content: center; }
}

/* ======================================================================
   Pôle Contenu / Live (réseaux + diffusion)
   ====================================================================== */
.live-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1rem, 2.5vw, 1.6rem); }
.live-feature {
    position: relative; overflow: hidden; border-radius: var(--r);
    border: 1px solid var(--line-strong); background: var(--bg-2);
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 280px; padding: clamp(1.4rem, 3vw, 2.2rem);
    background-image:
        radial-gradient(120% 120% at 0% 0%, rgba(201, 162, 39, 0.16), transparent 55%),
        linear-gradient(180deg, rgba(10, 9, 8, 0.4), var(--bg-2));
}
.live-feature .live-ic {
    position: absolute; top: 1.3rem; left: 1.3rem; width: 52px; height: 52px;
    display: grid; place-items: center; border-radius: 14px; font-size: 1.4rem;
    color: var(--gold); background: var(--gold-soft); border: 1px solid var(--line-strong);
}
.live-feature h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); text-transform: uppercase; }
.live-feature p { color: var(--muted); margin: 0.5rem 0 1.2rem; max-width: 42ch; }
.live-platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.live-card {
    display: flex; align-items: center; gap: 0.85rem; padding: 1rem;
    border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s;
}
.live-card:hover { border-color: var(--line-strong); transform: translateY(-3px); background: var(--surface-2); }
.live-card i { font-size: 1.5rem; color: var(--gold); width: 28px; text-align: center; }
.live-card .lc-name { font-family: var(--font-body); font-weight: 700; color: var(--text); font-size: 0.95rem; }
.live-card .lc-sub { color: var(--muted); font-size: 0.8rem; }
@media (max-width: 860px) {
    .live-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .live-platforms { grid-template-columns: 1fr; }
}

/* ======================================================================
   Partenaires — argumentaire renforcé
   ====================================================================== */
.partner-pitch { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.4rem; }
.pp-item {
    text-align: center; padding: 1.3rem 1rem; border: 1px solid var(--line);
    border-radius: var(--r-sm); background: var(--surface);
}
.pp-item i { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.6rem; }
.pp-item h5 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.3rem; }
.pp-item p { color: var(--muted); font-size: 0.83rem; line-height: 1.45; }
@media (max-width: 860px) { .partner-pitch { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .partner-pitch { grid-template-columns: 1fr; } }
