@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;600&family=Rajdhani:wght@400;600;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: 'Outfit', sans-serif;
}

/* ─── HEADER NAV ─────────────────────────────────────── */
.noto-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(10, 0, 16, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 76, 255, 0.12);
}

.noto-header-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.noto-header-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: #fff;
    opacity: 0.85;
    user-select: none;
}

.noto-nav {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 4px;
}

.noto-nav-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.noto-nav-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.noto-nav-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(185, 76, 255, 0.08);
}

.noto-nav-btn.active {
    color: #fff;
    background: rgba(185, 76, 255, 0.18);
    border: 1px solid rgba(185, 76, 255, 0.35);
}

/* ─── PAGES ──────────────────────────────────────────── */
.noto-page {
    display: none;
    min-height: 100vh;
    padding-top: 64px; /* header height */
}

.noto-page.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.noto-page.page-enter {
    animation: pageEnter 0.4s ease both;
}

@keyframes pageEnter {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── FOND COMMUN ─────────────────────────────────────── */
.page-reseaux, .page-vod, .page-lore, .page-musique {
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(185, 76, 255, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(120, 30, 200, 0.12) 0%, transparent 60%),
        #0a0010;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

/* Grain de texture */
.page-reseaux::before, .page-vod::before, .page-lore::before, .page-musique::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Particule décorative */
.page-reseaux::after, .page-vod::after, .page-lore::after, .page-musique::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 76, 255, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

/* ─── PAGE RÉSEAUX ───────────────────────────────────── */
.page-reseaux {
    justify-content: center;
    padding: 80px 20px 60px;
}

/* LOGO */
.noto-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    animation: fadeDown 0.7s ease both;
}

.noto-logo img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 22px;
    border: 1px solid rgba(185, 76, 255, 0.3);
    box-shadow:
        0 0 0 4px rgba(185, 76, 255, 0.08),
        0 0 40px rgba(185, 76, 255, 0.2);
}

/* TITRE */
.noto-title {
    position: relative;
    z-index: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.15em;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    animation: fadeDown 0.7s 0.1s ease both;
}

.noto-subtitle {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.8);
    margin-bottom: 48px;
    animation: fadeDown 0.7s 0.2s ease both;
}

/* LIENS */
.noto-links {
    position: relative;
    justify-content: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 300px;
    max-width: calc(100vw - 40px);
}

.noto-link-img {
    margin-left: 80px;
}

.noto-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.noto-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(185, 76, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.noto-link:hover {
    border-color: rgba(185, 76, 255, 0.5);
    background: rgba(185, 76, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(185, 76, 255, 0.15);
    color: #fff;
}

.noto-link:hover::before { opacity: 1; }
.noto-link:active { transform: translateY(0); }

.noto-link:nth-child(1) { animation: fadeUp 0.5s 0.3s ease both; }
.noto-link:nth-child(2) { animation: fadeUp 0.5s 0.38s ease both; }
.noto-link:nth-child(3) { animation: fadeUp 0.5s 0.46s ease both; }
.noto-link:nth-child(4) { animation: fadeUp 0.5s 0.54s ease both; }
.noto-link:nth-child(5) { animation: fadeUp 0.5s 0.62s ease both; }
.noto-link:nth-child(6) { animation: fadeUp 0.5s 0.70s ease both; }
.noto-link:nth-child(7) { animation: fadeUp 0.5s 0.78s ease both; }
.noto-link:nth-child(8) { animation: fadeUp 0.5s 0.86s ease both; }

.noto-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    transition: transform 0.25s ease;
}

.noto-link:hover img { transform: scale(1.1); }

/* ─── PAGE VOD ───────────────────────────────────────── */
.page-vod {
    padding: 80px 24px 60px;
    align-items: center;
}

.vod-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeDown 0.6s ease both;
}

.vod-header-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.8);
    background: rgba(185, 76, 255, 0.08);
    border: 1px solid rgba(185, 76, 255, 0.2);
    border-radius: 40px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.vod-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.12em;
    color: #fff;
    margin: 0 0 10px;
}

