/* ============================================================
   Angelo Ticli — Rock site stylesheet
   Style: old-school 2000s + neumorphism + violet lightning
   ============================================================ */

/* ---- Variables ---- */
:root {
    --bg:           #0a0014;
    --bg-mid:       #110022;
    --bg-card:      #160028;
    --purple-deep:  #1a003a;
    --purple:       #6600cc;
    --purple-light: #9933ff;
    --purple-neon:  #cc00ff;
    --purple-glow:  #dd44ff;
    --gold:         #ffe066;
    --gold-light:   #fff0a0;
    --white:        #f0e8ff;
    --muted:        #9977bb;

    /* Neumorphism shadows (fond violet foncé) */
    --neu-light:    #2d0060;
    --neu-dark:     #040008;
    --neu-inset-l:  #1e0045;
    --neu-inset-d:  #07000f;

    --font-metal:   'Metal Mania', cursive;
    --font-head:    'Oswald', sans-serif;
    --font-body:    'Rajdhani', sans-serif;

    --transition:   0.25s ease;
    --radius:       12px;
}

/* ---- Accessibility ---- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Reset & base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--purple-neon);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.metal-font {
    font-family: var(--font-metal);
    letter-spacing: 0.04em;
}

/* ============================================================
   FOND PARALLAX
   ============================================================ */
.parallax-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: url('../assets/img/background.jpeg');
    background-size: cover;
    background-position: center 0%;
    background-repeat: no-repeat;
    will-change: background-position;
}

/* Sur mobile/tactile : la barre d'adresse iOS change la hauteur du viewport
   dynamiquement, ce qui fait "respirer" un élément avec inset:0.
   On fixe la hauteur à 100vh (= grand viewport sur iOS, stable au scroll)
   et on annule bottom:auto pour éviter le redimensionnement. */
@media (pointer: coarse) {
    .parallax-bg {
        will-change: auto;
        height: 100vh;
        bottom: auto;
        background-position: center 50%;
    }
}

.parallax-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 45% at 50% 0%,   rgba(61,0,128,0.60) 0%, transparent 70%),
        radial-gradient(ellipse 60% 35% at 80% 100%, rgba(34,0,85,0.50) 0%, transparent 60%),
        linear-gradient(180deg,
            rgba(10,0,20,0.70) 0%,
            rgba(10,0,20,0.45) 50%,
            rgba(10,0,20,0.70) 100%
        );
    pointer-events: none;
}

/* ============================================================
   SCANLINES — effet vieille TV cathodique
   ============================================================ */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.07) 2px,
        rgba(0, 0, 0, 0.07) 4px
    );
}

/* ============================================================
   CANVAS ÉCLAIRS RÉALISTES (dessiné en JS)
   ============================================================ */
#lightning-canvas {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 10;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(100,0,200,0.18) 0%, transparent 70%);
}

.hero-inner {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.hero-tagline {
    font-family: var(--font-head);
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    text-shadow: 0 0 12px var(--purple-neon);
}

.hero-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 640px;
    width: 100%;
    height: auto;
    filter:
        drop-shadow(0 0 20px rgba(204,0,255,0.6))
        drop-shadow(0 0 60px rgba(153,0,255,0.35));
    animation: name-pulse-logo 4s ease-in-out infinite;
}

@keyframes name-pulse-logo {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(204,0,255,0.55)) drop-shadow(0 0 50px rgba(153,0,255,0.30)); }
    50%       { filter: drop-shadow(0 0 30px rgba(220,0,255,0.85)) drop-shadow(0 0 90px rgba(180,0,255,0.55)); }
}

.hero-name {
    font-size: clamp(3rem, 11vw, 7.5rem);
    line-height: 0.95;
    color: var(--white);
    text-shadow:
        0 0 10px rgba(255,255,255,0.4),
        0 0 30px var(--purple-neon),
        0 0 70px var(--purple),
        0 0 120px rgba(153,0,255,0.4),
        3px 3px 0 #33006a,
        6px 6px 0 #1a003a;
    animation: name-pulse 4s ease-in-out infinite;
}

