/* =========================================================
   VON DEEPER — Feuille de style
   Refonte moderne : dark grunge / stoner, accent rouge brique
   ========================================================= */

:root {
    --bg:            #08080a;
    --bg-soft:       #101013;
    --surface:       #161619;
    --surface-2:     #1d1d21;
    --border:        #2a2a30;
    --text:          #d7d7da;
    --text-dim:      #8c8c93;
    --red:           #b22717;   /* rouge brique vif    */
    --red-deep:      #6f1b11;   /* rouge brique sombre */
    --red-glow:      rgba(178, 39, 23, 0.45);
    --white:         #f5f5f5;
    --maxw:          1200px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Special Elite', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

a { color: var(--red); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--white); }

img { max-width: 100%; }

::selection { background: var(--red); color: #fff; }

/* Largeur de contenu cohérente */
.section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
}

.red { color: var(--red); }

/* En-tête de section avec liseré rouge */
.section-title {
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.05;
    text-align: center;
    margin-bottom: 2.75rem;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 1rem auto 0;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 18px var(--red-glow);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
    background: rgba(8, 8, 10, 0);
    backdrop-filter: blur(0px);
    transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
                border-color 0.4s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    background: rgba(8, 8, 10, 0.82);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
.site-nav .brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    font-size: 1.05rem;
}
.site-nav .brand img { height: 34px; width: auto; }

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
    position: relative;
    padding: 0.25rem 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

@media (max-width: 760px) {
    .nav-links { display: none; }
}

/* =========================================================
   HERO — carousel plein écran + logo
   ========================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}
.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item { height: 100%; }
.hero .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    /* filter: grayscale(100%) contrast(1.05) brightness(0.7); */
}


.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    pointer-events: none;
}
.hero-logo {
    width: min(440px, 78vw);
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.8));
    animation: rise 1.1s var(--ease) both;
}
.hero-tagline {
    margin-top: 1.25rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: clamp(0.7rem, 2.2vw, 0.95rem);
    color: var(--text-dim);
    animation: rise 1.1s var(--ease) 0.15s both;
    background: rgba(24, 24, 28, 0.6);
}
.hero-cta {
    pointer-events: auto;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.9rem;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 2px;
    box-shadow: 0 8px 30px var(--red-glow);
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    animation: rise 1.1s var(--ease) 0.3s both;
}
.hero-cta:hover {
    background: var(--red-deep);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 38px var(--red-glow);
}

/* Indicateur de défilement */
.scroll-cue {
    position: absolute;
    bottom: 1.75rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-dim);
    font-size: 1.2rem;
    animation: bob 1.8s ease-in-out infinite;
}

/* Boutons carousel discrets */
.hero .carousel-control-prev,
.hero .carousel-control-next { z-index: 4; width: 8%; opacity: 0; transition: opacity 0.3s; }
.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next { opacity: 0.55; }
.hero .carousel-indicators { z-index: 4; margin-bottom: 0.75rem; }
.hero .carousel-indicators [data-bs-target] {
    width: 28px; height: 3px; border: 0; border-radius: 2px;
    background: rgba(255,255,255,0.45);
}
.hero .carousel-indicators .active { background: var(--red); }

/* =========================================================
   BIOGRAPHIE
   ========================================================= */
#biographie .bio-grid {
    max-width: 820px;
    margin: 0 auto;
}
#biographie p {
    text-align: justify;
    font-size: 1.06rem;
    color: var(--text);
    margin-bottom: 1.15rem;
}
#biographie p:first-of-type {
    font-size: 1.22rem;
    color: var(--white);
    text-align: center;
    line-height: 1.6;
}


/* =========================================================
   VIDÉOS
   ========================================================= */
#videos .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.video-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.video-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
.video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    border: 0;
}

/* =========================================================
   CONCERTS
   ========================================================= */
#concerts { padding-top: 0; }
.shows-block + .shows-block { margin-top: 4rem; }

.event {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--red-deep);
    border-radius: 6px;
    background: var(--surface);
    margin-bottom: 0.75rem;
    transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
                background 0.25s var(--ease);
}
.event:hover {
    transform: translateX(6px);
    border-left-color: var(--red);
    background: var(--surface-2);
}
.event .event-date {
    flex: 0 0 150px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: var(--red);
    font-weight: 600;
}
.event .event-venue {
    flex: 1;
    color: var(--text);
    font-size: 1rem;
}
.shows-block.past .event { opacity: 0.72; border-left-color: var(--border); }
.shows-block.past .event:hover { opacity: 1; }
.shows-block.past .event .event-date { color: var(--text-dim); }