.vod-title-accent {
    color: rgba(185, 76, 255, 0.9);
}

.vod-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Grille vidéos */
.vod-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 720px;
    animation: fadeUp 0.6s 0.15s ease both;
}

.vod-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}

.vod-card:hover {
    border-color: rgba(185, 76, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(185, 76, 255, 0.15);
}

.vod-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(185, 76, 255, 0.05);
}

.vod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    /* Image placeholder si pas encore de miniature */
    background: rgba(185, 76, 255, 0.05);
}

.vod-card:hover .vod-thumb img {
    transform: scale(1.04);
}

/* Icône play */
.vod-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.vod-play svg {
    width: 40px;
    height: 40px;
    color: #fff;
    filter: drop-shadow(0 0 12px rgba(185, 76, 255, 0.6));
}

.vod-card:hover .vod-play {
    opacity: 1;
}

/* Badge "Nouveau" */
.vod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(185, 76, 255, 0.85);
    border-radius: 4px;
    padding: 2px 8px;
}

/* Infos de la carte */
.vod-info {
    padding: 12px 14px;
}

.vod-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vod-card-meta {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(185, 76, 255, 0.7);
    letter-spacing: 0.05em;
}

/* ─── VOD HERO FEATURED ─────────────────────────────────── */
.vod-featured {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 32px;
    animation: fadeUp 0.5s ease both;
}

.vod-hero-card {
    position: relative;
    background: linear-gradient(135deg, rgba(185,76,255,0.08) 0%, rgba(20,10,40,0.6) 100%);
    border: 1px solid rgba(185, 76, 255, 0.2);
    border-radius: 18px;
    padding: 24px 22px 20px;
    overflow: hidden;
}

.vod-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(185,76,255,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.vod-hero-body {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
}

.vod-hero-meta {
    flex: 1;
    min-width: 0;
}

.vod-hero-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vod-hero-subtitle {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.vod-hero-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vod-hero-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,0,0,0.12);
    color: #ff6b6b;
    border: 1px solid rgba(255,0,0,0.25);
}

.vod-hero-yt-btn:hover {
    background: rgba(255,0,0,0.22);
    border-color: rgba(255,80,80,0.5);
    color: #fff;
}

.vod-hero-embed {
    margin-top: 4px;
    border-radius: 12px;
    overflow: hidden;
}

.vod-hero-thumb-wrap {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    text-decoration: none;
}

.vod-hero-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.75);
}

.vod-hero-thumb-wrap:hover .vod-hero-thumb-img {
    transform: scale(1.03);
    filter: brightness(0.55);
}

.vod-hero-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.25s ease;
}

.vod-hero-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(185, 76, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 28px rgba(185, 76, 255, 0.55);
    transition: transform 0.2s ease, background 0.2s ease;
    padding-left: 4px; /* optical center for play icon */
}

.vod-hero-thumb-wrap:hover .vod-hero-play-btn {
    transform: scale(1.1);
    background: rgba(185, 76, 255, 1);
}

.vod-hero-play-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Bouton toutes les vidéos */
.vod-all-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(185, 76, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 28px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(185, 76, 255, 0.25);
    background: rgba(185, 76, 255, 0.06);
    transition: all 0.25s ease;
    animation: fadeUp 0.5s 0.3s ease both;
}

.vod-all-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.vod-all-btn:hover {
    border-color: rgba(185, 76, 255, 0.55);
    background: rgba(185, 76, 255, 0.12);
    color: #fff;
}

.vod-all-btn:hover svg { transform: translateX(3px); }

/* ─── PAGE LORE ──────────────────────────────────────── */
.page-lore {
    padding: 80px 24px 60px;
    align-items: center;
}

.lore-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 660px;
    text-align: left;
    animation: fadeUp 0.6s ease both;
}