@keyframes name-pulse {
    0%, 100% { text-shadow:
        0 0 10px rgba(255,255,255,0.4),
        0 0 30px var(--purple-neon),
        0 0 70px var(--purple),
        0 0 120px rgba(153,0,255,0.4),
        3px 3px 0 #33006a,
        6px 6px 0 #1a003a;
    }
    50% { text-shadow:
        0 0 15px rgba(255,255,255,0.6),
        0 0 50px var(--purple-glow),
        0 0 100px var(--purple-neon),
        0 0 160px rgba(204,0,255,0.6),
        3px 3px 0 #44009a,
        6px 6px 0 #220055;
    }
}

.divider-bolt {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    max-width: 440px;
    opacity: 0.85;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 6px var(--gold);
}

.divider-bolt-icon {
    width: 16px;
    height: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px var(--gold));
}

.hero-coming {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    color: var(--gold);
    text-shadow:
        0 0 8px rgba(255,224,102,0.6),
        0 0 25px var(--gold),
        0 0 60px #ffaa00,
        2px 2px 0 #996600,
        4px 4px 0 #4a3000;
    animation: coming-flicker 3s step-end infinite;
}

@keyframes coming-flicker {
    0%, 19%, 21%, 23%, 80%, 82%, 84%, 100% { opacity: 1; }
    20%, 22%  { opacity: 0.85; }
    81%, 83%  { opacity: 0.92; }
}

.hero-sub {
    font-family: var(--font-head);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.08em;
    max-width: 500px;
}

/* ============================================================
   BOUTONS — Neumorphisme sur fond violet
   ============================================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-social-img {
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
    text-decoration: none;
}

.btn-social-img:hover {
    transform: translateY(-3px);
}

.btn-social-youtube:hover {
    filter: drop-shadow(0 0 8px rgb(255, 0, 0));
}

.btn-social-facebook:hover {
    filter: drop-shadow(0 0 8px rgb(76, 159, 232));
}
.btn-social-instagram:hover {
    filter: drop-shadow(0 0 8px rgb(225, 48, 108));
}
.btn-social-tiktok:hover {
    filter: drop-shadow(0 0 8px rgb(105, 201, 208));
}
.btn-social-email:hover {
    filter: drop-shadow(0 0 8px rgb(180, 120, 255));
}

.btn-social-img:active {
    transform: translateY(0);
}

.btn-social-svg {
    display: block;
    height: 100px;
    width: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    user-select: none;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   BOUTONS SOCIAUX — plateforme avec couleur marque
   Forme neumorphique identique, accent couleur par réseau
   ============================================================ */
.btn-social {
    background: var(--bg-card);
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn-social::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
    pointer-events: none;
}

/* YouTube — rouge */
.btn-youtube {
    color: #FF4444;
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 0 1px rgba(255,0,0,0.22),
        0 0 14px rgba(255,0,0,0.18);
    text-shadow: 0 0 10px rgba(255,68,68,0.55);
}
.btn-youtube:hover {
    color: #FF6666;
    box-shadow:
        8px 8px 18px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,0,0,0.45),
        0 0 30px rgba(255,0,0,0.40),
        0 0 60px rgba(255,0,0,0.15);
    text-shadow: 0 0 16px rgba(255,68,68,0.8);
    transform: translateY(-2px);
}
.btn-youtube:active { transform: translateY(0); }

/* Instagram — rose/violet brand */
.btn-instagram {
    color: #E1306C;
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 0 1px rgba(225,48,108,0.22),
        0 0 14px rgba(225,48,108,0.18);
    text-shadow: 0 0 10px rgba(225,48,108,0.55);
}
.btn-instagram:hover {
    color: #F06090;
    box-shadow:
        8px 8px 18px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(225,48,108,0.45),
        0 0 30px rgba(225,48,108,0.40),
        0 0 60px rgba(225,48,108,0.15);
    text-shadow: 0 0 16px rgba(225,48,108,0.8);
    transform: translateY(-2px);
}
.btn-instagram:active { transform: translateY(0); }

