:root {
    --bg: #070505;
    --bg-soft: #0d0809;
    --panel: rgba(17, 10, 11, .86);
    --panel-strong: #12090a;
    --red: #b5212a;
    --red-bright: #e3424d;
    --red-dark: #741118;
    --text: #f7f2f2;
    --muted: #aaa0a1;
    --line: rgba(255,255,255,.08);
    --red-line: rgba(227,66,77,.24);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 15%, rgba(181,33,42,.13), transparent 30%),
        radial-gradient(circle at 88% 26%, rgba(181,33,42,.08), transparent 28%),
        linear-gradient(180deg, #090506 0%, #050404 100%);
}

/* NAV */
.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 12px 18px;
    transition: padding .22s ease, background .22s ease;
}
.topnav.scrolled { padding-top: 7px; padding-bottom: 7px; }
.topnav-inner {
    width: min(1420px, 100%);
    min-height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 12px 8px 10px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background: rgba(8, 6, 6, .80);
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.topnav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}
.topnav-brand-mark {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(227,66,77,.15), rgba(255,255,255,.025));
    border: 1px solid var(--red-line);
    box-shadow: 0 0 24px rgba(181,33,42,.18);
}
.topnav-brand img { width: 35px; height: 35px; object-fit: contain; }
.topnav-brand-text { font-size: 15px; font-weight: 900; letter-spacing: .07em; }
.topnav-brand-text em { color: var(--red-bright); font-style: normal; }
.topnav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1;
}
.nav-main-link,
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 13px;
    border: 0;
    border-radius: 12px;
    color: #d7cecf;
    background: transparent;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}
