/* DEFAULT SITE STYLE */

.video-stats {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.video-stats__trigger {
    position: relative;
    z-index: 2;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.video-stats__overlay {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: 5;
    min-width: 180px;
    border: 1px solid currentColor;
    background: inherit;
    padding: 0.5rem;
}

.video-stats__overlay ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.video-stats__overlay li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.video-stats--capsules {
    gap: 0.4rem;
}

.video-stats--capsules .video-stats__trigger {
    border: 1px solid rgba(232, 224, 204, 0.18);
    border-radius: 999px;
    background: rgba(7, 11, 5, 0.72);
    color: inherit;
    padding: 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.16s ease-in-out, background 0.16s ease-in-out, transform 0.16s ease-in-out;
}

.video-stats--capsules .video-stats__trigger:hover,
.video-stats--capsules .video-stats__trigger:focus-visible {
    border-color: rgba(245, 197, 24, 0.4);
    background: rgba(20, 30, 14, 0.9);
    transform: translateY(-1px);
}

.video-stats--capsules .video-stats__overlay {
    border: 1px solid rgba(245, 197, 24, 0.22);
    border-radius: 12px;
    background: rgba(9, 14, 6, 0.96);
    box-shadow: 0 16px 34px rgba(0,0,0,0.55);
    padding: 0.55rem 0.7rem;
    backdrop-filter: blur(6px);
}

.video-stats--capsules .video-stats__overlay li + li {
    margin-top: 0.35rem;
}

.video-stats--capsules .video-stats__overlay span {
    color: rgba(255, 255, 255, 0.72);
}

.video-stats--capsules .video-stats__overlay strong {
    color: #f5c518;
}

.video-platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
}

.video-platform-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.video-platform-links--latest {
    margin-top: 0.5rem;
}

.video-platform-link img {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.16s ease-in-out;
    will-change: transform;
}

.video-platform-link:hover img,
.video-platform-link:focus-visible img {
    transform: scale(1.14);
}

.video-platform-link:active img {
    animation: video-platform-link-bounce 0.28s ease-out;
}

@keyframes video-platform-link-bounce {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(0.84);
    }

    70% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.community-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.community-link__icon img {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.community-link__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.community-link__platform,
.community-link__text {
    display: block;
    min-width: 0;
}

.community-link__text {
    overflow-wrap: anywhere;
}

.home-page__latest-video > article {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-page__latest-video > article > h3 {
    margin: 0;
    padding-bottom: 0.35rem;
}

.home-page__latest-video > article > p {
    margin: 0;
    padding-bottom: 0.35rem;
}

.home-page__latest-video > article > .video-stats {
    margin: 0;
    padding-bottom: 0.35rem;
}

.home-page__latest-video > article > .video-platform-links--latest {
    margin-top: auto;
    padding-bottom: 0;
    padding-inline: 16px;
}

@media (min-width: 600px) {
    .home-page__latest-video > article {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }

    .home-page__latest-video > article > img {
        grid-column: 1;
        grid-row: 1 / 6;
        height: 100%;
    }

    .home-page__latest-video > article > h3,
    .home-page__latest-video > article > p,
    .home-page__latest-video > article > .video-stats,
    .home-page__latest-video > article > .video-platform-links--latest {
        grid-column: 2;
    }
}

.home-page__video-column > section > div > article > .video-stats,
.home-page__video-column > section > div > article > .video-platform-links {
    padding-left: 10px;
    padding-right: 10px;
}

.home-page__video-column > section > div > article > .video-stats {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.home-page__video-column > section > div > article > .video-platform-links {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.home-page__latest-video > article > .video-platform-links--latest,
.home-page__video-column > section > div > article > .video-platform-links {
    align-items: center;
    gap: 0.5rem;
}

.home-page__latest-video > article > .video-platform-links--latest .video-platform-link,
.home-page__video-column > section > div > article > .video-platform-links .video-platform-link {
    width: 2.15rem;
    height: 2.15rem;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.home-page__latest-video > article > .video-platform-links--latest .video-platform-link img,
.home-page__video-column > section > div > article > .video-platform-links .video-platform-link img {
    width: 1.2rem;
    height: 1.2rem;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.16s ease-in-out;
    will-change: transform;
}

.home-page__latest-video > article > .video-platform-links--latest .video-platform-link:hover img,
.home-page__latest-video > article > .video-platform-links--latest .video-platform-link:focus-visible img,
.home-page__video-column > section > div > article > .video-platform-links .video-platform-link:hover img,
.home-page__video-column > section > div > article > .video-platform-links .video-platform-link:focus-visible img {
    transform: scale(1.14);
}

.home-page__latest-video > article > .video-platform-links--latest .video-platform-link:active img,
.home-page__video-column > section > div > article > .video-platform-links .video-platform-link:active img {
    animation: video-platform-link-bounce 0.28s ease-out;
}

.home-page__latest-video > article.media-article {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.home-page__latest-video > article.media-article > .video-stats {
    padding-inline: 16px;
    padding-bottom: 0.75rem;
}

.home-page__latest-video > article.media-article > .video-platform-links {
    padding-inline: 16px;
    padding-bottom: 1rem;
    margin-top: 0;
}

.media-detail-section + .media-detail-section {
    margin-top: 1.5rem;
}

.media-detail-section > h3 {
    margin: 0 0 0.45rem;
}

.media-detail-section > p {
    margin: 0 0 0.85rem;
}

.media-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.media-detail-card {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(232, 224, 204, 0.12);
    border-radius: 16px;
    background: rgba(9, 14, 6, 0.62);
}

.media-detail-card h4 {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.68);
}

.media-detail-card p {
    margin: 0;
}

.media-detail-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.media-detail-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(232, 224, 204, 0.12);
    border-radius: 14px;
    background: rgba(9, 14, 6, 0.62);
    color: inherit;
    text-decoration: none;
}

.media-detail-chip strong {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.media-detail-chip span {
    overflow-wrap: anywhere;
}

.media-detail-chip:is(a):hover,
.media-detail-chip:is(a):focus-visible {
    border-color: rgba(245, 197, 24, 0.28);
    background: rgba(15, 23, 10, 0.82);
}

.media-contact-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

/* ============================================================
    Site default styling
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@400;500;600&display=swap');

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
    --bg-deep: #0b1120;
    --bg-section: #10192b;
    --bg-card: #162033;
    --bg-card-hover: #1d2a40;
    --border-card: #253754;
    --border-section: #314766;
    --gold: #58a6ff;
    --gold-light: #8bc2ff;
    --gold-glow: rgba(88, 166, 255, 0.30);
    --green-cta: #1499a8;
    --green-cta-h: #1bb3c3;
    --green-bright: #6cd7e2;
    --green-glow: rgba(27, 179, 195, 0.35);
    --green-link: #79c5ff;
    --text-primary: #e6edf3;
    --text-secondary: #b8c5d4;
    --text-muted: #8f9caf;
    --text-on-accent: #f8fbff;
    --text-selection: #06101d;
    --text-overlay: rgba(230, 237, 243, 0.72);
    --hero-scrim-start: rgba(5, 10, 20, 0.08);
    --hero-scrim-mid: rgba(11, 17, 32, 0.52);
    --hero-scrim-strong: rgba(11, 17, 32, 0.92);
    --hero-tint-primary: rgba(88, 166, 255, 0.16);
    --hero-tint-secondary: rgba(27, 179, 195, 0.10);
    --surface-strong: rgba(11, 17, 32, 0.92);
    --surface-soft: rgba(22, 32, 51, 0.82);
    --surface-pill: rgba(11, 17, 32, 0.72);
    --surface-pill-hover: rgba(22, 32, 51, 0.90);
    --surface-panel: rgba(8, 15, 28, 0.96);
    --surface-icon: rgba(11, 17, 32, 0.92);
    --surface-footer: rgba(8, 12, 24, 0.98);
    --surface-character: #0f172a;
    --border-ghost: rgba(230, 237, 243, 0.18);
    --border-highlight: rgba(88, 166, 255, 0.35);
    --border-highlight-soft: rgba(88, 166, 255, 0.28);
    --border-highlight-faint: rgba(88, 166, 255, 0.22);
    --shadow-card: 0 4px 20px rgba(2, 6, 23, 0.65);
    --shadow-panel: 0 10px 28px rgba(2, 6, 23, 0.55);
    --shadow-panel-strong: 0 14px 34px rgba(2, 6, 23, 0.65);
    --shadow-card-hover: 0 10px 28px rgba(2, 6, 23, 0.72);
    --shadow-video-hover: 0 10px 32px rgba(2, 6, 23, 0.75);
    --shadow-character: 0 10px 25px rgba(2, 6, 23, 0.40);
    --shadow-character-hover: 0 20px 40px rgba(2, 6, 23, 0.70);
    --shadow-glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    --logo-glow: rgba(88, 166, 255, 0.45);
    --logo-shadow: rgba(2, 6, 23, 0.90);
    --display-outline: #173252;
    --display-shadow: 0 0 40px rgba(88, 166, 255, 0.42), 0 0 80px rgba(88, 166, 255, 0.18), 3px 3px 0 var(--display-outline), 0 4px 14px rgba(2, 6, 23, 0.95);
    --error-text: #ffb4b4;
    --error-bg: rgba(220, 53, 69, 0.14);
    --error-border: rgba(220, 53, 69, 0.28);
    --character-caption-overlay: linear-gradient(to top, rgba(2, 6, 23, 0.92), transparent);
    --character-sheen: radial-gradient(circle at top, transparent, rgba(2, 6, 23, 0.60));
    --radius-card: 8px;
    --radius-btn: 5px;
    --shadow-glow: 0 0 18px var(--gold-glow);
    --font-display: 'Bangers', cursive;
    --font-ui: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --max-width: 1120px;
    --gutter: 16px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
}

a {
    color: var(--green-link);
    text-decoration: none;
    transition: color 0.18s;
}

    a:hover {
        color: var(--gold-light);
    }

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--border-section);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--green-cta);
    }

::selection {
    background: var(--gold);
    color: var(--text-selection);
}

/* ══════════════════════════════════════════════════════════════
   HOME-PAGE WRAPPER
   ══════════════════════════════════════════════════════════════ */
.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.home-page__hero {
    position: relative;
    z-index: 10;
    isolation: isolate;
    width: 100%;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    overflow: visible;
    padding-bottom: 52px;
    background: linear-gradient(to bottom, var(--hero-scrim-start) 0%, var(--hero-scrim-mid) 55%, var(--hero-scrim-strong) 85%, var(--bg-deep) 100%), url('/images/vaideo-wallpaper.png') center 15% / cover no-repeat;
}

    .home-page__hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 15% 30%, var(--hero-tint-primary) 0%, transparent 50%), radial-gradient(ellipse at 85% 20%, var(--hero-tint-secondary) 0%, transparent 45%);
        pointer-events: none;
    }

/* Le top-banner est un artefact layout — on le masque */
.home-page__top-banner {
    display: none;
}

.home-page__hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 var(--gutter);
    max-width: var(--max-width);
    width: 100%;
}

/* ── Logo image ── */
.home-page__hero-logo {
    position: absolute;
    left: var(--gutter);
    bottom: -34px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-radius: 14px;
    background: var(--surface-strong);
    box-shadow: var(--shadow-panel);
    transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

    .home-page__hero-logo:hover,
    .home-page__hero-logo:focus-visible {
        transform: translateY(-2px) scale(1.02);
        box-shadow: var(--shadow-panel-strong);
        color: inherit;
    }

    .home-page__hero-logo img {
        width: clamp(84px, 14vw, 120px);
        height: auto;
        border-radius: 10px;
        filter: drop-shadow(0 0 22px var(--logo-glow)) drop-shadow(0 3px 10px var(--logo-shadow));
    }

/* ── Hero content ── */
.home-page__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .home-page__hero-content h1 {
        font-family: var(--font-display);
        font-size: clamp(3.5rem, 12vw, 7rem);
        letter-spacing: 6px;
        line-height: 0.95;
        color: var(--gold);
        text-shadow: var(--display-shadow);
    }

    .home-page__hero-content p {
        font-family: var(--font-ui);
        font-size: clamp(0.78rem, 2.2vw, 0.95rem);
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

        .home-page__hero-content p a {
            color: var(--gold);
            font-weight: 700;
        }

            .home-page__hero-content p a:hover {
                color: var(--gold-light);
            }

    /* Bouton "Voir les vidéos" */
    .home-page__hero-content a[href="#videos"] {
        display: inline-block;
        background: var(--green-cta);
        color: var(--text-on-accent) !important;
        font-family: var(--font-ui);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 11px 32px;
        border-radius: var(--radius-btn);
        border: 2px solid var(--green-bright);
        box-shadow: 0 4px 18px var(--green-glow), var(--shadow-glass-inset);
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        margin-top: 4px;
    }

        .home-page__hero-content a[href="#videos"]:hover {
            background: var(--green-cta-h);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px var(--green-glow);
            color: var(--text-on-accent) !important;
        }

/* ══════════════════════════════════════════════════════════════
   INFO BLOCK — Infos de la communauté
   ══════════════════════════════════════════════════════════════ */
.home-page__info-block {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 22px var(--gutter);
    border-bottom: 1px solid var(--border-section);
}

    .home-page__info-block h2 {
        font-family: var(--font-ui);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--border-section);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .home-page__info-block h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 18px;
            background: var(--gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

    .home-page__info-block p {
        font-size: 0.86rem;
        color: var(--text-muted);
        margin-bottom: 8px;
    }

.community-links {
    margin-top: 0.5rem;
}

.community-link {
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    background: var(--surface-soft);
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease-in-out, border-color 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

    .community-link:hover,
    .community-link:focus-visible {
        transform: translateY(-2px);
        border-color: var(--border-highlight);
        box-shadow: var(--shadow-card-hover), 0 0 12px var(--gold-glow);
        color: inherit;
    }

.community-link__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: var(--surface-icon);
    box-shadow: var(--shadow-glass-inset);
}

    .community-link__icon img {
        width: 1.2rem;
        height: 1.2rem;
    }

.community-link__platform {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.community-link__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════════════ */
.home-page__content {
    flex: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 28px var(--gutter) 52px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Section titles partagés ── */
.home-page__latest-video > h2,
.home-page__video-column > section > h2,
.home-page__playlists > h2 {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-section);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .home-page__latest-video > h2::before,
    .home-page__video-column > section > h2::before,
    .home-page__playlists > h2::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 18px;
        background: var(--gold);
        border-radius: 2px;
        flex-shrink: 0;
    }

/* ══════════════════════════════════════════════════════════════
   DERNIÈRE VIDÉO
   ══════════════════════════════════════════════════════════════ */
.home-page__latest-video > article {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: glowPulse 5s ease-in-out infinite;
}

    .home-page__latest-video > article:hover {
        transform: translateY(-3px);
    }

    /* Thumbnail */
    .home-page__latest-video > article > img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

    /* Zone texte */
    .home-page__latest-video > article > h3 {
        font-family: var(--font-ui);
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--text-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
        padding: 14px 16px 6px;
    }

    .home-page__latest-video > article > p {
        font-size: 0.86rem;
        color: var(--text-muted);
        padding: 0 16px 6px;
    }

        /* Lien "Regarder" — dernier <p> contient le <a> */
        .home-page__latest-video > article > p:last-child {
            padding: 4px 16px 16px;
        }

            .home-page__latest-video > article > p:last-child > a {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: var(--green-cta);
                color: var(--text-on-accent) !important;
                font-family: var(--font-ui);
                font-size: 0.95rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                padding: 9px 22px;
                border-radius: var(--radius-btn);
                border: 1px solid var(--green-bright);
                box-shadow: 0 3px 12px var(--green-glow);
                transition: background 0.18s, transform 0.14s;
            }

                .home-page__latest-video > article > p:last-child > a::before {
                    content: '▶';
                    font-size: 0.72em;
                }

                .home-page__latest-video > article > p:last-child > a:hover {
                    background: var(--green-cta-h);
                    transform: translateY(-1px);
                    color: var(--text-on-accent) !important;
                }

/* ══════════════════════════════════════════════════════════════
   VIDEO SECTIONS — layout 2 colonnes
   ══════════════════════════════════════════════════════════════ */
.home-page__video-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.home-page__video-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

    /* ── Grille articles vidéos ── */
    .home-page__video-column > section > div {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 14px;
    }

        /* Carte vidéo */
        .home-page__video-column > section > div > article {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }

            .home-page__video-column > section > div > article:hover {
                transform: translateY(-4px);
                box-shadow: var(--shadow-video-hover), 0 0 14px var(--gold-glow);
                border-color: var(--border-highlight-soft);
            }

            /* Thumbnail */
            .home-page__video-column > section > div > article img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                display: block;
                transition: transform 0.3s;
                flex-shrink: 0;
            }

            .home-page__video-column > section > div > article:hover img {
                transform: scale(1.04);
            }

            /* h3 titre */
            .home-page__video-column > section > div > article h3 {
                font-family: var(--font-ui);
                font-size: 0.82rem;
                font-weight: 900;
                color: var(--text-primary);
                text-transform: uppercase;
                letter-spacing: 0.4px;
                line-height: 1.25;
                padding: 9px 10px 4px;
                flex-shrink: 0;
            }

            /* Stats / date */
            .home-page__video-column > section > div > article > p:first-of-type {
                font-size: 0.73rem;
                color: var(--text-muted);
                padding: 0 10px 8px;
                flex: 1;
            }

            /* Lien "Voir la vidéo" */
            .home-page__video-column > section > div > article > p:last-child {
                padding: 7px 10px 9px;
                border-top: 1px solid var(--border-card);
                margin-top: auto;
            }

                .home-page__video-column > section > div > article > p:last-child a {
                    font-family: var(--font-ui);
                    font-size: 0.77rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    color: var(--green-link);
                }

                    .home-page__video-column > section > div > article > p:last-child a:hover {
                        color: var(--gold-light);
                    }

/* ══════════════════════════════════════════════════════════════
   PLAYLISTS
   ══════════════════════════════════════════════════════════════ */
.home-page__playlists > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.home-page__playlists article {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

    .home-page__playlists article:hover {
        transform: translateY(-3px);
        border-color: var(--border-highlight);
    }

    .home-page__playlists article img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .home-page__playlists article h3 {
        font-family: var(--font-ui);
        font-size: 0.88rem;
        font-weight: 900;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 9px 10px 4px;
    }

    .home-page__playlists article p {
        font-size: 0.76rem;
        color: var(--text-muted);
        padding: 0 10px 7px;
        flex: 1;
    }

        .home-page__playlists article p:last-child {
            border-top: 1px solid var(--border-card);
            padding-top: 7px;
            padding-bottom: 9px;
            flex: 0;
        }

            .home-page__playlists article p:last-child a {
                font-family: var(--font-ui);
                font-size: 0.77rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                color: var(--green-link);
            }

                .home-page__playlists article p:last-child a:hover {
                    color: var(--gold-light);
                }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.home-page__footer {
    background: var(--surface-footer);
    border-top: 1px solid var(--border-section);
    padding: 18px var(--gutter);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.77rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.home-page__error {
    color: var(--error-text);
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.84rem;
    margin-bottom: 12px;
}

/* ── ANIMATIONS ── */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: var(--shadow-card);
    }

    50% {
        box-shadow: var(--shadow-card), 0 0 28px var(--gold-glow);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-page__latest-video {
    animation: fadeInUp 0.4s ease both;
}

.home-page__video-sections {
    animation: fadeInUp 0.4s ease 0.1s both;
}

/* ============================================================
   RESPONSIVE — TABLETTE ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
    .home-page__hero {
        min-height: 500px;
    }

    /* Dernière vidéo : thumbnail gauche + texte droite */
    .home-page__latest-video > article {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
    }

        .home-page__latest-video > article > img {
            grid-column: 1;
            grid-row: 1 / 6;
            aspect-ratio: unset;
            height: 100%;
            min-height: 200px;
        }

        .home-page__latest-video > article > h3,
        .home-page__latest-video > article > p {
            grid-column: 2;
        }

    .home-page__video-column > section > div {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page__playlists > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥ 960px
   ============================================================ */
@media (min-width: 960px) {
    :root {
        --gutter: 28px;
    }

    .home-page__hero {
        min-height: 560px;
        padding-bottom: 60px;
    }

    .home-page__hero-logo {
        bottom: -40px;
    }

        .home-page__hero-logo img {
            width: clamp(110px, 11vw, 148px);
        }

    /* 2 colonnes : vidéos large | playlists aside étroit */
    .home-page__video-sections {
        grid-template-columns: 1fr 290px;
    }

    /* Grille 3 colonnes dans la colonne vidéos */
    .home-page__video-column > section > div {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Playlists : 1 seule colonne dans le aside */
    .home-page__playlists > div {
        grid-template-columns: 1fr;
    }

    /* Dernière vidéo plus grande */
    .home-page__latest-video > article {
        grid-template-columns: 3fr 2fr;
    }

        .home-page__latest-video > article > h3 {
            font-size: 1.5rem;
            padding-top: 20px;
        }
}

/* ============================================================
   RESPONSIVE — LARGE ≥ 1200px
   ============================================================ */
@media (min-width: 1200px) {
    .home-page__video-sections {
        grid-template-columns: 1fr 310px;
    }
}

article.media-article {
    max-width: 75%;
    margin: 0 auto;
}

/* ── Plateformes video : habillage Full LOL uniquement ── */
.video-platform-link {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    width: 2.15rem;
    height: 2.15rem;
}

    .video-platform-link img {
        width: 1.2rem;
        height: 1.2rem;
        transform: scale(1);
        transform-origin: center;
        transition: transform 0.16s ease-in-out;
        will-change: transform;
    }

    .video-platform-link:hover img,
    .video-platform-link:focus-visible img {
        transform: scale(1.14);
    }

    .video-platform-link:active img {
        transform: scale(0.86);
    }

.home-page__video-column > section > div > article .video-stats {
    gap: 0.4rem;
}

.home-page__video-column > section > div > article .video-stats__trigger {
    border: 1px solid var(--border-ghost);
    border-radius: 999px;
    background: var(--surface-pill);
    color: var(--text-primary);
    padding: 0.3rem 0.65rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-glass-inset);
    transition: border-color 0.16s ease-in-out, background 0.16s ease-in-out, transform 0.16s ease-in-out;
}

    .home-page__video-column > section > div > article .video-stats__trigger:hover,
    .home-page__video-column > section > div > article .video-stats__trigger:focus-visible {
        border-color: var(--gold-light);
        background: var(--surface-pill-hover);
        transform: translateY(-1px);
    }

.home-page__video-column > section > div > article .video-stats__overlay {
    border: 1px solid var(--border-highlight-faint);
    border-radius: 12px;
    background: var(--surface-panel);
    box-shadow: var(--shadow-panel);
    padding: 0.55rem 0.7rem;
    backdrop-filter: blur(6px);
}

    .home-page__video-column > section > div > article .video-stats__overlay li + li {
        margin-top: 0.35rem;
    }

    .home-page__video-column > section > div > article .video-stats__overlay span {
        color: var(--text-secondary);
    }

    .home-page__video-column > section > div > article .video-stats__overlay strong {
        color: var(--gold-light);
    }

/* ===== CONTENEUR LISTE ===== */
ul, .characters, .list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* ===== CHAQUE PERSONNAGE ===== */
li, .character, .item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--surface-character);
    box-shadow: var(--shadow-character);
    transition: 0.3s ease;
}

    /* ===== IMAGE ===== */
    li img, .character img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        transition: 0.4s ease;
    }

    /* ===== TEXTE (nom perso) ===== */
    li p, li h3, li span {
        position: absolute;
        bottom: 0;
        width: 100%;
        margin: 0;
        padding: 12px;
        background: var(--character-caption-overlay);
        color: var(--text-on-accent);
        font-weight: 600;
        font-size: 16px;
    }

    /* ===== HOVER ===== */
    li:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-character-hover);
    }

        li:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

    /* ===== BONUS CINÉMA ===== */
    li::after {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--character-sheen);
        pointer-events: none;
    }

/* ============================================================
   LIST PAGES
   ============================================================ */
.media-list-page {
    gap: 24px;
}

.media-list-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.media-list-page__hero {
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border-card);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(88, 166, 255, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(11, 17, 32, 0.96), rgba(16, 25, 43, 0.92));
    box-shadow: var(--shadow-card);
}

.media-list-page__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-bright);
}