/* Facebook — bleu brand */
.btn-facebook {
    color: #4C9FE8;
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 0 1px rgba(24,119,242,0.22),
        0 0 14px rgba(24,119,242,0.18);
    text-shadow: 0 0 10px rgba(76,159,232,0.55);
}
.btn-facebook:hover {
    color: #7DBFF0;
    box-shadow:
        8px 8px 18px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(24,119,242,0.45),
        0 0 30px rgba(24,119,242,0.40),
        0 0 60px rgba(24,119,242,0.15);
    text-shadow: 0 0 16px rgba(76,159,232,0.8);
    transform: translateY(-2px);
}
.btn-facebook:active { transform: translateY(0); }

/* TikTok — cyan brand */
.btn-tiktok {
    color: #69C9D0;
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 0 1px rgba(105,201,208,0.22),
        0 0 14px rgba(105,201,208,0.18);
    text-shadow: 0 0 10px rgba(105,201,208,0.55);
}
.btn-tiktok:hover {
    color: #9ADFDA;
    box-shadow:
        8px 8px 18px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.1),
        0 0 0 1px rgba(105,201,208,0.45),
        0 0 30px rgba(105,201,208,0.40),
        0 0 60px rgba(105,201,208,0.15);
    text-shadow: 0 0 16px rgba(105,201,208,0.8);
    transform: translateY(-2px);
}
.btn-tiktok:active { transform: translateY(0); }

/* Bouton primaire — neumorphisme extrudé violet (vidéo cta) */
.btn-primary {
    background: var(--purple-deep);
    color: var(--gold);
    box-shadow:
        6px 6px 14px var(--neu-dark),
        -4px -4px 10px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 0 0 1px rgba(153,0,255,0.3),
        0 0 18px rgba(153,0,255,0.25);
    text-shadow: 0 0 10px var(--gold), 0 0 25px #ffaa00;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    color: var(--gold-light);
    box-shadow:
        8px 8px 18px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 0 0 1px rgba(204,0,255,0.5),
        0 0 35px rgba(204,0,255,0.5),
        0 0 70px rgba(204,0,255,0.2);
    transform: translateY(-2px);
}

.btn-primary:active {
    box-shadow:
        inset 4px 4px 10px var(--neu-inset-d),
        inset -3px -3px 8px var(--neu-inset-l),
        0 0 0 1px rgba(153,0,255,0.3);
    transform: translateY(0);
}

/* Bouton secondaire — neumorphisme enfoncé / creux */
.btn-secondary {
    background: var(--bg-card);
    color: var(--purple-neon);
    box-shadow:
        inset 4px 4px 10px var(--neu-inset-d),
        inset -3px -3px 8px var(--neu-inset-l),
        0 0 0 1px rgba(153,0,255,0.2),
        0 0 12px rgba(153,0,255,0.12);
    text-shadow: 0 0 8px var(--purple-neon);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.04) 100%);
    pointer-events: none;
}

.btn-secondary:hover {
    color: var(--purple-glow);
    box-shadow:
        inset 5px 5px 13px var(--neu-inset-d),
        inset -4px -4px 10px var(--neu-inset-l),
        0 0 0 1px rgba(204,0,255,0.4),
        0 0 22px rgba(204,0,255,0.3);
    text-shadow: 0 0 14px var(--purple-glow);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* ============================================================
   SECTIONS communes
   ============================================================ */
.section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
    color: var(--gold);
    text-shadow:
        0 0 10px var(--gold),
        0 0 30px #ffaa00;
    margin-bottom: 2.5rem;
    letter-spacing: 0.06em;
}

.title-bolt {
    width: 22px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px var(--gold));
}