@media (max-width: 560px) {
    .event { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
    .event .event-date { flex-basis: auto; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    text-align: center;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: clamp(3rem, 7vw, 4.5rem) 1.5rem 2rem;
}
.site-footer .footer-logo {
    width: 72px;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}
.site-footer h3 {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}
.site-footer h3::after {
    content: "";
    display: block;
    width: 48px; height: 3px;
    margin: 0.75rem auto 0;
    background: var(--red);
    border-radius: 2px;
}
.contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    margin: 1.25rem 0 2rem;
}
.contacts a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-size: 1.02rem;
}
.contacts a:hover { color: var(--red); }
.contacts i { color: var(--red); width: 1.2em; }

/* Boutons sociaux circulaires */
.liens {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0 auto 2.5rem;
    max-width: 460px;
}
.liens a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    background: var(--surface);
    font-size: 1.25rem;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease),
                color 0.25s var(--ease), border-color 0.25s var(--ease),
                box-shadow 0.25s var(--ease);
}
.liens a:hover {
    transform: translateY(-4px);
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 10px 26px var(--red-glow);
}
.liens a .fa-2x { font-size: 1.25rem; }
.liens a#tidal img {
    width: 22px; height: 22px;
    filter: brightness(0) invert(0.8);
    transition: filter 0.25s var(--ease);
}
.liens a#tidal:hover img { filter: brightness(0) invert(1); }

#copyright {
    color: var(--text-dim);
    font-size: 0.82rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

/* =========================================================
   Bouton retour en haut
   ========================================================= */
.to-top {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    z-index: 900;
    width: 46px; height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 24px var(--red-glow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--red-deep); color: #fff; }

/* =========================================================
   Révélation au défilement
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Animations
   ========================================================= */
@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   NAVBAR — hamburger + active state + multi-page
   ========================================================= */
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    z-index: 1100;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(280px, 85vw);
        height: 100vh;
        background: rgba(8,8,10,.97);
        backdrop-filter: blur(18px);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        gap: .25rem;
        transition: right .35s var(--ease);
        z-index: 1050;
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a { font-size: 1.15rem; display: block; padding: .7rem 0; }
}

/* =========================================================
   PAGE HEADER (sub-pages banner)
   ========================================================= */
.page-header {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    margin-top: 62px; /* navbar height */
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(178,39,23,.18), transparent);
    z-index: 1;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,10,.45) 0%, rgba(8,8,10,.75) 100%);
    z-index: 2;
}
.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.page-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--white);
    margin: 0 0 .5rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.page-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: .75rem auto 0;
    background: var(--red);
    border-radius: 2px;
    box-shadow: 0 0 18px var(--red-glow);
}
.page-subtitle {
    margin-top: 1rem;
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: clamp(.85rem, 2.5vw, 1.1rem);
    color: var(--text-dim);
    letter-spacing: .12em;
    min-height: 1.6em;
}

/* =========================================================
   MACHINE À ÉCRIRE
   ========================================================= */
.tw-text {
    font-family: 'Special Elite', 'Courier New', monospace;
    letter-spacing: .05em;
}
.tw-active::after {
    content: '|';
    color: var(--red);
    animation: blink-cursor .7s step-end infinite;
}
.tw-done::after { content: ''; }

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* =========================================================
   BUTTONS (btn-vd)
   ========================================================= */