.media-list-page__hero h2 {
    margin: 0;
    font-family: var(--font-ui);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.media-list-page__intro {
    margin: 0.9rem 0 0;
    max-width: 68ch;
    color: var(--text-secondary);
    font-size: 1rem;
}

.media-list-page__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.media-list-page__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid var(--border-ghost);
    border-radius: 16px;
    background: rgba(8, 15, 28, 0.58);
    backdrop-filter: blur(8px);
}

.media-list-page__stat strong {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.media-list-page__stat span {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.media-feed-panel,
.playlist-directory {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-feed-panel {
    padding: 18px;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(16, 25, 43, 0.84), rgba(11, 17, 32, 0.94));
    box-shadow: var(--shadow-card);
}

.media-feed-panel__toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.media-feed-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.media-feed-panel__chip,
.playlist-section__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--border-ghost);
    background: var(--surface-pill);
    color: var(--text-secondary);
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-feed-panel__chip--accent {
    border-color: var(--border-highlight);
    color: var(--gold-light);
}

.media-feed-panel__grid,
.playlist-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.media-feed-panel__sentinel {
    height: 1px;
}

.media-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border-card);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(22, 32, 51, 0.98), rgba(11, 17, 32, 0.98));
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}

.media-card:hover,
.media-card:focus-visible {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-video-hover), 0 0 16px var(--gold-glow);
    outline: none;
}