/* Tag dossier */
.lore-dossier-tag {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.7);
    border: 1px solid rgba(185, 76, 255, 0.2);
    background: rgba(185, 76, 255, 0.06);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 20px;
}

/* Titre LORE */
.lore-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    letter-spacing: 0.1em;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1;
}

.lore-title-sub {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Séparateur décoratif */
.lore-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 28px;
}

.lore-divider span:not(.lore-divider-icon) {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 76, 255, 0.3), transparent);
}

.lore-divider span:last-child {
    background: linear-gradient(270deg, rgba(185, 76, 255, 0.3), transparent);
}

.lore-divider-icon {
    flex: none;
    color: rgba(185, 76, 255, 0.6);
    font-size: 0.7rem;
}

/* Fiche identité */
.lore-id-card {
    background: rgba(185, 76, 255, 0.04);
    border: 1px solid rgba(185, 76, 255, 0.15);
    border-left: 3px solid rgba(185, 76, 255, 0.5);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 36px;
}

.lore-id-card-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lore-id-photo {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lore-id-photo img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    border: 1px solid rgba(185, 76, 255, 0.35);
    filter: grayscale(30%) contrast(1.05);
    box-shadow: 0 0 16px rgba(185, 76, 255, 0.2);
}

.lore-id-photo-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.6);
    border: 1px solid rgba(185, 76, 255, 0.2);
    border-radius: 3px;
    padding: 1px 6px;
}

.lore-id-rows {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lore-id-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.lore-id-label {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.lore-id-value {
    color: #fff;
    font-weight: 400;
}

.lore-status {
    color: rgba(100, 255, 160, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Sections narratives */
.lore-sections {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.lore-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lore-section-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(185, 76, 255, 0.2);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    text-align: right;
    letter-spacing: 0.05em;
}

.lore-section-body {
    flex: 1;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lore-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.9);
    margin: 0 0 8px;
}

.lore-section-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}

/* Citation */
.lore-quote {
    position: relative;
    margin: 0 0 0 0;
    padding: 20px 24px;
    border: none;
    background: rgba(185, 76, 255, 0.05);
    border-radius: 8px;
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.lore-quote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(185, 76, 255, 0.3);
    line-height: 1;
}

/* ─── PAGE MUSIQUE ───────────────────────────────────── */
.page-musique {
    padding: 80px 24px 60px;
    align-items: center;
}

.musique-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 32px;
    animation: fadeDown 0.6s ease both;
}

/* ── HERO EXCLU ──────────────────────────────────────────── */
.musique-featured {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 680px;
    margin-bottom: 52px;
    animation: fadeUp 0.6s 0.1s ease both;
}

/* Conteneur visuel hero */
.musique-hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(185, 76, 255, 0.06);
    border: 1px solid rgba(185, 76, 255, 0.3);
    box-shadow:
        0 0 0 1px rgba(185, 76, 255, 0.1),
        0 20px 60px rgba(185, 76, 255, 0.2),
        0 0 100px rgba(185, 76, 255, 0.08);
    padding: 28px 28px 24px;
}

/* Lueur de fond animée */
.musique-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(185, 76, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Ligne de scan animée */
.musique-hero-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(185,76,255,0.9) 50%, transparent 100%);
    animation: scanline 3s ease-in-out infinite;
}

@keyframes scanline {
    0%   { transform: translateX(-100%); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* Bandeau EXCLU en haut */
.musique-exclu-banner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.musique-exclu-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(185,76,255,0.35), rgba(130,30,220,0.4));
    border: 1px solid rgba(185, 76, 255, 0.6);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 0 16px rgba(185,76,255,0.4);
}

.musique-exclu-tag .musique-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px #fff;
}