.nav-main-link:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
    color: #fff;
    background: rgba(227,66,77,.10);
}
.nav-dropdown { position: relative; }
.chev { transition: transform .18s ease; opacity: .72; }
.nav-dropdown.open .chev { transform: rotate(180deg); }
.leg-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 330px;
    transform: translate(-50%, -8px) scale(.985);
    opacity: 0;
    visibility: hidden;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(10, 7, 8, .97);
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 60px rgba(0,0,0,.52), 0 0 0 1px rgba(181,33,42,.04) inset;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.leg-dropdown--wide { width: 360px; }
.nav-dropdown.open .leg-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}
.dropdown-head {
    padding: 10px 12px 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
}
.dropdown-head span { display: block; font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.dropdown-head small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.dd-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .16s ease, transform .16s ease;
}
.dd-item:hover { background: rgba(227,66,77,.09); transform: translateX(2px); }
.dd-icon {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.06);
    font-size: 17px;
}
.dd-item strong { display: block; font-size: 12px; letter-spacing: .03em; }
.dd-item small { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.topnav-panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 17px;
    border-radius: 14px;
    text-decoration: none;
    background: linear-gradient(135deg, #c32832, #84141b);
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: 0 9px 24px rgba(143,18,26,.24), inset 0 1px 0 rgba(255,255,255,.12);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease;
}
.topnav-panel-btn:hover { transform: translateY(-1px); box-shadow: 0 13px 30px rgba(143,18,26,.34); }
.topnav-mobile-btn {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    cursor: pointer;
}
.topnav-mobile-btn span { width: 19px; height: 2px; border-radius: 5px; background: #fff; transition: .18s ease; }

/* HERO */
.home-hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 130px 24px 82px;
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(90deg, rgba(4,3,3,.86) 0%, rgba(4,3,3,.50) 48%, rgba(4,3,3,.82) 100%),
        linear-gradient(180deg, rgba(4,3,3,.15) 0%, rgba(4,3,3,.35) 65%, #070505 100%),
        url('/images/hero-banner.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.025);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 38%, rgba(181,33,42,.17), transparent 28%),
        radial-gradient(circle at 17% 55%, rgba(181,33,42,.08), transparent 26%);
}
.home-hero-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 85%);
}
.home-hero-content {
    width: min(920px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.access-denied-banner {
    margin-bottom: 20px;
    padding: 12px 16px;
    border-radius: 14px;
    color: #ffd6d8;
    background: rgba(181,33,42,.13);
    border: 1px solid rgba(227,66,77,.30);
    font-size: 13px;
}
.home-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(10,8,8,.54);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    color: #d5cdce;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 22px;
}
.home-status-pill span { width: 7px; height: 7px; border-radius: 50%; background: #4ddb79; box-shadow: 0 0 12px rgba(77,219,121,.8); }
.home-logo-wrap { position: relative; margin-bottom: 18px; }
.home-logo-glow { position: absolute; inset: 12%; border-radius: 50%; background: rgba(181,33,42,.30); filter: blur(48px); }
.hero-logo { position: relative; width: clamp(118px, 13vw, 176px); filter: drop-shadow(0 20px 28px rgba(0,0,0,.38)); animation: heroFloat 5s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.home-kicker { color: #d9c7c8; font-size: 11px; font-weight: 900; letter-spacing: .23em; margin-bottom: 14px; }
.home-hero h1 { font-size: clamp(46px, 6.2vw, 84px); line-height: .98; letter-spacing: -.045em; margin: 0 0 20px; text-shadow: 0 10px 35px rgba(0,0,0,.42); }
.home-hero h1 span { color: #ee5962; }
.hero-subtitle { max-width: 700px; color: #bcb1b2; font-size: clamp(14px, 1.5vw, 17px); line-height: 1.65; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 11px; }
.btn-join,
.btn-discord,
.btn-discover {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 21px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn-join { background: linear-gradient(135deg, #cc2d38, #8b151d); border: 1px solid rgba(255,255,255,.13); box-shadow: 0 14px 30px rgba(143,18,26,.30); }
.btn-join:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(143,18,26,.40); }
.btn-discord { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); }
.btn-discord:hover { transform: translateY(-2px); background: rgba(255,255,255,.09); }
.btn-discover { color: #bdb1b2; padding-left: 14px; padding-right: 14px; }
.btn-discover:hover { color: #fff; }
.btn-join--compact { min-height: 46px; }
.home-live-status {
    margin-top: 31px;
    display: grid;
    grid-template-columns: auto auto 1px auto;
    gap: 13px;
    align-items: center;
    padding: 12px 15px;
    border-radius: 16px;
    background: rgba(7,5,5,.50);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.09);
}
.live-status-dot { width: 9px; height: 9px; border-radius: 50%; background: #42d372; box-shadow: 0 0 12px #42d372; }
.live-status-main { display: flex; align-items: baseline; gap: 6px; }
.live-status-main strong { font-size: 22px; }
.live-status-main span, .live-status-copy span { color: var(--muted); font-size: 10px; }
.live-status-copy { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.live-status-copy strong { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.live-status-separator { width: 1px; height: 26px; background: var(--line); }
.hero-scroll-indicator { position: absolute; bottom: 24px; display: flex; flex-direction: column; align-items: center; gap: 7px; color: #877d7e; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.hero-scroll-indicator span { width: 1px; height: 25px; background: linear-gradient(#e3424d, transparent); }

/* CONTENT */
.public-content { position: relative; padding: 90px 24px 110px; }
.public-content::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 10% 20%, rgba(181,33,42,.06), transparent 22%), radial-gradient(circle at 90% 70%, rgba(181,33,42,.05), transparent 25%); }
.public-content > section, .live-section { position: relative; width: min(1240px, 100%); margin-left: auto; margin-right: auto; }
.public-section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; margin-bottom: 24px; }
.public-section-heading h2, .presentation-heading h2 { margin-top: 8px; font-size: clamp(28px, 3.5vw, 46px); letter-spacing: -.035em; }
.presentation-heading h2 span { color: var(--red-bright); }
.section-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #eea5aa; background: rgba(181,33,42,.09); border: 1px solid rgba(227,66,77,.18); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.section-side-note { color: var(--muted); font-size: 10px; letter-spacing: .08em; font-weight: 800; }

.live-section { margin-bottom: 88px; }
.live-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.live-card { display: flex; align-items: center; gap: 14px; min-height: 92px; padding: 15px; border-radius: 18px; text-decoration: none; background: linear-gradient(145deg, rgba(181,33,42,.09), rgba(255,255,255,.025)); border: 1px solid rgba(227,66,77,.18); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.live-card:hover { transform: translateY(-2px); border-color: rgba(227,66,77,.38); box-shadow: 0 18px 30px rgba(0,0,0,.22); }
.live-avatar { width: 54px; height: 54px; border-radius: 16px; object-fit: cover; border: 1px solid rgba(255,255,255,.10); }
.live-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.live-badge { color: #ff7880; font-size: 9px; font-weight: 900; letter-spacing: .09em; }
.live-info strong { font-size: 14px; }
.live-title, .live-game { color: var(--muted); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.presentation-section { scroll-margin-top: 105px; }
.presentation-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: end; margin-bottom: 30px; }
.presentation-lead { color: #c1b6b7; font-size: 15px; line-height: 1.75; }
.presentation-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.presentation-card {
    min-height: 290px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(181,33,42,.025));
    border: 1px solid rgba(255,255,255,.075);
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.presentation-card::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -70px; top: -80px; background: rgba(181,33,42,.07); filter: blur(4px); }
.presentation-card:hover { transform: translateY(-3px); border-color: rgba(227,66,77,.23); box-shadow: 0 22px 44px rgba(0,0,0,.21); }
.presentation-card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: rgba(181,33,42,.10); border: 1px solid rgba(227,66,77,.17); font-size: 22px; margin-bottom: 26px; }
.presentation-index { color: #8f7b7c; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.presentation-card h3 { margin: 5px 0 13px; font-size: 19px; }
.presentation-card p { margin: 0; color: #b2a6a7; font-size: 13px; line-height: 1.7; }
.presentation-cta-box { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-radius: 22px; background: linear-gradient(100deg, rgba(181,33,42,.11), rgba(255,255,255,.025)); border: 1px solid rgba(227,66,77,.18); }
.presentation-cta { margin-top: 6px; font-size: 17px; font-weight: 800; }

.public-portals { margin-top: 90px; }
.portal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.portal-card { min-height: 265px; display: flex; flex-direction: column; padding: 23px; border-radius: 22px; text-decoration: none; border: 1px solid rgba(255,255,255,.075); background: rgba(255,255,255,.025); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.portal-card:hover { transform: translateY(-3px); border-color: rgba(227,66,77,.25); box-shadow: 0 22px 44px rgba(0,0,0,.22); }
.portal-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; font-size: 22px; background: rgba(181,33,42,.09); border: 1px solid rgba(227,66,77,.16); margin-bottom: auto; }
.portal-label { margin-top: 30px; color: #a89294; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.portal-card strong { margin: 6px 0 8px; font-size: 20px; }
.portal-card p { color: var(--muted); font-size: 12px; line-height: 1.55; }
.portal-arrow { margin-top: 18px; color: #ef737b; font-size: 11px; font-weight: 800; }

/* FOOTER */
.site-social-footer { position: relative; padding: 46px 24px 24px; border-top: 1px solid var(--line); background: #050404; }
.footer-main { width: min(1240px, 100%); margin: 0 auto; display: flex; align-items: center; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 900; letter-spacing: .07em; }
.footer-brand img { width: 38px; height: 38px; object-fit: contain; }
.footer-brand em { color: var(--red-bright); font-style: normal; }
.footer-main > p { color: var(--muted); font-size: 12px; flex: 1; }
.social-links { display: flex; gap: 8px; }
.social-link { padding: 9px 12px; border-radius: 11px; border: 1px solid var(--line); background: rgba(255,255,255,.025); text-decoration: none; color: #c3b9ba; font-size: 10px; font-weight: 800; transition: .18s ease; }
.social-link:hover { color: #fff; border-color: var(--red-line); background: rgba(181,33,42,.08); }
.footer-bottom { width: min(1240px, 100%); margin: 26px auto 0; padding-top: 17px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; color: #776d6e; font-size: 10px; }

@media (max-width: 1100px) {
    .topnav-links { gap: 2px; }
    .nav-main-link, .nav-dropdown-trigger { padding: 0 9px; font-size: 10px; }
    .presentation-heading { grid-template-columns: 1fr; gap: 18px; }
    .portal-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .topnav { padding: 8px; }
    .topnav-inner { min-height: 60px; border-radius: 17px; }
    .topnav-mobile-btn { display: flex; margin-left: auto; }
    .topnav-panel-btn { display: none; }
    .topnav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 8px; right: 8px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 9px;
        border: 1px solid var(--line);
        border-radius: 17px;
        background: rgba(8,6,6,.98);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-7px);
        transition: .18s ease;
    }
    .topnav.menu-open .topnav-links { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-main-link, .nav-dropdown-trigger { width: 100%; justify-content: space-between; min-height: 46px; padding: 0 13px; }
    .nav-dropdown { width: 100%; }
    .leg-dropdown, .leg-dropdown--wide {
        position: static;
        width: 100%;
        transform: none !important;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 5px;
        box-shadow: none;
        background: rgba(255,255,255,.025);
    }
    .nav-dropdown.open .leg-dropdown { display: block; }
    .home-hero { padding-top: 110px; }
    .home-live-status { grid-template-columns: auto auto; }
    .live-status-separator, .live-status-copy { display: none; }
    .presentation-grid, .portal-grid { grid-template-columns: 1fr; }
    .presentation-cta-box { align-items: flex-start; flex-direction: column; }
    .footer-main { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (max-width: 560px) {
    .topnav-brand-text { display: none; }
    .home-hero h1 { font-size: 45px; }
    .home-kicker { font-size: 9px; letter-spacing: .16em; }
    .hero-actions { width: 100%; }
    .btn-join, .btn-discord { width: 100%; }
    .btn-discover { width: 100%; }
    .public-content { padding-left: 14px; padding-right: 14px; }
    .presentation-card { padding: 20px; }
    .public-section-heading { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.js-reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.js-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* HERO HARMONYA - version épurée */
.harmonya-hero-title {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: clamp(66px, 9vw, 126px) !important;
    line-height: .88 !important;
    letter-spacing: -.055em !important;
    font-weight: 950;
    color: #fff;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 rgba(255,255,255,.08),
        0 14px 40px rgba(0,0,0,.55),
        0 0 46px rgba(189,35,45,.18) !important;
}

.harmonya-hero-title::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(239,69,79,.25), #ef454f, rgba(239,69,79,.25), transparent);
    box-shadow: 0 0 18px rgba(239,69,79,.4);
}

.home-kicker--discover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 24px;
    padding: 0;
    color: #d9c7c8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .24em;
    text-decoration: none;
    transition: color .18s ease, letter-spacing .18s ease, text-shadow .18s ease;
}

.home-kicker--discover:hover {
    color: #fff;
    letter-spacing: .29em;
    text-shadow: 0 0 16px rgba(238,89,98,.35);
}

@media (max-width: 700px) {
    .harmonya-hero-title {
        font-size: clamp(54px, 18vw, 84px) !important;
    }

    .home-kicker--discover {
        margin-top: 27px;
        font-size: 10px;
        letter-spacing: .19em;
    }
}

/* Compteur joueurs - restauration du design historique */
.home-online-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(168, 50, 50, .10);
    border: 1px solid rgba(196, 72, 72, .45);
    border-radius: 14px;
    padding: 14px 28px;
    margin: 2px 0 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.home-online-box .online-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e;
}

.home-online-box .online-count {
    font-size: 26px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.home-online-box .online-label {
    color: #cbd5e1;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* HARMONYA plus compact */
.harmonya-hero-title {
    font-size: clamp(34px, 4vw, 58px) !important;
    letter-spacing: -.045em !important;
}

@media (max-width: 700px) {
    .harmonya-hero-title {
        font-size: clamp(32px, 10vw, 48px) !important;
    }

    .home-online-box {
        padding: 12px 22px;
        margin-bottom: 24px;
    }
}

/* Hero public - ordre final demandé */
.harmonya-hero-subtitle {
    margin: 12px 0 20px;
    color: rgba(255,255,255,.76);
    font-size: clamp(11px, 1.05vw, 14px);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-shadow: 0 6px 18px rgba(0,0,0,.38);
}

/* Découvrir Harmonya est placé sous les deux boutons */
.hero-actions + .home-kicker--discover {
    margin: 17px 0 0;
}

@media (max-width: 700px) {
    .harmonya-hero-subtitle {
        margin: 10px 0 18px;
        font-size: 10px;
        letter-spacing: .17em;
    }

    .hero-actions + .home-kicker--discover {
        margin-top: 15px;
    }
}

/* Indicateur public Streamers dans la navigation */
.streamer-live-nav-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(180deg, #ef4651, #a71922);
    box-shadow: 0 0 0 3px rgba(227,66,77,.10), 0 0 16px rgba(227,66,77,.34);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
}
.streamer-live-nav-badge[hidden] { display: none !important; }

/* VIP central premium */
.nav-vip-link {
    position: relative;
    color: #ffd76a !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: .12em;
    padding: 0 18px !important;
    text-shadow: 0 0 6px rgba(255,215,106,.75), 0 0 16px rgba(218,161,37,.55);
}
.nav-vip-link::after {
    content: "";
    position: absolute;
    left: 18%; right: 18%; bottom: 4px; height: 1px;
    background: linear-gradient(90deg, transparent, #ffd76a, transparent);
    box-shadow: 0 0 9px rgba(255,215,106,.9);
}
.nav-vip-link:hover {
    color: #fff0a6 !important;
    transform: translateY(-1px);
    background: rgba(214,162,44,.07);
}
.nav-vip-gem {
    color: #ffe49a;
    font-size: 12px;
    text-shadow: 0 0 7px #e3ad36, 0 0 14px rgba(227,173,54,.7);
}