.media-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-card > h3 {
    margin: 0;
    padding: 14px 16px 6px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
}

.media-card > p {
    margin: 0;
    padding: 0 16px 10px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.media-card > p + p:last-of-type {
    padding-bottom: 4px;
}

.media-card > .video-stats,
.media-card > .video-platform-links {
    padding-inline: 16px;
}

.media-card > .video-stats {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.media-card > .video-platform-links {
    margin-top: auto;
    margin-bottom: 0.9rem;
}

.playlist-directory__list {
    display: grid;
    gap: 14px;
}

.playlist-section {
    overflow: hidden;
    border: 1px solid var(--border-card);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(16, 25, 43, 0.84), rgba(11, 17, 32, 0.98));
    box-shadow: var(--shadow-card);
}

.playlist-section[open] {
    border-color: var(--border-highlight-soft);
    box-shadow: var(--shadow-card-hover), 0 0 18px var(--gold-glow);
}

.playlist-section__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    cursor: pointer;
}

.playlist-section__summary::-webkit-details-marker {
    display: none;
}

.playlist-section__summary-main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.playlist-section__cover {
    width: 88px;
    height: 88px;
    overflow: hidden;
    flex: 0 0 auto;
    border-radius: 18px;
    border: 1px solid var(--border-ghost);
    background: var(--surface-strong);
    box-shadow: var(--shadow-panel);
}