.musique-exclu-date {
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* Layout hero : cover + embed */
.musique-hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.musique-hero-cover {
    flex-shrink: 0;
    width: 130px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(185,76,255,0.4);
    box-shadow:
        0 0 20px rgba(185,76,255,0.25),
        0 8px 24px rgba(0,0,0,0.5);
    background: rgba(185,76,255,0.1);
    position: relative;
}

.musique-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.musique-hero-cover:hover img {
    transform: scale(1.06);
}

/* Vinyl spin effect overlay */
.musique-hero-cover-spin {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent 60%, rgba(185,76,255,0.06) 100%);
    animation: vinyl-spin 8s linear infinite;
    pointer-events: none;
}

@keyframes vinyl-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.musique-hero-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
}

.musique-hero-nouveaute {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(185,76,255,0.7);
}

.musique-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.05;
    text-shadow: 0 0 30px rgba(185,76,255,0.4);
}

.musique-hero-subtitle {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.musique-hero-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.musique-hero-sp-btn,
.musique-hero-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.musique-hero-sp-btn {
    color: #1DB954;
    border: 1px solid rgba(29, 185, 84, 0.4);
    background: rgba(29, 185, 84, 0.08);
}

.musique-hero-sp-btn:hover {
    background: rgba(29, 185, 84, 0.18);
    border-color: rgba(29, 185, 84, 0.7);
    box-shadow: 0 0 16px rgba(29,185,84,0.2);
}

.musique-hero-yt-btn {
    color: rgba(255, 80, 80, 0.9);
    border: 1px solid rgba(255, 80, 80, 0.3);
    background: rgba(255, 80, 80, 0.06);
}

.musique-hero-yt-btn:hover {
    background: rgba(255, 80, 80, 0.15);
    border-color: rgba(255, 80, 80, 0.6);
}

/* Player embed */
.musique-hero-embed {
    position: relative;
    z-index: 1;
}

/* Ancien label simple (gardé pour compat) */
.musique-featured-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.8);
    margin-bottom: 12px;
}

.musique-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(185, 76, 255, 0.9);
    box-shadow: 0 0 8px rgba(185, 76, 255, 0.6);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Responsive hero */
@media (max-width: 540px) {
    .musique-hero-card { padding: 20px 16px 18px; }
    .musique-hero-body { gap: 14px; }
    .musique-hero-cover { width: 90px; height: 90px; }
    .musique-hero-title { font-size: 1.5rem; }
}

/* Titre de section grille */
.musique-section-title-row {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 16px;
    animation: fadeUp 0.5s 0.2s ease both;
}

.musique-section-title-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 76, 255, 0.2), transparent);
}

.musique-section-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(185, 76, 255, 0.6);
    white-space: nowrap;
}

/* Grille sons */
.musique-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 720px;
    animation: fadeUp 0.6s 0.25s ease both;
}

/* Carte son */
.musique-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
    padding: 12px;
}

.musique-card:hover {
    border-color: rgba(185, 76, 255, 0.3);
    background: rgba(185, 76, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(185, 76, 255, 0.1);
}

.musique-cover-link {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.musique-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: rgba(185, 76, 255, 0.1);
    flex-shrink: 0;
}

.musique-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.musique-card:hover .musique-thumb img { transform: scale(1.05); }

.musique-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.musique-card:hover .musique-play-overlay { opacity: 1; }

.musique-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1DB954;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.musique-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(185, 76, 255, 0.85);
    border-radius: 4px;
    padding: 2px 6px;
}

/* Infos carte */
.musique-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.musique-card-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.musique-card-meta {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(185, 76, 255, 0.7);
    letter-spacing: 0.04em;
}