.btn-vd {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.75rem;
    background: var(--red);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .85rem;
    border-radius: 3px;
    border: 2px solid var(--red);
    box-shadow: 0 6px 24px var(--red-glow);
    transition: transform .25s var(--ease), background .25s, box-shadow .25s;
    text-decoration: none;
}
.btn-vd:hover { background: var(--red-deep); color: #fff; transform: translateY(-2px); border-color: var(--red-deep); }
.btn-vd-outline { background: transparent; color: var(--red); }
.btn-vd-outline:hover { background: var(--red); color: #fff; }

/* =========================================================
   HOME — misc
   ========================================================= */
.home-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.home-shows-section { background: var(--bg-soft); }
.home-shows { display: grid; gap: 1rem; }
.home-show-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.1rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    transition: transform .25s var(--ease), background .25s;
}
.home-show-card:hover { transform: translateX(5px); background: var(--surface-2); }
.hsc-date {
    flex: 0 0 auto;
    text-align: center;
    background: var(--red);
    color: #fff;
    border-radius: 5px;
    padding: .55rem .9rem;
    line-height: 1.15;
    min-width: 60px;
}
.hsc-day  { display: block; font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; }
.hsc-mon  { display: block; font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.hsc-year { display: block; font-size: .7rem; opacity: .8; }
.hsc-info { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.hsc-info strong { color: var(--white); font-size: 1rem; }
.hsc-info span { color: var(--text-dim); font-size: .88rem; }
.hsc-info em { color: var(--red); font-size: .82rem; }
.hsc-ticket { margin-left: auto; flex: 0 0 auto; }

/* =========================================================
   BIO
   ========================================================= */
.bio-full { max-width: 820px; margin: 0 auto; }
.bio-lead {
    font-size: 1.22rem;
    color: var(--white);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-family: 'Special Elite', 'Courier New', monospace;
}
.bio-full p { text-align: justify; font-size: 1.06rem; margin-bottom: 1.15rem; }

.membres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.membre-card {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: transform .3s var(--ease), border-color .3s;
}
.membre-card:hover { transform: translateY(-4px); border-color: var(--red); }
.membre-icon { font-size: 2.5rem; color: var(--red); margin-bottom: 1rem; }
.membre-card h3 { font-size: 1.1rem; letter-spacing: .08em; margin-bottom: .75rem; }
.membre-card p { color: var(--text-dim); font-size: .9rem; margin: 0; }

.tags-list { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.tag {
    padding: .45rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .82rem;
    color: var(--text-dim);
    font-family: 'Special Elite', monospace;
    transition: background .2s, color .2s, border-color .2s;
}
.tag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* =========================================================
   PHOTOS — gallery + lightbox
   ========================================================= */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid var(--border);
    display: block;
    aspect-ratio: 4/3;
    background: var(--surface);
}
.photo-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease), filter .4s;
}
.photo-item:hover img { transform: scale(1.06); filter: brightness(.75); }
.photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity .3s;
}
.photo-item:hover .photo-overlay { opacity: 1; }

/* Lightbox */
.lightbox-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.lightbox-backdrop.open { opacity: 1; pointer-events: auto; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 4px; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
    position: fixed;
    background: rgba(0,0,0,.6);
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 9001;
}
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--red); }

/* =========================================================
   TOUR DATES
   ========================================================= */
.tour-block { margin-bottom: 4rem; }
.tour-block-past { opacity: 1; }

.no-shows {
    text-align: center;
    color: var(--text-dim);
    font-size: 1rem;
    padding: 2rem;
    border: 1px dashed var(--border);
    border-radius: 6px;
}

.tour-list { list-style: none; padding: 0; margin: 0; }
.gig {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 6px;
    margin-bottom: .75rem;
    transition: transform .25s var(--ease), background .25s, border-left-color .25s;
}
.gig:hover { transform: translateX(6px); background: var(--surface-2); }
.gig.past { border-left-color: var(--border); opacity: .68; }
.gig.past:hover { opacity: 1; border-left-color: var(--text-dim); }

.gig-date {
    flex: 0 0 68px;
    text-align: center;
    background: var(--red);
    color: #fff;
    border-radius: 5px;
    padding: .6rem .5rem;
    line-height: 1.2;
}
.gig.past .gig-date { background: var(--surface-2); border: 1px solid var(--border); }
.gig-day { display: block; font-family: 'Oswald', sans-serif; font-size: 1.65rem; font-weight: 700; }
.gig-mon { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

.gig-info { flex: 1; display: flex; flex-direction: column; gap: .2rem; }
.gig-venue { color: var(--white); font-size: 1rem; }
.gig-place { color: var(--text-dim); font-size: .88rem; }
.gig-notes { color: var(--red); font-size: .82rem; }
.gig.past .gig-notes { color: var(--text-dim); }

.gig-cta { flex: 0 0 auto; }
.ticket-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .5rem 1rem; background: var(--red); color: #fff;
    border-radius: 4px; font-size: .8rem; font-family: 'Oswald', sans-serif;
    letter-spacing: .1em; text-transform: uppercase;
    transition: background .2s;
}
.ticket-btn:hover { background: var(--red-deep); color: #fff; }
.tag-soon {
    display: inline-block;
    padding: .35rem .85rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--text-dim);
    font-family: 'Special Elite', monospace;
}