.playlist-section__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-section__summary-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.playlist-section__title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.playlist-section__title {
    font-family: var(--font-ui);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.05;
}

.playlist-section__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.playlist-section__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--text-secondary);
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.playlist-section__toggle-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.playlist-section[open] .playlist-section__toggle-icon {
    transform: rotate(225deg);
}

.playlist-section__body {
    padding: 0 18px 18px;
    border-top: 1px solid var(--border-card);
}

.playlist-section__body-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 0;
}

.playlist-section__body-copy {
    max-width: 68ch;
}

.playlist-section__body-copy p,
.playlist-section__channel {
    margin: 0;
    color: var(--text-secondary);
}

.playlist-section__channel {
    margin-top: 8px;
    color: var(--text-muted);
}

.playlist-section__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--green-bright);
    background: linear-gradient(180deg, var(--green-cta-h), var(--green-cta));
    color: var(--text-on-accent);
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px var(--green-glow);
}

.playlist-section__cta:hover {
    color: var(--text-on-accent);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .media-list-page__hero {
        grid-template-columns: minmax(0, 1.8fr) minmax(220px, 0.8fr);
        align-items: end;
    }
}

@media (max-width: 767px) {
    .playlist-section__summary {
        flex-direction: column;
        align-items: stretch;
    }

    .playlist-section__summary-main {
        align-items: flex-start;
    }

    .playlist-section__cover {
        width: 72px;
        height: 72px;
    }

    .playlist-section__toggle {
        justify-content: space-between;
    }

    .media-list-page__hero,
    .media-feed-panel__toolbar {
        display: none;
    }

    .media-feed-panel {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .media-feed-panel__grid {
        grid-template-columns: 1fr;
    }

    .media-feed-panel,
    .playlist-section__summary,
    .playlist-section__body {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* ============================================================
   site.css — FulloOol — Thème Gaming Sombre / Or / Vert
   Basé sur le template Razor Vaideo exact
   Responsive : mobile-first + breakpoints desktop
   ============================================================ */

/* ── FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@400;500;600&display=swap');

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
    --bg-deep: #0b1008;
    --bg-section: #0f1a0a;
    --bg-card: #141e0e;
    --bg-card-hover: #1a2812;
    --border-card: #253317;
    --border-section: #2c3d1c;
    --gold: #f5c518;
    --gold-light: #ffd84d;
    --gold-glow: rgba(245, 197, 24, 0.30);
    --green-cta: #2a6e2e;
    --green-cta-h: #357a3a;
    --green-bright: #4caf50;
    --green-glow: rgba(76, 175, 80, 0.35);
    --green-link: #5dba61;
    --text-primary: #e8e0cc;
    --text-secondary: #b0c090;
    --text-muted: #6e8558;
    --radius-card: 8px;
    --radius-btn: 5px;
    --shadow-card: 0 4px 20px rgba(0,0,0,0.65);
    --shadow-glow: 0 0 18px var(--gold-glow);
    --font-display: 'Bangers', cursive;
    --font-ui: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --max-width: 1120px;
    --gutter: 16px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
}

a {
    color: var(--green-link);
    text-decoration: none;
    transition: color 0.18s;
}

    a:hover {
        color: var(--gold-light);
    }

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--border-section);
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--green-cta);
    }

::selection {
    background: var(--gold);
    color: #000;
}

/* ══════════════════════════════════════════════════════════════
   HOME-PAGE WRAPPER
   ══════════════════════════════════════════════════════════════ */
.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.home-page__hero {
    position: relative;
    z-index: 10;
    isolation: isolate;
    width: 100%;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    overflow: visible;
    padding-bottom: 52px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(11,16,8,0.50) 55%, rgba(11,16,8,0.92) 85%, var(--bg-deep) 100%), url('https://vaideo.piccellart.com/uploads/sites/project-1/74056dee559c4cb29b899be9482f1cfc.png') center 15% / cover no-repeat;
}

    .home-page__hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 15% 30%, rgba(180,140,0,0.10) 0%, transparent 50%), radial-gradient(ellipse at 85% 20%, rgba(80,140,10,0.07) 0%, transparent 45%);
        pointer-events: none;
    }