/* ============================================================
   SECTION BIO
   ============================================================ */

/* Bouton email entre photo et bio */
.email-cta {
    display: flex;
    justify-content: center;
    padding: 2.5rem 0 1rem;
}

.section-bio {
    background: linear-gradient(180deg, transparent, rgba(22,0,40,0.55) 20%, rgba(22,0,40,0.55) 80%, transparent);
}

.bio-block {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(153,0,255,0.18);
    padding: 3rem 3.5rem;
    /* Neumorphisme inset subtil */
    box-shadow:
        inset 3px 3px 10px var(--neu-inset-d),
        inset -2px -2px 8px var(--neu-inset-l),
        0 0 40px rgba(100,0,200,0.15),
        0 8px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.bio-block p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    font-weight: 300;
    line-height: 1.8;
    color: #d4c0ee;
    text-align: justify;
    hyphens: auto;
}

.bio-block strong {
    color: var(--white);
    font-weight: 600;
}

.bio-block em {
    color: var(--gold);
    font-style: normal;
}

.bio-finale {
    font-family: var(--font-head) !important;
    font-weight: 400 !important;
    font-size: clamp(1rem, 2.2vw, 1.18rem) !important;
    color: var(--purple-neon) !important;
    text-align: center !important;
    text-shadow: 0 0 12px var(--purple-neon);
    border-top: 1px solid rgba(153,0,255,0.2);
    padding-top: 1.2rem;
    margin-top: 0.4rem;
    line-height: 1.9 !important;
}

@media (max-width: 600px) {
    .bio-block { padding: 2rem 1.4rem; }
}

/* ============================================================
   SECTION PHOTO
   ============================================================ */
.section-photo {
    background: linear-gradient(180deg, transparent, rgba(26,0,58,0.5) 30%, rgba(26,0,58,0.5) 70%, transparent);
}

.photo-frame {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
}

.artist-photo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(153,0,255,0.4);
    filter:
        contrast(1.08)
        saturate(0.9)
        drop-shadow(0 0 20px rgba(153,0,255,0.5))
        drop-shadow(0 0 50px rgba(102,0,204,0.3));
    box-shadow:
        0 0 0 4px rgba(102,0,204,0.2),
        0 0 40px rgba(153,0,255,0.35),
        0 0 100px rgba(102,0,204,0.2),
        8px 8px 25px rgba(0,0,0,0.7);
    transition: filter var(--transition), box-shadow var(--transition);
}

.artist-photo:hover {
    filter:
        contrast(1.1)
        saturate(1)
        drop-shadow(0 0 30px rgba(204,0,255,0.7))
        drop-shadow(0 0 70px rgba(153,0,255,0.4));
    box-shadow:
        0 0 0 4px rgba(204,0,255,0.4),
        0 0 60px rgba(204,0,255,0.5),
        0 0 120px rgba(153,0,255,0.3),
        8px 8px 25px rgba(0,0,0,0.7);
}

/* Placeholder si pas de photo */
.photo-placeholder {
    width: 100%;
    aspect-ratio: 1600 / 1067;
    background: var(--bg-card);
    border-radius: 8px;
    border: 2px dashed rgba(153,0,255,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow:
        inset 6px 6px 16px var(--neu-inset-d),
        inset -4px -4px 12px var(--neu-inset-l);
}
.placeholder-icon {
    width: 56px;
    height: 56px;
    opacity: 0.5;
}
.photo-placeholder p    { color: var(--muted); font-family: var(--font-head); letter-spacing: 0.15em; font-size: 0.9rem; text-transform: uppercase; }

.photo-glow {
    position: absolute;
    inset-block: -30px;
    inset-inline: 0;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(153,0,255,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1;   }
}

.photo-credit {
    margin-top: 1rem;
    text-align: center;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.7;
}

.photo-credit-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(153,0,255,0.4);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, opacity 0.2s ease;
}