.booking-cta {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}
.booking-cta p { font-family: 'Special Elite', monospace; font-size: 1.3rem; color: var(--text-dim); margin-bottom: 1.25rem; }

@media (max-width: 560px) {
    .gig { flex-wrap: wrap; gap: .75rem; }
    .gig-cta { width: 100%; }
}

/* =========================================================
   MUSIC
   ========================================================= */
.release-block {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 4rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
}
@media (max-width: 680px) {
    .release-block { grid-template-columns: 1fr; }
}
.release-cover img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,.6);
}
.release-title {
    font-size: 1.6rem;
    margin-bottom: .25rem;
    color: var(--white);
}
.release-year { color: var(--text-dim); font-size: 1rem; }
.release-type { color: var(--red); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
                font-family: 'Special Elite', monospace; margin-bottom: 1rem; }
.tracklist {
    list-style: decimal;
    padding-left: 1.4rem;
    margin: 0 0 1.5rem;
    color: var(--text);
    font-family: 'Special Elite', monospace;
    font-size: .95rem;
    line-height: 1.9;
}
.release-embed { margin-bottom: 1.25rem; }

.streaming-block { text-align: center; margin-bottom: 3rem; }
.streaming-links {
    display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.5rem;
}
.stream-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .7rem 1.4rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 30px;
    color: var(--text); font-size: .9rem;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.stream-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.stream-btn i { font-size: 1.1rem; }

/* =========================================================
   VIDEOS
   ========================================================= */
.video-grid-full {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-title {
    padding: .65rem 1rem;
    font-family: 'Special Elite', monospace;
    font-size: .88rem;
    color: var(--text-dim);
    background: var(--surface);
    margin: 0;
    border-top: 1px solid var(--border);
}
.yt-channel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 3rem;
}
.yt-icon { font-size: 3rem; color: #ff0000; flex: 0 0 auto; }
.yt-channel p { margin: 0 0 .75rem; font-family: 'Special Elite', monospace; font-size: 1rem; }
@media (max-width: 560px) {
    .yt-channel { flex-direction: column; text-align: center; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 780px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-info p { color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
.contact-item {
    display: flex; align-items: center; gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item i { color: var(--red); width: 1.3em; font-size: 1rem; flex: 0 0 auto; }
.contact-item a { color: var(--text); } .contact-item a:hover { color: var(--red); }
.contact-socials {
    display: flex; gap: .65rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.contact-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 50%;
    color: var(--text); font-size: 1.2rem;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.contact-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }
.form-group input, .form-group textarea {
    padding: .8rem 1rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 5px;
    color: var(--white); font-size: .95rem; outline: none;
    font-family: 'Inter', sans-serif;
    transition: border-color .25s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.req { color: var(--red); }
.form-success {
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(29,122,71,.1);
    border: 1px solid rgba(29,122,71,.4);
    border-radius: 8px;
}
.form-success i { font-size: 2.5rem; color: #4aca85; display: block; margin-bottom: 1rem; }
.form-success p { color: var(--text); margin: 0; font-family: 'Special Elite', monospace; font-size: 1rem; }
.form-error {
    padding: .75rem 1.1rem;
    background: rgba(178,39,23,.12);
    border: 1px solid var(--red);
    border-radius: 6px;
    color: #e44;
    font-size: .88rem;
    margin-bottom: 1rem;
    display: flex; gap: .5rem; align-items: center;
}

/* =========================================================
   JEU
   ========================================================= */
.game-intro {
    text-align: center;
    margin-bottom: 2rem;
}
.game-intro p {
    font-family: 'Special Elite', monospace;
    font-size: 1.15rem;
    color: var(--text-dim);
}
.game-widget {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.game-widget iframe { max-width: 100%; border-radius: 6px; }

.game-frame-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.game-frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1.1rem;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.game-fullscreen-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    padding: .3rem;
    transition: color .2s;
}
.game-fullscreen-btn:hover { color: var(--white); }
.game-frame-wrap { position: relative; }
.game-frame-wrap iframe { display: block; width: 100%; min-height: 560px; }
.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(8,8,10,.88);
    backdrop-filter: blur(4px);
}
.game-links { text-align: center; }

/* =========================================================
   HOME VIDEO SECTION background
   ========================================================= */
.home-video-section { background: var(--bg-soft); }