/* Le top-banner est un artefact layout — on le masque */
.home-page__top-banner {
    display: none;
}

.home-page__hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 var(--gutter);
    max-width: var(--max-width);
    width: 100%;
}

/* ── Logo image ── */
.home-page__hero-logo {
    position: absolute;
    left: var(--gutter);
    bottom: -34px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-radius: 14px;
    background: rgba(11, 16, 8, 0.92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
    transition: transform 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

.home-page__hero-logo:hover,
.home-page__hero-logo:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65);
    color: inherit;
}

.home-page__hero-logo img {
    width: clamp(84px, 14vw, 120px);
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 0 22px rgba(245,197,24,0.5)) drop-shadow(0 3px 10px rgba(0,0,0,0.9));
}

/* ── Hero content ── */
.home-page__hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .home-page__hero-content h1 {
        font-family: var(--font-display);
        font-size: clamp(3.5rem, 12vw, 7rem);
        letter-spacing: 6px;
        line-height: 0.95;
        color: var(--gold);
        text-shadow: 0 0 40px rgba(245,197,24,0.55), 0 0 80px rgba(245,197,24,0.18), 3px 3px 0 #5a3e00, 0 4px 14px rgba(0,0,0,0.95);
    }

    .home-page__hero-content p {
        font-family: var(--font-ui);
        font-size: clamp(0.78rem, 2.2vw, 0.95rem);
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

        .home-page__hero-content p a {
            color: var(--gold);
            font-weight: 700;
        }

            .home-page__hero-content p a:hover {
                color: var(--gold-light);
            }

    /* Bouton "Voir les vidéos" */
    .home-page__hero-content a[href="#videos"] {
        display: inline-block;
        background: var(--green-cta);
        color: #fff !important;
        font-family: var(--font-ui);
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 11px 32px;
        border-radius: var(--radius-btn);
        border: 2px solid var(--green-bright);
        box-shadow: 0 4px 18px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.07);
        transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
        margin-top: 4px;
    }

        .home-page__hero-content a[href="#videos"]:hover {
            background: var(--green-cta-h);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px var(--green-glow);
            color: #fff !important;
        }