.musique-card-actions {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.musique-sp-btn,
.musique-yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.musique-sp-btn {
    color: #1DB954;
    border: 1px solid rgba(29, 185, 84, 0.3);
    background: rgba(29, 185, 84, 0.06);
}

.musique-sp-btn:hover {
    background: rgba(29, 185, 84, 0.14);
    border-color: rgba(29, 185, 84, 0.6);
    color: #1DB954;
}

.musique-yt-btn {
    color: rgba(255, 80, 80, 0.85);
    border: 1px solid rgba(255, 80, 80, 0.25);
    background: rgba(255, 80, 80, 0.05);
}

.musique-yt-btn:hover {
    background: rgba(255, 80, 80, 0.12);
    border-color: rgba(255, 80, 80, 0.5);
    color: #ff5050;
}

/* Skeleton musique */
.musique-skeleton {
    border-radius: 12px;
    background: linear-gradient(110deg, rgba(255,255,255,0.04) 40%, rgba(185,76,255,0.07) 50%, rgba(255,255,255,0.04) 60%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    height: 96px;
}

/* ─── ALBUMS ──────────────────────────────────── */
.albums-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 720px;
    animation: fadeUp 0.5s 0.2s ease both;
}

.album-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    border-color: rgba(185,76,255,0.4);
    background: rgba(185,76,255,0.07);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185,76,255,0.15);
}

.album-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(185,76,255,0.08);
}

.album-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.album-card:hover .album-thumb img { transform: scale(1.06); }

.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.album-card:hover .album-overlay { opacity: 1; }

.album-play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1DB954;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(29,185,84,0.5);
    transform: scale(0.85);
    transition: transform 0.2s ease;
}

.album-card:hover .album-play-btn { transform: scale(1); }

.album-info {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.album-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-count {
    font-size: 0.7rem;
    color: rgba(185,76,255,0.65);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ─── PANEL ALBUM ────────────────────────────── */
.album-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.album-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.album-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    background: #0e0b14;
    border-top: 1px solid rgba(185,76,255,0.2);
    border-radius: 20px 20px 0 0;
    z-index: 901;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.album-panel.open {
    transform: translateY(0);
}

.album-panel-header {
    flex-shrink: 0;
    padding: 20px 20px 16px;
    background: linear-gradient(180deg, rgba(185,76,255,0.12) 0%, transparent 100%);
    position: relative;
}

.album-panel-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.album-panel-close:hover {
    background: rgba(185,76,255,0.2);
    color: #fff;
}

.album-panel-hero {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-right: 44px;
}

.album-panel-cover-img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.album-panel-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.album-panel-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(185,76,255,0.7);
}

.album-panel-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.album-panel-count {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.album-panel-tracks {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 14px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.album-panel-tracks .musique-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    flex-shrink: 0;
}

.album-panel-tracks .musique-card .musique-info {
    min-width: 0;
    overflow: hidden;
}

.album-panel-tracks .musique-card .musique-card-title,
.album-panel-tracks .musique-card .musique-card-meta {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-panel-tracks::-webkit-scrollbar { width: 4px; }
.album-panel-tracks::-webkit-scrollbar-track { background: transparent; }
.album-panel-tracks::-webkit-scrollbar-thumb { background: rgba(185,76,255,0.3); border-radius: 2px; }

@media (min-width: 600px) {
    .album-panel {
        max-width: 720px;
        left: 50%;
        right: auto;
        width: 100%;
        margin-left: -360px;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
    }
    .album-panel.open { transform: translateY(0); }
    .albums-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── FOOTER ─────────────────────────────────── */
.noto-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin-top: 48px;
    padding: 0 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: fadeDown 0.7s 0.8s ease both;
}

/* Ligne séparatrice violette */
.noto-footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 76, 255, 0.3), transparent);
    margin-bottom: 4px;
}

/* Icônes réseaux */
.noto-footer-socials {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.noto-footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(185, 76, 255, 0.15);
    background: rgba(185, 76, 255, 0.05);
    transition: all 0.2s ease;
}

.noto-footer-icon:hover {
    border-color: rgba(185, 76, 255, 0.5);
    background: rgba(185, 76, 255, 0.12);
    transform: translateY(-2px);
}

.noto-footer-icon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}

