:root {
    --primary-color: #ff007f;
    --secondary-color: #5865f2;
    --background-color: #17171a;
    --text-color: #fff;
    --highlight-color: #00a8ff;
    --glass-bg: rgba(23,23,26,0.72);
    --surface-mid: #1f1f1f;
    --focus-ring: 0 0 0 3px rgba(255,0,127,0.23);
    --transition-fast: 0.16s cubic-bezier(.48,.08,.52,.92);
    --gradient1: linear-gradient(120deg,#ff007f 10%, #8a2be2 60%, #00a8ff 100%);
    --gradient2: linear-gradient(120deg,#222239 10%, #18182c 100%);
}

/* -------------------- Base -------------------- */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-size: 15px;
}
*, *::before, *::after {
    box-sizing: inherit;
    max-width: 100%;
}
body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(120deg, #17171a 0%, #1a1723 65%, #22213a 100%);
    background-size: 400% 400%;
    animation: gradient-flow 18s ease-in-out infinite;
    color: var(--text-color);
    min-height: 100vh;
    letter-spacing: 0.01em;
    line-height: 1.6;
    margin: 0;
}
@keyframes gradient-flow {
    0% {background-position:0 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0 50%;}
}

a { color: var(--highlight-color); text-decoration: none; transition: color var(--transition-fast);}
a:hover, a:focus-visible { color: var(--primary-color);}
img { max-width: 100%; display: block; border-radius: 13px;}

::-webkit-scrollbar { width:8px; background: #222; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 6px; }

/* -------------------- Progress Bar -------------------- */
.progress-bar {
    position: fixed; top: 0; left: 0; height: 4px;
    background: var(--gradient1);
    width: 0; z-index: 99999;
    transition: width 0.15s;
    border-radius: 0 6px 6px 0;
}

/* -------------------- Header & Discord bouton -------------------- */
header .btn-primary,
.btn-primary,
.cta-mobile-discord {
    display: flex;
    align-items: center;
    gap: 9px;
}
.icon-discord {
    width: 23px;
    height: 23px;
    display: inline-block;
    margin-right: 7px;
    vertical-align: middle;
    border-radius: 6px;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain;
    transition: filter 0.12s;
    padding: 0 !important;
}
.discord-button .icon-discord,
.btn-primary .icon-discord {
    background: #5865f2;
    padding: 2px;                  /* taille stable */
    border-radius: 50%;
    box-shadow: 0 0 6px #5865f230;
}
.discord-button:hover .icon-discord,
.btn-primary:hover .icon-discord {
    filter: brightness(1.13) drop-shadow(0 0 4px #5865f2);
    background: #4752c4;
    padding: 2px;                  /* pas de saut */
}
.cta-mobile-discord .icon-discord {
    background: transparent !important;
    box-shadow: none !important;
    width: 25px;
    height: 25px;
    margin-right: 8px;
    padding: 0 !important;
    border-radius: 7px;
    object-fit: contain;
}

/* -------------------- Waves -------------------- */
.wave-transition { width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; position: relative; z-index: 9; }
.wave-transition svg { display: block; width: 100%; height: 90px; }

/* -------------------- Header -------------------- */
header { background: transparent; position: sticky; top: 0; z-index: 1000; }
header .container {
    max-width: 1100px; width: 96%; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    border-radius: 21px; margin-top: 7px; padding: 4px 12px 4px 7px;
    backdrop-filter: blur(13px) saturate(1.14);
    box-shadow: 0 2px 16px 0 #00000018, 0 2px 14px 0 #ff007f13;
    background: var(--glass-bg);
}
.logo a { display: flex; align-items: center; gap:8px;}
.logo-img { width: 40px; height: 40px; border-radius: 12px;}
header .logo h1 { font-size: 1.15rem; font-weight: 700; color: #fff; letter-spacing: -0.5px;}
nav[aria-label] { display: flex; align-items: center;}
.nav-list { list-style: none; display: flex; gap: 12px; }
.nav-list li a {
    color: #ededed; font-weight: 600; font-size: 1.02rem; padding: 7px 12px;
    border-radius: 8px; transition: color var(--transition-fast), background var(--transition-fast);
    display: flex; align-items: center; gap: 7px; opacity: 0.93; position: relative; letter-spacing: .01em;
}
.nav-list li a.active, .nav-list li a:focus-visible, .nav-list li a:hover {
    color: var(--primary-color); background: rgba(255,0,127,0.14);
}
header .btn-primary {
    padding: 8px 16px; background: var(--secondary-color);
    color: #fff; border-radius: 11px; display: flex; align-items: center; gap: 7px;
    font-weight: 700; font-size: 1em; box-shadow: 0 1px 6px 0 #5865f245;
    border: 2px solid transparent;               /* ← stable */
    cursor: pointer; transition: background var(--transition-fast), box-shadow var(--transition-fast), filter .14s, border-color .14s;
    filter: drop-shadow(0 0 12px #5865f280);
    box-sizing: border-box;
}
header .btn-primary:hover, .btn-primary.neon:hover, .btn-primary.neon:focus-visible {
    background: #4752c4; filter: drop-shadow(0 0 26px #ff007f77); border-color: var(--highlight-color);
}

/* -------------------- Neon -------------------- */
.neon { box-shadow: 0 0 12px #ff007f80, 0 0 19px #5865f280; animation: neon-glow 2s infinite alternate; }
@keyframes neon-glow { from { filter: drop-shadow(0 0 8px #ff007f50);} to { filter: drop-shadow(0 0 22px #00a8ff80);} }
.pulse { animation: pulse-glow 1.6s infinite alternate; }
@keyframes pulse-glow { 0% { box-shadow: 0 0 8px #ff007f90, 0 0 7px #5865f280;} 100% { box-shadow: 0 0 24px #ff007faa, 0 0 12px #00a8ff80;} }

/* -------------------- Glass -------------------- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(13px) saturate(1.13);
    box-shadow: 0 2px 18px #ff007f13, 0 4px 24px 0 #5865f220;
    border-radius: 17px;
    border: 1px solid rgba(255,255,255,0.045);
}
.glass-hover {
    background: var(--glass-bg);
    transition: transform .18s cubic-bezier(.55,.08,.53,.95), box-shadow .18s, background .19s;
    border-radius: 20px; box-shadow: 0 2px 18px #ff007f09, 0 4px 20px 0 #5865f210; will-change: transform;
}
.glass-hover:hover, .glass-hover:focus-visible {
    transform: translateY(-7px) scale(1.02) rotate(-0.4deg); /* réduit pour éviter les frictions */
    background: rgba(40,14,34,0.73);
    box-shadow: 0 8px 32px #ff007f29, 0 12px 44px #00a8ff16;
}
.glass-hover:active { transform: scale(.98) rotate(0); }

/* -------------------- Alt section gradients -------------------- */
.alt-gradient { background: var(--gradient2); position: relative; z-index: 1; overflow: hidden; }
.alt-gradient::after { content: ""; position: absolute; z-index: 0; inset: 0; opacity: 0.18; background: var(--gradient1); filter: blur(55px) saturate(1.14); pointer-events: none; }
.alt-gradient > .container, .alt-gradient > .section-content, .alt-gradient > *:not(:last-child) { position: relative; z-index: 1; }

/* -------------------- Hero -------------------- */
.hero-v3 { position: relative; display: flex; align-items: center; justify-content: center; min-height: 88vh; width: 100%; gap: 2vw; padding: 0 5vw; background: #18181d; overflow: hidden; }
.bg-animated { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 70% 45% at 55% 43%, #ff007f33 0%, #5865f22a 45%, transparent 100%), radial-gradient(ellipse 40% 80% at 10% 90%, #00a8ff22 0%, transparent 70%); animation: gradient-move 8s infinite alternate; }
@keyframes gradient-move { 0% { background-position: 100% 0, 0 100%; } 100% { background-position: 60% 0, 50% 100%; } }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.hero-content { max-width: 530px; display: flex; flex-direction: column; gap: 18px; z-index: 3; position: relative; align-items: flex-start; justify-content: center; animation: fadeInUp 0.9s; font-size: 1em; }
section, .team, .creators, .services, .faq, .howitworks, .cta-final, .hero-content { position: relative; z-index: 2; }
.section-content { position: relative; z-index: 2; }
.hero-v3 h2 { font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1.09; margin-bottom: 0; letter-spacing: -1px; text-shadow: 0 1px 18px #0008; }
.hero-main { display: block; }
.hero-highlight, .hero-gaming { color: var(--highlight-color); padding: 0 9px; border-radius: 8px; font-weight: 800; background: rgba(0,168,255,0.12); }
.hero-secondary { display: block; font-size: 1.3rem; font-weight: 700; margin-top: 5px; }
.hero-desc { font-size: 1rem; color: #eaeaea; line-height: 1.52; font-weight: 400; text-shadow: 0 1px 8px #0003; }
.hero-certif { font-size: 0.97rem; margin-bottom: 0.4em; padding: 7px 15px; letter-spacing: 0; }
.certif-badge { background: var(--primary-color); color: #fff; border-radius: 4px; padding: 2px 8px; font-size: 0.95em; margin-left: 5px; font-weight: 700; letter-spacing: 0.03em; }

/* -------------------- CTA Buttons -------------------- */
.cta-buttons { display: flex; gap: 12px; margin-top: 11px; z-index: 3; position: relative; }
.btn-secondary, .cta-buttons .btn-primary, .btn-primary {
    padding: 10px 19px; border-radius: 16px; font-weight: 700; font-size: 1rem; border: 2px solid transparent; /* ← épaisseur stable */
    outline: none; box-shadow: 0 2px 11px 0 #00000020; transition: background var(--transition-fast), box-shadow var(--transition-fast), border-color .19s, color var(--transition-fast);
    cursor: pointer; display: flex; align-items: center; gap: 7px; position: relative; overflow: hidden; box-sizing: border-box;
}
.btn-secondary { background: var(--primary-color); color: #fff; }
.btn-secondary:hover, .btn-secondary:focus-visible { background: #e60073; color: #fff; border-color: transparent; }
.cta-buttons .btn-primary, .btn-primary { background: var(--secondary-color); color: #fff; }
.cta-buttons .btn-primary:hover,
.cta-buttons .btn-primary:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
    background: #4752c4; color: #fff; box-shadow: 0 0 15px #00a8ff40; border-color: var(--highlight-color); /* ← change couleur, pas taille */
}

/* Ripple (facultatif – inchangé) */
.btn-primary.ripple:after, .btn-secondary.ripple:after { content: ""; display: block; position: absolute; border-radius: 50%; width: 120%; height: 120%; left: 50%; top: 50%; pointer-events: none; background: rgba(255,0,127,0.17); transform: translate(-50%, -50%) scale(0); transition: transform .4s, opacity .7s; opacity: 0.4; }
.btn-primary.ripple:active:after, .btn-secondary.ripple:active:after { transform: translate(-50%, -50%) scale(1.2); opacity: 0; transition: 0s; }

/* -------------------- CTA sticky mobile -------------------- */
.cta-mobile-discord { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 5001; background: var(--primary-color); color: #fff; padding: 11px 0; text-align: center; font-size: 1em; font-weight: 700; border-radius: 13px 13px 0 0; box-shadow: 0 -4px 32px #ff007f18; transition: filter 0.13s, background .13s; filter: drop-shadow(0 0 18px #ff007f80); }

/* -------------------- Scroll Down -------------------- */
.hero-content .scroll-down { margin-top: 30px; display: flex; flex-direction: column; align-items: center; width: 100%; z-index: 2; }
.scroll-text { color: #fff; font-size: 1rem; margin-bottom: 8px; font-weight: 600; letter-spacing: 0.02em; text-align: center; opacity: .94; }
.arrow-circle { display: inline-flex; justify-content: center; align-items: center; background: transparent; width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--highlight-color); }
.arrow { color: var(--highlight-color); font-size: 22px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0);} 40%{transform:translateY(-9px);} 60%{transform:translateY(-5px);} }

/* -------------------- Sections -------------------- */
.team, .creators, .services, .faq, .howitworks, .cta-final { text-align: center; padding: 48px 10px 44px 10px; transition: background 0.13s; }

h3 { font-size: 1.75rem; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.4px; }
h3 span { color: var(--primary-color); }
.team-subtitle, .creators-subtitle, .services p, .howitworks-content, .cta-final p { color: #e0e0e0; margin-bottom: 29px; font-size: 1.05em; opacity: 0.95; }

.team-members, .creators-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 22px; justify-content: center; align-items: stretch; max-width: 820px; margin: 0 auto; width: 100%; }
.team-member, .creator-item { background: none; border-radius: 13px; padding: 17px 7px 9px; transition: box-shadow 0.17s, transform 0.17s; display: flex; flex-direction: column; align-items: center; max-width: 170px; margin: auto; min-height: 185px; position: relative; }
.team-member img, .creator-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; margin-bottom: 9px; box-shadow: 0 4px 16px #0005; }
.team-member p, .creator-item p { margin-top: 5px; font-size: 0.98rem; font-weight: 600; }
.team-member p a, .creator-item p a { color: #fff; }
.team-member p a:hover, .creator-item p a:hover { color: var(--primary-color); }
.role { font-size:.90em;color:#aab;font-weight:400; }

/* -------------------- Services -------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 17px; max-width: 870px; margin: 0 auto; }
.service-item { border-radius: 9px; padding: 19px 10px; min-height: 110px; display: flex; flex-direction: column; align-items: center; }
.service-item h4 { font-size: 1.07rem; margin-bottom: 7px; color: var(--primary-color); font-weight: 700; }
.service-item h4 i { font-size: 1.19em; vertical-align: middle; margin-right: 5px; }
.service-item p { font-size: .97rem; color: #dddddd; line-height: 1.5; margin-bottom: 7px; }

/* -------------------- How it works -------------------- */
.howitworks-content { display: flex; flex-wrap: wrap; gap: 19px; justify-content: center; align-items: flex-start; margin-top: 15px; }
.how-step { border-radius: 8px; padding: 17px 10px; min-width: 150px; max-width: 280px; flex: 1 1 150px; box-shadow: 0 2px 10px #0002; }
.how-step h4 { color: var(--primary-color); font-size: 0.99rem; margin-bottom: 7px; }
.how-step p { color: #ccc; font-size: .98rem; line-height: 1.5; }

/* -------------------- FAQ -------------------- */
.faq-list { display: flex; flex-direction: column; gap: 18px; max-width: 650px; margin: 35px auto 0; }
.faq-item { border-radius: 12px; box-shadow: 0 2px 8px #00000012; padding: 17px 14px; text-align: left; background: var(--surface-mid); border: 1px solid #25253a; }
.faq-item h4 { color: var(--highlight-color); font-size: 1rem; margin-bottom: 5px; }
.faq-item p { color: #e0e0e0; font-size: .98rem; line-height: 1.45; }

/* -------------------- CTA Final -------------------- */
.cta-final .btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin: 19px auto 0;
    font-size: 1em; font-weight: 700; padding: 10px 19px; border-radius: 17px; background: var(--secondary-color); color: #fff; box-shadow: 0 2px 15px 0 #5865f230; border: 2px solid transparent; text-align: center; text-decoration: none; cursor: pointer; min-width: 120px; max-width: 100vw; box-sizing: border-box;
}
.cta-final .btn-primary:hover, .cta-final .btn-primary:focus-visible { background: #4752c4; color: #fff; box-shadow: 0 4px 22px 0 #5865f250; border-color: var(--highlight-color); }

/* -------------------- Form -------------------- */
.cta-final form { margin: 28px auto 0; max-width: 340px; background: var(--glass-bg); padding: 13px 8px 7px 8px; border-radius: 15px; box-shadow: 0 4px 28px #00000013, 0 8px 34px #5865f229; display: flex; flex-direction: column; gap: 13px; position: relative; z-index: 2; }
.input-container { display: flex; flex-direction: column; margin-bottom: 6px; gap: 6px; }
.input-container label { font-weight: 600; color: #fff; margin-bottom: 2px; }
.input-container input[type="text"], .input-container input[type="email"] { border-radius: 7px; border: 1px solid #26264b; padding: 9px 9px; font-size: .97rem; background: #1f1f28e8; color: #fff; outline: none; transition: border-color 0.19s; }
.input-container input[type="text"]:focus, .input-container input[type="email"]:focus { border-color: var(--primary-color); }
.radio-container { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.radio-container label { font-weight: 500; color: #d4d4ec; }
.submit-button { background: var(--primary-color); color: #fff; font-weight: 700; font-size: .99rem; padding: 9px 0; border: none; border-radius: 13px; margin-top: 7px; cursor: pointer; box-shadow: 0 2px 18px #ff007f22; transition: background 0.15s, box-shadow 0.15s; width: 100%; max-width: 100vw; }
.submit-button:hover { background: #e60073; box-shadow: 0 4px 26px #ff007f55; }

/* -------------------- Modal -------------------- */
.code-agency-container { position: relative; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.info-button { background: #26264b; color: var(--highlight-color); border: none; border-radius: 8px; padding: 7px 12px; margin-left: 7px; font-size: 0.98em; cursor: pointer; transition: background 0.13s, color 0.13s; }
.info-button:hover { background: var(--primary-color); color: #fff; }

.modal { display: none; position: fixed; z-index: 10011; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(25,18,27,0.92); opacity: 0; pointer-events: none; transition: opacity 0.23s; backdrop-filter: blur(7px) saturate(1.05); overflow-y: auto; overflow-x: hidden; padding-top: 70px; padding-bottom: 0; box-sizing: border-box; align-items: flex-start; justify-content: center; display: flex; }
.modal[style*="block"] { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--glass-bg); padding: 19px 10px 13px 10px; border-radius: 15px; box-shadow: 0 6px 38px #ff007f17; position: relative; color: #fff; text-align: left; width: 97vw; max-width: 340px; max-height: unset; margin: 0 auto; box-sizing: border-box; transform: translateY(18px) scale(0.98); opacity: 0; transition: transform 0.22s, opacity 0.21s; overflow-y: auto; }
.modal[style*="block"] .modal-content { transform: translateY(0) scale(1); opacity: 1; }
.modal-content h2 { font-size: 1.1em; margin-bottom: 7px; }
.modal-content p { color: #d2d2ef; margin-bottom: 11px; }
.modal-content .step { margin-bottom: 9px; }
.modal-content .step h3 { font-size: .97em; margin-bottom: 2px; }
.modal-content img { max-width: 100%; border-radius: 7px; box-shadow: 0 1px 8px #2223; }
.close { position: absolute; top: 8px; right: 12px; font-size: 1.5em; font-weight: 800; color: #ff007f; cursor: pointer; }
.modal-button, #cta-button { background: var(--primary-color); color: #fff; font-weight: 700; border: none; border-radius: 8px; padding: 9px 15px; margin-top: 11px; cursor: pointer; box-shadow: 0 2px 16px #ff007f24; font-size: .97em; }
.modal-button:hover, #cta-button:hover { background: #e60073; }

/* -------------------- Reveal -------------------- */
.reveal { opacity: 0; transform: translateY(50px) scale(.98); transition: all .66s cubic-bezier(.44,.12,.35,1.16); will-change: opacity, transform; }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
.stagger > * { opacity: 0; transform: translateY(36px) scale(.97); transition: all .49s cubic-bezier(.44,.12,.35,1.16); }
.stagger.active > * { opacity: 1; transform: translateY(0) scale(1); }
@keyframes fadeInUp { from{opacity:0;transform:translateY(70px);} to{opacity:1;transform:none;} }

/* -------------------- Footer -------------------- */
footer { background: var(--background-color); padding: 16px 0; text-align: center; border-top: 1.5px solid #222; }
footer p { color: #cccccc; font-size: 0.92em; letter-spacing: 0.03em; }
.official-page { font-size: 0.98em; color: #00a8ff; font-weight: 700; margin-bottom: 2px; letter-spacing: 0.03em; }

/* -------------------- Responsive -------------------- */
@media (max-width:1200px) {
    header .container { max-width: 99vw; }
    .team-members, .creators-grid { max-width: 97vw; }
}

@media (max-width:900px) {
    .hero-v3 { flex-direction: column; align-items: center; gap: 22px; padding: 22px 2vw 0; min-height: 65vh; }
    .hero-content { align-items: center; text-align: center; }
    .cta-mobile-discord { display: block; }
    header .container { flex-direction: column; gap: 7px; padding: 7px 6px; }
    .nav-list { gap: 7px; }
    .nav-list li a { padding: 5px 6px; font-size: .98em; }
    header .btn-primary { padding: 7px 11px; font-size: .96em; }
    /* Le CTA fixe ne masque plus le contenu */
    main { padding-bottom: 70px; }
}

@media (max-width:800px) {
    .team-members, .creators-grid { grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 7px; }
    .team-member, .creator-item { max-width: 110px; padding: 4px 2px 4px; }
    .team-member img, .creator-item img { width: 46px; height: 46px; }
    .services-grid { gap: 7px; }
}

@media (max-width:700px) {
    .hero-v3 { padding-top: 30px; min-height: 0; gap: 4px; }
    .hero-content { max-width: 100%; gap: 5px; }
    .hero-v3 h2 { font-size: .92rem; }
    .hero-secondary { font-size: .7rem; }
    .team, .creators, .services, .faq, .howitworks, .cta-final { padding: 19px 2vw 18px 2vw; }
    .section-content { padding: 0; }
}

@media (max-width:600px) {
    .cta-buttons { flex-direction: column; align-items: center; gap: 7px; }
    .btn-secondary, .cta-buttons .btn-primary, .btn-primary { width: 99%; padding: 8px 0; }
    .hero-content .scroll-down { margin-top: 7px; }
    .services-grid { grid-template-columns: 1fr; }
    .howitworks-content { flex-direction: column; gap: 7px; }
    .cta-final .btn-primary { width: 99%; font-size: .96em; padding: 8px 0; min-width: unset; margin-top: 9px; }
    .cta-final form { max-width: 99vw; padding: 7px 2vw; }
    .modal-content { max-width: 99vw; padding: 8px 2vw 8px; margin: 10vh auto 0; }
    .modal { padding-top: 52px; }
}

@media (max-width:500px) {
    html { font-size: 14px; }
    .hero-v3 h2 { font-size: 1.3rem; }
    .hero-secondary { font-size: 1rem; }
    .team-members, .creators-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .team-member, .creator-item { max-width: 96vw; }
    .cta-final form, .modal-content { padding: 7px 1vw 7px; }
    .modal-content h2 { font-size: 0.95em; }
}

@media (max-width:360px) {
    .team-members, .creators-grid { grid-template-columns: 1fr; gap: 4px; }
    .modal-content { padding: 5px 1vw 5px; }
}

/* -------------------- Icons -------------------- */
.ri-home-4-line, .ri-group-line, .ri-flashlight-line, .ri-user-star-line, .ri-question-line, .ri-discord-fill, .ri-gamepad-line, .ri-brush-line, .ri-eye-line, .ri-shield-line { font-size:1.15em; vertical-align:middle; }

/* -------------------- Optional: Masquer header sur mobile (conservé) -------------------- */
@media (max-width: 900px) {
    header { display: none !important; }
}