/* ══════════════════════════════════════════════════════════════
   INFO BLOCK — Infos de la communauté
   ══════════════════════════════════════════════════════════════ */
.home-page__info-block {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 22px var(--gutter);
    border-bottom: 1px solid var(--border-section);
}

    .home-page__info-block h2 {
        font-family: var(--font-ui);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--border-section);
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .home-page__info-block h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 18px;
            background: var(--gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

.home-page__info-block p {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.community-links {
    margin-top: 0.5rem;
}

.community-link {
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border-card);
    border-radius: 12px;
    background: rgba(20, 30, 14, 0.82);
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease-in-out, border-color 0.18s ease-in-out, box-shadow 0.18s ease-in-out;
}

.community-link:hover,
.community-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(245,197,24,0.35);
    box-shadow: 0 10px 28px rgba(0,0,0,0.72), 0 0 12px rgba(245,197,24,0.12);
    color: inherit;
}

.community-link__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: rgba(11,16,8,0.92);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.community-link__icon img {
    width: 1.2rem;
    height: 1.2rem;
}

.community-link__platform {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.community-link__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════════════ */
.home-page__content {
    flex: 1;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 28px var(--gutter) 52px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Section titles partagés ── */
.home-page__latest-video > h2,
.home-page__video-column > section > h2,
.home-page__playlists > h2 {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-section);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .home-page__latest-video > h2::before,
    .home-page__video-column > section > h2::before,
    .home-page__playlists > h2::before {
        content: '';
        display: inline-block;
        width: 4px;
        height: 18px;
        background: var(--gold);
        border-radius: 2px;
        flex-shrink: 0;
    }

/* ══════════════════════════════════════════════════════════════
   DERNIÈRE VIDÉO
   ══════════════════════════════════════════════════════════════ */
.home-page__latest-video > article {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: glowPulse 5s ease-in-out infinite;
}

    .home-page__latest-video > article:hover {
        transform: translateY(-3px);
    }

    /* Thumbnail */
    .home-page__latest-video > article > img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }

    /* Zone texte */
    .home-page__latest-video > article > h3 {
        font-family: var(--font-ui);
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--text-primary);
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
        padding: 14px 16px 6px;
    }

    .home-page__latest-video > article > p {
        font-size: 0.86rem;
        color: var(--text-muted);
        padding: 0 16px 6px;
    }

        /* Lien "Regarder" — dernier <p> contient le <a> */
        .home-page__latest-video > article > p:last-child {
            padding: 4px 16px 16px;
        }

            .home-page__latest-video > article > p:last-child > a {
                display: inline-flex;
                align-items: center;
                gap: 7px;
                background: var(--green-cta);
                color: #fff !important;
                font-family: var(--font-ui);
                font-size: 0.95rem;
                font-weight: 700;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                padding: 9px 22px;
                border-radius: var(--radius-btn);
                border: 1px solid var(--green-bright);
                box-shadow: 0 3px 12px var(--green-glow);
                transition: background 0.18s, transform 0.14s;
            }

                .home-page__latest-video > article > p:last-child > a::before {
                    content: '▶';
                    font-size: 0.72em;
                }

                .home-page__latest-video > article > p:last-child > a:hover {
                    background: var(--green-cta-h);
                    transform: translateY(-1px);
                    color: #fff !important;
                }

