/* ═══════════════════════════════════════════════════════════════════
   INDEX.CSS – Styles specific to index pages (hero, albums, social)
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   NAV – Always visible, transitions on scroll
   ───────────────────────────────────────────── */
nav {
    /* override base.css for index pages */
    /* Initial state: transparent over hero */
    background: rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(135, 212, 224, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    transition: background 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease;
}

/* State when scrolled past hero: white opaque background */
nav.nav--scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(135, 212, 224, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* SMS logo flies from hero-center into the corner on page load */
.nav-logo {
    animation: logo-fly-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* nav links stagger in after logo */
.nav-links {
    animation: links-fade-in 0.45s ease 0.4s both;
}

@keyframes logo-fly-in {
    0% {
        opacity: 0;
        transform: translateX(42vw) scale(4);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes links-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-light);
}

#main-content {
    position: relative;
    z-index: 10;
    background: var(--bg-light);
}

/* fullscreen background video */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform;
}

/* light overlay for beach theme - minimal clean version */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* content sits above video + overlay */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 2rem;
    height: 100vh;
    will-change: opacity, transform;
}

.hero-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-band-name {
    display: none;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(3rem, 12vw, 8rem);
    letter-spacing: 12px;
    line-height: 1;
    /* Face avant : or vif (comme Nabla) */
    color: #ffe040;
    text-shadow:
        /* Zone 1 — face latérale gauche : orange plat (comme Nabla) */
        -1px  1px 0 #ffa200,
        -2px  2px 0 #ffa200,
        -3px  3px 0 #ffa200,
        -4px  4px 0 #ffa200,
        -5px  5px 0 #ffa200,
        -6px  5px 0 #f09000,
        -7px  6px 0 #f09000,
        -8px  6px 0 #f09000,
        -9px  7px 0 #e07e00,
        -10px 7px 0 #e07e00,
        /* Zone 2 — bord inférieur profond : rouge sombre (comme Nabla) */
        -11px 8px 0 #c82400,
        -12px 8px 0 #b81600,
        -13px 9px 0 #a80a00,
        -14px 9px 0 #880000,
        /* ombre portée ambiante */
        0 0 40px rgba(0, 0, 0, 0.85),
        -16px 12px 28px rgba(0, 0, 0, 0.5);
    cursor: default;
    position: relative;
}

/* Raccourci partagé pour les couches 3D (évite la répétition dans glitch-text) */
:root {
    --sms-3d-base:
        -1px  1px 0 #ffa200,  -2px  2px 0 #ffa200,
        -3px  3px 0 #ffa200,  -4px  4px 0 #ffa200,
        -5px  5px 0 #ffa200,  -6px  5px 0 #f09000,
        -7px  6px 0 #f09000,  -8px  6px 0 #f09000,
        -9px  7px 0 #e07e00, -10px  7px 0 #e07e00,
        -11px 8px 0 #c82400, -12px  8px 0 #b81600,
        -13px 9px 0 #a80a00, -14px  9px 0 #880000,
        0 0 40px rgba(0,0,0,0.85), -16px 12px 28px rgba(0,0,0,0.5);
}

@keyframes glitch-text {
    0%, 40%, 100% {
        text-shadow:
            -1px  1px 0 #ffa200,  -2px  2px 0 #ffa200,
            -3px  3px 0 #ffa200,  -4px  4px 0 #ffa200,
            -5px  5px 0 #ffa200,  -6px  5px 0 #f09000,
            -7px  6px 0 #f09000,  -8px  6px 0 #f09000,
            -9px  7px 0 #e07e00, -10px  7px 0 #e07e00,
            -11px 8px 0 #c82400, -12px  8px 0 #b81600,
            -13px 9px 0 #a80a00, -14px  9px 0 #880000,
            0 0 40px rgba(0,0,0,0.85), -16px 12px 28px rgba(0,0,0,0.5);
    }

    10% {
        text-shadow:
            -1px  1px 0 rgba(255, 0, 110, 1),
            -4px  4px 0 rgba(220, 0,  80, 0.9),
            -8px  6px 0 rgba(160, 0,  50, 0.8),
            -14px 9px 0 #880000,
            3px 0 rgba(0, 245, 255, 0.7),
            0 0 40px rgba(0,0,0,0.85), -16px 12px 28px rgba(0,0,0,0.5);
    }

    20% {
        text-shadow:
            -1px  1px 0 rgba(0, 245, 255, 1),
            -4px  4px 0 rgba(0, 200, 230, 0.9),
            -8px  6px 0 rgba(0, 140, 180, 0.8),
            -14px 9px 0 #880000,
            -3px 0 rgba(255, 0, 110, 0.7),
            0 0 40px rgba(0,0,0,0.85), -16px 12px 28px rgba(0,0,0,0.5);
    }

    30% {
        text-shadow:
            -1px  1px 0 rgba(57, 255, 20, 1),
            -4px  4px 0 rgba(30, 200, 10, 0.9),
            -8px  6px 0 rgba(10, 140,  5, 0.8),
            -14px 9px 0 #880000,
            3px 0 rgba(255, 221, 0, 0.7),
            0 0 40px rgba(0,0,0,0.85), -16px 12px 28px rgba(0,0,0,0.5);
    }
}