.photo-credit-link:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
    opacity: 1;
}

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners {
    margin-top: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.partners-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.7;
}

.partner-link {
    display: inline-block;
    border-radius: 10px;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow:
        6px 6px 16px var(--neu-dark),
        -4px -4px 12px var(--neu-light),
        0 0 0 1px rgba(153,0,255,0.15);
}

.partner-link:hover {
    transform: translateY(-3px);
    box-shadow:
        8px 8px 20px var(--neu-dark),
        -5px -5px 14px var(--neu-light),
        0 0 0 1px rgba(204,0,255,0.35),
        0 0 25px rgba(153,0,255,0.30);
}

.partner-logo {
    height: 64px;
    width: auto;
    max-width: 220px;
    border-radius: 8px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.85);
    transition: filter var(--transition), box-shadow var(--transition);
    display: block;
    outline: 2px solid rgba(153,0,255,0.45);
    outline-offset: 3px;
    box-shadow: 0 0 12px rgba(153,0,255,0.30);
}

.partner-link:hover .partner-logo {
    filter: brightness(1.05) saturate(1);
    outline-color: rgba(204,0,255,0.75);
    box-shadow: 0 0 22px rgba(204,0,255,0.50);
}

/* ============================================================
   SECTION VIDÉO
   ============================================================ */
.section-video {
    background: linear-gradient(180deg, transparent, rgba(10,0,26,0.6) 20%, rgba(10,0,26,0.6) 80%, transparent);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 2.12 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    /* Neumorphisme extrudé */
    box-shadow:
        10px 10px 28px var(--neu-dark),
        -6px -6px 18px var(--neu-light),
        0 0 0 2px rgba(153,0,255,0.25),
        0 0 40px rgba(102,0,204,0.3),
        0 0 80px rgba(102,0,204,0.12);
    border: 1px solid rgba(153,0,255,0.2);
    transition: box-shadow var(--transition);
}

.video-wrapper:hover {
    box-shadow:
        10px 10px 28px var(--neu-dark),
        -6px -6px 18px var(--neu-light),
        0 0 0 2px rgba(204,0,255,0.5),
        0 0 60px rgba(204,0,255,0.45),
        0 0 120px rgba(153,0,255,0.2);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-cta {
    text-align: center;
    margin-top: 2.2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    z-index: 10;
    background: var(--bg-mid);
    border-top: 1px solid rgba(153,0,255,0.2);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 -8px 40px rgba(102,0,204,0.2);
}

.footer-name {
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: var(--purple-neon);
    text-shadow: 0 0 15px var(--purple-neon);
    margin-bottom: 0.5rem;
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: clamp(50px, 10vw, 90px);
    width: auto;
    filter: drop-shadow(0 0 12px var(--purple-neon));
}

.footer-copy {
    font-family: var(--font-head);
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.footer-promo {
    font-family: var(--font-head);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    opacity: 0.65;
    margin-top: 0.6rem;
}

/* Lien nickel. */
.footer-nickel {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition), text-shadow var(--transition);
}

.footer-nickel:hover {
    color: #F286AA;
    text-shadow: 0 0 10px rgba(242,134,170,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .btn-social-svg {
        height: 64px;
    }

    .bolt-5 { display: none; }
}

/* ============================================================
   ACCESSIBILITÉ — focus visible
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--purple-neon);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ============================================================
   SCROLLBAR — style rock
   ============================================================ */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--purple), var(--purple-neon));
    border-radius: 3px;
}

/* ============================================================
   LANG SWITCHER
   ============================================================ */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1.25rem;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(10, 0, 20, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 0, 204, 0.35);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
}

.lang-btn {
    color: var(--muted);
    text-decoration: none;
    padding: 0.1rem 0.2rem;
    transition: color var(--transition);
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-btn.active {
    color: var(--gold);
    cursor: default;
    pointer-events: none;
}

.lang-sep {
    color: var(--purple);
    user-select: none;
    line-height: 1;
}