/* ══════════════════════════════════════════════════════════════
   VIDEO SECTIONS — layout 2 colonnes
   ══════════════════════════════════════════════════════════════ */
.home-page__video-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

.home-page__video-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

    /* ── Grille articles vidéos ── */
    .home-page__video-column > section > div {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 14px;
    }

        /* Carte vidéo */
        .home-page__video-column > section > div > article {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
        }

            .home-page__video-column > section > div > article:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 32px rgba(0,0,0,0.75), 0 0 14px var(--gold-glow);
                border-color: rgba(245,197,24,0.28);
            }

            /* Thumbnail */
            .home-page__video-column > section > div > article img {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                display: block;
                transition: transform 0.3s;
                flex-shrink: 0;
            }

            .home-page__video-column > section > div > article:hover img {
                transform: scale(1.04);
            }

            /* h3 titre */
            .home-page__video-column > section > div > article h3 {
                font-family: var(--font-ui);
                font-size: 0.82rem;
                font-weight: 900;
                color: var(--text-primary);
                text-transform: uppercase;
                letter-spacing: 0.4px;
                line-height: 1.25;
                padding: 9px 10px 4px;
                flex-shrink: 0;
            }

            /* Stats / date */
            .home-page__video-column > section > div > article > p:first-of-type {
                font-size: 0.73rem;
                color: var(--text-muted);
                padding: 0 10px 8px;
                flex: 1;
            }

            /* Lien "Voir la vidéo" */
            .home-page__video-column > section > div > article > p:last-child {
                padding: 7px 10px 9px;
                border-top: 1px solid var(--border-card);
                margin-top: auto;
            }

                .home-page__video-column > section > div > article > p:last-child a {
                    font-family: var(--font-ui);
                    font-size: 0.77rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    color: var(--green-link);
                }

                    .home-page__video-column > section > div > article > p:last-child a:hover {
                        color: var(--gold-light);
                    }

/* ══════════════════════════════════════════════════════════════
   PLAYLISTS
   ══════════════════════════════════════════════════════════════ */