@keyframes gentle-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: none;
}

.hero-origin {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue-deep);
}

/* scroll cue */
.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 20rem;
}

.scroll-cue span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--nav-text-light);
}

.scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--nav-text-light);
    border-bottom: 2px solid var(--nav-text-light);
    transform: rotate(45deg);
    animation: bounce-down 1.6s ease-in-out infinite;
    box-shadow: none;
}

@keyframes bounce-down {

    0%,
    100% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: rotate(45deg) translate(5px, 5px);
        opacity: 0.6;
    }
}

/* ─────────────────────────────────────────────
   SECTION SHARED
   ───────────────────────────────────────────── */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ─────────────────────────────────────────────
   ARTIST INTRO (SEO-focused section)
   ───────────────────────────────────────────── */
.artist-intro-section {
    background: var(--bg-section);
    padding: 3rem 2rem;
    text-align: center;
}

.artist-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.artist-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.artist-intro strong {
    color: var(--blue-deep);
    font-weight: 600;
    text-shadow: none;
}

/* ─────────────────────────────────────────────
   SECTION HEADERS & LABELS
   ───────────────────────────────────────────── */
.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--blue-ocean);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-ocean), var(--blue-pastel));
    box-shadow: 0 2px 8px rgba(79, 168, 186, 0.4);
    border-radius: 2px;
}

/* ─────────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────────── */
#about {
    background: radial-gradient(ellipse at 80% 50%,
            rgba(179, 235, 242, 0.15) 0%,
            transparent 60%),
        var(--bg-section);
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 320px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-text p strong {
    color: var(--text-dark);
    font-weight: 400;
}

.about-stats {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border: 2px solid var(--blue-pastel);
    border-left: 4px solid var(--blue-ocean);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
    box-shadow: 0 8px 24px rgba(79, 168, 186, 0.3);
    border-left-color: var(--blue-deep);
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--blue-ocean);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ─────────────────────────────────────────────
   ALBUMS
   ───────────────────────────────────────────── */
#albums {
    background: var(--bg-light);
}

.album-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
}

.album-card {
    flex: 1 1 calc(50% - 0.9rem);
    max-width: calc(50% - 0.9rem);
    min-width: 260px;
    background: white;
    border: 2px solid var(--blue-pastel);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Animated gradient border on hover */
.album-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg,
            var(--accent-cyber),
            var(--accent-hot),
            var(--accent-neon),
            var(--accent-electric),
            var(--accent-cyber));
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.album-card:hover::before {
    opacity: 1;
    animation: gradient-border-rotate 3s linear infinite;
}