/* Copyright */
.noto-footer-copy {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

/* Responsive */
@media (max-width: 540px) {
    .noto-footer { padding: 0 16px 28px; }
}


/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 540px) {
    .noto-title  { font-size: 3rem; }
    .noto-links  { max-width: 100%; }

    .noto-nav-btn {
        font-size: 0;
        padding: 8px 12px;
    }
    .noto-nav-btn svg { width: 18px; height: 18px; }

    .vod-grid { grid-template-columns: 1fr; }
    .vod-title { font-size: 2.2rem; }
    .vod-hero-title { font-size: 1.2rem; }
    .vod-hero-card { padding: 18px 14px 16px; }
    .vod-hero-embed iframe { height: 180px; }

    .lore-title { font-size: 3rem; }
    .lore-section { gap: 12px; }
    .lore-section-num { font-size: 1.5rem; width: 30px; }
    .lore-id-photo img { width: 70px; height: 88px; }
    .lore-id-card-inner { gap: 14px; }

    .musique-grid { grid-template-columns: 1fr; }
    .musique-card { padding: 10px; }
    .musique-thumb { width: 60px; height: 60px; }
}
/* ─── PAGE FAILLE ─────────────────────────────────────────── */
.page-faille {
    display: none;
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
}
.page-faille.active { display: flex; align-items: center; justify-content: center; }

.faille-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.faille-scan {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,255,80,0.03) 2px,
        rgba(0,255,80,0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

.faille-pre {
    font-family: 'Courier New', monospace;
    font-size: .7rem;
    color: #0f0;
    letter-spacing: .2em;
    margin-bottom: 2rem;
    opacity: .7;
    animation: blink 1.4s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.faille-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 20vw, 10rem);
    color: #fff;
    line-height: 1;
    position: relative;
    animation: glitch 2s infinite;
}
.faille-title::before,
.faille-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; right: 0;
}
.faille-title::before {
    color: #0ff;
    animation: glitch-before 2s infinite;
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}
.faille-title::after {
    color: #f0f;
    animation: glitch-after 2s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}
@keyframes glitch {
    0%,90%,100% { transform: none; }
    92% { transform: skew(-2deg); }
    95% { transform: skew(2deg); }
}
@keyframes glitch-before {
    0%,90%,100% { transform: none; opacity: 0; }
    91% { transform: translateX(-4px); opacity: 1; }
    93% { transform: translateX(4px); opacity: 1; }
    95% { opacity: 0; }
}
@keyframes glitch-after {
    0%,90%,100% { transform: none; opacity: 0; }
    92% { transform: translateX(4px); opacity: 1; }
    94% { transform: translateX(-4px); opacity: 1; }
    96% { opacity: 0; }
}

.faille-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #0f0;
    letter-spacing: .15em;
    margin: .5rem 0 1.5rem;
}

.faille-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faille-accent { color: #0f0; font-weight: 600; }

.faille-code {
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    color: rgba(0,255,80,.5);
    letter-spacing: .1em;
    margin-bottom: 2.5rem;
}

.faille-back-btn {
    background: transparent;
    border: 1px solid rgba(0,255,80,.4);
    color: rgba(0,255,80,.8);
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    letter-spacing: .1em;
    padding: .6rem 1.6rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all .2s;
}
.faille-back-btn:hover {
    background: rgba(0,255,80,.08);
    border-color: rgba(0,255,80,.8);
    color: #0f0;
}

/* ─── EASTER EGG HUD ──────────────────────────────────────── */
.egg-hud {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(0,0,0,.7);
    border: 1px solid rgba(185,76,255,.4);
    border-radius: 20px;
    padding: .3rem .9rem;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    color: rgba(185,76,255,.9);
    z-index: 9999;
    pointer-events: none;
    animation: hudAppear .3s ease;
}
@keyframes hudAppear {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
}

/* ─── FLASH sur collecte ──────────────────────────────────── */
.egg-flash {
    animation: eggFlash .5s ease !important;
}
@keyframes eggFlash {
    0%,100% { filter: none; }
    30%      { filter: brightness(3) saturate(0); }
    60%      { filter: brightness(1.5) hue-rotate(60deg); }
}