.home-page__playlists > div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.home-page__playlists article {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

    .home-page__playlists article:hover {
        transform: translateY(-3px);
        border-color: rgba(245,197,24,0.35);
    }

    .home-page__playlists article img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
    }

    .home-page__playlists article h3 {
        font-family: var(--font-ui);
        font-size: 0.88rem;
        font-weight: 900;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 9px 10px 4px;
    }

    .home-page__playlists article p {
        font-size: 0.76rem;
        color: var(--text-muted);
        padding: 0 10px 7px;
        flex: 1;
    }

        .home-page__playlists article p:last-child {
            border-top: 1px solid var(--border-card);
            padding-top: 7px;
            padding-bottom: 9px;
            flex: 0;
        }

            .home-page__playlists article p:last-child a {
                font-family: var(--font-ui);
                font-size: 0.77rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                color: var(--green-link);
            }

                .home-page__playlists article p:last-child a:hover {
                    color: var(--gold-light);
                }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.home-page__footer {
    background: rgba(4, 7, 2, 0.98);
    border-top: 1px solid var(--border-section);
    padding: 18px var(--gutter);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 0.77rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.home-page__error {
    color: #ef9a9a;
    background: rgba(200,50,50,0.12);
    border: 1px solid rgba(200,50,50,0.28);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 0.84rem;
    margin-bottom: 12px;
}

/* ── ANIMATIONS ── */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: var(--shadow-card);
    }

    50% {
        box-shadow: var(--shadow-card), 0 0 28px var(--gold-glow);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-page__latest-video {
    animation: fadeInUp 0.4s ease both;
}

.home-page__video-sections {
    animation: fadeInUp 0.4s ease 0.1s both;
}

/* ============================================================
   RESPONSIVE — TABLETTE ≥ 600px
   ============================================================ */
@media (min-width: 600px) {
    .home-page__hero {
        min-height: 500px;
    }

    /* Dernière vidéo : thumbnail gauche + texte droite */
    .home-page__latest-video > article {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
    }

        .home-page__latest-video > article > img {
            grid-column: 1;
            grid-row: 1 / 6;
            aspect-ratio: unset;
            height: 100%;
            min-height: 200px;
        }

        .home-page__latest-video > article > h3,
        .home-page__latest-video > article > p {
            grid-column: 2;
        }

    .home-page__video-column > section > div {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-page__playlists > div {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥ 960px
   ============================================================ */
@media (min-width: 960px) {
    :root {
        --gutter: 28px;
    }

    .home-page__hero {
        min-height: 560px;
        padding-bottom: 60px;
    }

    .home-page__hero-logo {
        bottom: -40px;
    }

    .home-page__hero-logo img {
        width: clamp(110px, 11vw, 148px);
    }

    /* 2 colonnes : vidéos large | playlists aside étroit */
    .home-page__video-sections {
        grid-template-columns: 1fr 290px;
    }

    /* Grille 3 colonnes dans la colonne vidéos */
    .home-page__video-column > section > div {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Playlists : 1 seule colonne dans le aside */
    .home-page__playlists > div {
        grid-template-columns: 1fr;
    }

    /* Dernière vidéo plus grande */
    .home-page__latest-video > article {
        grid-template-columns: 3fr 2fr;
    }

        .home-page__latest-video > article > h3 {
            font-size: 1.5rem;
            padding-top: 20px;
        }
}

/* ============================================================
   RESPONSIVE — LARGE ≥ 1200px
   ============================================================ */
@media (min-width: 1200px) {
    .home-page__video-sections {
        grid-template-columns: 1fr 310px;
    }
}

article.media-article {
    max-width: 75%;
    margin: 0 auto;
}

/* ── Plateformes video : habillage Full LOL uniquement ── */
.video-platform-link {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    width: 2.15rem;
    height: 2.15rem;
}

.video-platform-link img {
    width: 1.2rem;
    height: 1.2rem;
    transform: scale(1);
    transform-origin: center;
    transition: transform 0.16s ease-in-out;
    will-change: transform;
}

.video-platform-link:hover img,
.video-platform-link:focus-visible img {
    transform: scale(1.14);
}

.video-platform-link:active img {
    transform: scale(0.86);
}

.home-page__video-column > section > div > article .video-stats {
    gap: 0.4rem;
}

.home-page__video-column > section > div > article .video-stats__trigger {
    border: 1px solid rgba(232, 224, 204, 0.18);
    border-radius: 999px;
    background: rgba(7, 11, 5, 0.72);
    color: var(--text-primary);
    padding: 0.3rem 0.65rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: border-color 0.16s ease-in-out, background 0.16s ease-in-out, transform 0.16s ease-in-out;
}

.home-page__video-column > section > div > article .video-stats__trigger:hover,
.home-page__video-column > section > div > article .video-stats__trigger:focus-visible {
    border-color: rgba(245, 197, 24, 0.4);
    background: rgba(20, 30, 14, 0.9);
    transform: translateY(-1px);
}

.home-page__video-column > section > div > article .video-stats__overlay {
    border: 1px solid rgba(245, 197, 24, 0.22);
    border-radius: 12px;
    background: rgba(9, 14, 6, 0.96);
    box-shadow: 0 16px 34px rgba(0,0,0,0.55);
    padding: 0.55rem 0.7rem;
    backdrop-filter: blur(6px);
}

.home-page__video-column > section > div > article .video-stats__overlay li + li {
    margin-top: 0.35rem;
}

.home-page__video-column > section > div > article .video-stats__overlay span {
    color: var(--text-secondary);
}

.home-page__video-column > section > div > article .video-stats__overlay strong {
    color: var(--gold-light);
}

/* ===== CONTENEUR LISTE ===== */
ul, .characters, .list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* ===== CHAQUE PERSONNAGE ===== */
li, .character, .item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #0f172a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

    /* ===== IMAGE ===== */
    li img, .character img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        transition: 0.4s ease;
    }

    /* ===== TEXTE (nom perso) ===== */
    li p, li h3, li span {
        position: absolute;
        bottom: 0;
        width: 100%;
        margin: 0;
        padding: 12px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        font-weight: 600;
        font-size: 16px;
    }

    /* ===== HOVER ===== */
    li:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    }

        li:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

    /* ===== BONUS CINÉMA ===== */
    li::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, transparent, rgba(0,0,0,0.6));
        pointer-events: none;
    }