@keyframes gradient-border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.album-card:hover {
    transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
    box-shadow:
        0 16px 48px rgba(79, 168, 186, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 0 0 1px var(--blue-ocean);
    border-color: var(--blue-ocean);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}

/* Each album has a unique gradient cover - beach theme */
.album-card:nth-child(1) .album-cover {
    background: linear-gradient(135deg,
            #b3ebf2 0%,
            #5eb8c5 25%,
            #2c7a8a 50%,
            #5eb8c5 75%,
            #b3ebf2 100%);
}

.album-card:nth-child(2) .album-cover {
    background: linear-gradient(135deg,
            #e3dacc 0%,
            #d4c9b3 30%,
            #b3ebf2 50%,
            #d4c9b3 70%,
            #e3dacc 100%);
}

.album-card:nth-child(3) .album-cover {
    background: linear-gradient(160deg, #f5ede4 0%, #e3dacc 40%, #5eb8c5 70%, #b3ebf2 100%);
}

.album-card:nth-child(4) .album-cover {
    background: linear-gradient(120deg,
            #fafaf8 0%,
            #e3dacc 35%,
            #b3ebf2 60%,
            #d4c9b3 90%,
            #f5ede4 100%);
}

.album-card:nth-child(5) .album-cover {
    background: linear-gradient(150deg,
            #f5ede4 0%,
            #e3dacc 30%,
            #5eb8c5 55%,
            #b3ebf2 80%,
            #fafaf8 100%);
}

.album-card:nth-child(6) .album-cover {
    background: linear-gradient(135deg, #e3dacc 0%, #b3ebf2 40%, #5eb8c5 65%, #e3dacc 100%);
}

.album-card:nth-child(7) .album-cover {
    background: linear-gradient(165deg,
            #f5ede4 0%,
            #d4c9b3 35%,
            #b3ebf2 60%,
            #e3dacc 90%,
            #fafaf8 100%);
}

/* abstract art lines on covers */
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

/* Ben 10 Omnitrix special hover animation - adapted to beach theme */
.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"]:hover {
    transform: translateY(-6px);
    animation: ben10-omnitrix-flash 0.8s ease-out both;
    box-shadow: 0 10px 32px rgba(94, 184, 197, 0.4),
        0 0 40px rgba(179, 235, 242, 0.3),
        0 0 0 1px rgba(94, 184, 197, 0.5);
    border-color: var(--blue-ocean);
}

.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"]:hover .album-cover img {
    transform: scale(1.08);
}

/* Ben 10 ripple/shockwave effects - beach theme */
.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"] .album-cover::before,
.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"] .album-cover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 2px solid rgba(94, 184, 197, 0);
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: block !important;
}

.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"]:hover .album-cover::before {
    animation: omnitrix-ripple 0.8s ease-out;
}

.album-card[href*="57ug8uW3nsqvYpdws0I1Xp"]:hover .album-cover::after {
    animation: omnitrix-ripple 0.8s ease-out 0.15s;
}

.album-cover::before,
.album-cover::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(179, 235, 242, 0.3);
}

.album-cover::before {
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.album-cover::after {
    width: 40%;
    height: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(179, 235, 242, 0.4);
}

/* Hide pseudo-elements when a real cover image is present */
.album-cover:has(img)::before,
.album-cover:has(img)::after {
    display: none;
}

.album-cover-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Metal Mania', cursive;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: rgba(94, 184, 197, 0.6);
    text-shadow: 0 2px 8px rgba(94, 184, 197, 0.3);
    letter-spacing: 6px;
    user-select: none;
}

.album-info {
    padding: 1.2rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.album-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.album-meta {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.new-badge {
    position: absolute;
    top: -12px;
    right: 1.4rem;
    background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent-electric) 100%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 0.35rem 0.8rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 0, 110, 0.5), 0 0 12px rgba(255, 0, 110, 0.3);
    animation: badge-pulse-intense 2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes badge-pulse-intense {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(255, 0, 110, 0.5), 0 0 12px rgba(255, 0, 110, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 0, 110, 0.7), 0 0 24px rgba(255, 0, 110, 0.5);
        transform: scale(1.05);
    }
}

/* Ben 10 Omnitrix transformation flash animation - beach theme */
@keyframes ben10-omnitrix-flash {
    0% {
        transform: translateY(-6px) scale(1);
        box-shadow: 0 8px 24px rgba(94, 184, 197, 0.25), 0 0 0 1px rgba(179, 235, 242, 0.4);
    }

    15% {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 12px 40px rgba(94, 184, 197, 0.5),
            0 0 60px rgba(179, 235, 242, 0.4),
            0 0 0 2px rgba(94, 184, 197, 0.7);
    }

    30% {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 10px 32px rgba(94, 184, 197, 0.35),
            0 0 48px rgba(179, 235, 242, 0.3),
            0 0 0 1px rgba(94, 184, 197, 0.6);
    }

    50% {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 36px rgba(94, 184, 197, 0.45),
            0 0 54px rgba(179, 235, 242, 0.35),
            0 0 0 2px rgba(94, 184, 197, 0.65);
    }

    100% {
        transform: translateY(-6px) scale(1);
        box-shadow: 0 10px 32px rgba(94, 184, 197, 0.4),
            0 0 40px rgba(179, 235, 242, 0.3),
            0 0 0 1px rgba(94, 184, 197, 0.5);
    }
}

/* Omnitrix shockwave ripple animation - beach theme */
@keyframes omnitrix-ripple {
    0% {
        width: 0;
        height: 0;
        border-color: rgba(94, 184, 197, 0.8);
        border-width: 3px;
    }

    50% {
        border-color: rgba(94, 184, 197, 0.5);
        border-width: 2px;
    }

    100% {
        width: 150%;
        height: 150%;
        border-color: rgba(94, 184, 197, 0);
        border-width: 1px;
    }
}

.album-tracks {
    margin-top: auto;
    padding-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--blue-deep);
    letter-spacing: 1px;
}

/* ─────────────────────────────────────────────
   SOCIAL / FOOTER
   ───────────────────────────────────────────── */
#social {
    background: var(--bg-section);
    text-align: center;
    padding: 5rem 2rem;
    border-top: 1px solid rgba(135, 212, 224, 0.4);
    border-bottom: 1px solid rgba(135, 212, 224, 0.4);
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL - Enhanced with section-specific animations
   ───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section-specific reveal animations */
.reveal-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom-in {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(10px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.reveal-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.reveal-cascade {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-cascade.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.album-card.reveal:nth-child(1) {
    transition-delay: 0ms;
}

.album-card.reveal:nth-child(2) {
    transition-delay: 70ms;
}

.album-card.reveal:nth-child(3) {
    transition-delay: 140ms;
}

.album-card.reveal:nth-child(4) {
    transition-delay: 210ms;
}

.album-card.reveal:nth-child(5) {
    transition-delay: 280ms;
}

.album-card.reveal:nth-child(6) {
    transition-delay: 350ms;
}

.album-card.reveal:nth-child(7) {
    transition-delay: 420ms;
}

/* ─────────────────────────────────────────────
   SOCIAL DOCK – fixed right-side icons
   ───────────────────────────────────────────── */
.social-dock {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.social-dock--visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.dock-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    height: 50px;
    width: 50px;
    background: white;
    border: 1px solid var(--blue-pastel);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: var(--text-muted);
    text-decoration: none;
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s, border-color 0.25s,
        box-shadow 0.25s;
}

.dock-link:hover,
.dock-link:focus-visible {
    width: 152px;
    color: var(--accent-cyber);
    border-color: var(--accent-cyber);
    box-shadow: -4px 0 16px rgba(0, 245, 255, 0.3);
    outline: none;
}

.dock-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 0 0 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.2s ease 0.08s, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
    pointer-events: none;
}

.dock-link:hover .dock-label,
.dock-link:focus-visible .dock-label {
    opacity: 1;
    transform: translateX(0);
}

.dock-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dock-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */
.cta-section {
    background: radial-gradient(ellipse at 50% 50%,
            rgba(179, 235, 242, 0.2) 0%,
            transparent 70%),
        var(--bg-section);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent-cyber) 100%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 0, 110, 0.6),
        0 0 30px rgba(0, 245, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(79, 168, 186, 0.5), inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────
   SOCIAL SECTION CARDS (2-up, fuller)
   ───────────────────────────────────────────── */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1.4rem 2.4rem;
    border: 2px solid var(--blue-pastel);
    border-radius: 10px;
    background: white;
    min-width: 220px;
    transition: color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s, background 0.25s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
    color: white;
    background: var(--blue-ocean);
    border-color: var(--blue-ocean);
    box-shadow: 0 6px 24px rgba(79, 168, 186, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 680px) {
    .album-grid {
        justify-content: center;
    }

    .album-card {
        flex: 1 1 100%;
        max-width: 400px;
    }

    .about-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* on mobile: row of floating circles at bottom-right */
    .social-dock {
        top: auto;
        transform: translateY(20px);
        bottom: 1.4rem;
        right: 1rem;
        flex-direction: row;
        gap: 10px;
    }

    .social-dock--visible {
        transform: translateY(0);
    }

    .dock-link {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid var(--blue-pastel);
        border-right: 1px solid var(--blue-pastel);
        justify-content: center;
    }

    .dock-link:hover,
    .dock-link:focus-visible {
        width: 46px;
        border-radius: 50%;
    }

    .dock-label {
        display: none;
    }
}

@media (max-width: 900px) and (min-width: 681px) {
    .album-card {
        flex: 1 1 calc(50% - 0.9rem);
    }
}

/* ─────────────────────────────────────────────
   ACCESSIBILITY - Reduced Motion
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

    /* Disable hero animations */
    .hero-band-name,
    .hero-band-name:hover {
        animation: none !important;
    }

    .hero-overlay::before,
    .hero-overlay::after {
        animation: none !important;
    }

    .hero-bg-video {
        transform: none !important;
    }

    /* Disable badge pulse */
    .new-badge {
        animation: none !important;
    }

    /* Disable album card gradient border animation */
    .album-card:hover::before {
        animation: none !important;
    }

    /* Disable divider animations */
    .divider-animated::before {
        animation: none !important;
    }

    /* Disable gradient shift */
    .bg-gradient-shift::before {
        animation: none !important;
    }

    /* Simplify reveal animations */
    .reveal,
    .reveal-slide-right,
    .reveal-zoom-in,
    .reveal-cascade {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}