/* ============================================
   CVZXEOV — Official Website (Monochrome Minimalist 2026)
   Strict Palette: Black, White, Gray (#000000, #FFFFFF, #888888, #181818)
   Typography: Unbounded + Inter + JetBrains Mono
   ============================================ */

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

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1e1e1e;
    --bg-glass: rgba(255, 255, 255, 0.04);

    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glass-hover: rgba(255, 255, 255, 0.3);

    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-tertiary: #666666;

    --accent: #ffffff;
    --accent-dark: #000000;
    --accent-glow: rgba(255, 255, 255, 0.15);

    --font-display: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-max: 1240px;
    --container-padding: clamp(16px, 4vw, 40px);
    --section-padding: clamp(80px, 10vw, 140px);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   PRELOADER CURTAIN (CINEMATIC SLOW AUTO-LIFT)
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000000;
    overflow: hidden;
    pointer-events: none;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1),
        filter 1.5s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 1.75s ease;
    will-change: transform, filter, opacity;
}

.preloader__backdrop {
    position: absolute;
    inset: 0;
    background: #000000;
}

/* Motion Blur Curtain Rise */
.preloader.opening {
    transform: translateY(-100%) translateZ(0);
    filter: blur(20px) brightness(1.25);
    opacity: 0.98;
}

.preloader.hidden {
    display: none !important;
}

/* Off-White Designer Light Theme */
[data-theme="light"] {
    --bg-primary: #f4f4f6;
    --bg-secondary: #eaeaea;
    --bg-card: #ffffff;
    --bg-card-hover: #f9f9fb;
    --bg-glass: rgba(0, 0, 0, 0.04);

    --border-glass: rgba(0, 0, 0, 0.1);
    --border-glass-hover: rgba(0, 0, 0, 0.25);

    --text-primary: #111111;
    --text-secondary: #555555;
    --text-tertiary: #888888;

    --accent: #111111;
    --accent-dark: #ffffff;
    --accent-glow: rgba(0, 0, 0, 0.1);
}

/* Theme Toggle Button */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.theme-toggle:hover {
    border-color: var(--text-primary);
    transform: scale(1.06);
}

.theme-icon {
    width: 18px;
    height: 18px;
}

[data-theme="light"] .theme-icon--sun {
    display: none !important;
}

[data-theme="light"] .theme-icon--moon {
    display: block !important;
}

/* Carousel Header Row & Arrows */
.releases-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.releases-arrows {
    display: flex;
    gap: 8px;
}

.release-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
}

.release-arrow-btn:hover {
    border-color: var(--text-primary);
    background: var(--bg-card-hover);
    transform: scale(1.05);
}

.release-arrow-btn svg {
    width: 22px;
    height: 22px;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #ffffff;
    color: #000000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
    text-align: inherit;
    padding: 0;
}

[data-href] {
    cursor: pointer;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-white {
    color: #ffffff !important;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--container-padding);
    transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    padding: 16px var(--container-padding);
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.03em;
    z-index: 1001;
}

.nav__logo-text {
    color: #ffffff;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }

    50% {
        opacity: 0.2;
        transform: scale(0.75);
        box-shadow: 0 0 0 transparent;
    }
}

.nav__logo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    margin-top: 2px;
    animation: dotBlink 1.8s ease-in-out infinite;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

.nav__link:hover,
.nav__link.active {
    color: #ffffff;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Language Pill Switcher */
.lang-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.lang-pill:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-pill__bg {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: #ffffff;
    border-radius: 100px;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 0;
}

.lang-pill[data-active="en"] .lang-pill__bg {
    transform: translateX(100%);
}

.lang-pill__item {
    position: relative;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.lang-pill__item.active {
    color: #000000;
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav__burger.active span:nth-child(2) {
    opacity: 0;
}

.nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: #ffffff;
}

.mobile-menu__lang {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.lang-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    cursor: pointer;
}

.lang-btn.active {
    border-color: #ffffff;
    color: #ffffff;
    font-weight: 700;
}

/* === SECTION LABELS === */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
}

.section-label__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.section-label__text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    border: none;
}

.btn--primary {
    background: #ffffff;
    color: #000000;
}

.btn--primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn--glass {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: #ffffff;
}

.btn--glass:hover {
    border-color: var(--border-glass-hover);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn__icon svg {
    width: 20px;
    height: 20px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000000;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s var(--ease-out-expo);
    filter: contrast(1.1) brightness(1.25) saturate(1.15);
    pointer-events: none;
    will-change: opacity;
}

.hero__video.hero__video--active {
    opacity: 0.7;
    z-index: 1;
}

.hero__video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.7) 90%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 60%, #000000 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: 950px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    margin-bottom: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    animation: dotBlink 1.8s ease-in-out infinite;
}

.hero__badge-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== MINIMALIST HIGH-FASHION MONOCHROME HERO TITLE "CVZXEOV" ===== */
.hero__title-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
    user-select: none;
}

.hero__title-inner {
    display: inline-block;
    color: #ffffff;
    transition: opacity 0.3s;
}

.hero__title-wrap:hover .hero__title-inner {
    opacity: 0.85;
}

/* Subtitle & Stats */
.hero__subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero__stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glass);
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero__scroll-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, #ffffff, transparent);
}

.hero__scroll-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* === ABOUT SECTION === */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

/* Profile Header: 2660x1440 Banner Aspect Ratio & Overlapping Avatar */
.artist-profile-header {
    position: relative;
    width: 100%;
    margin-bottom: 48px;
}

.artist-banner-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2660 / 1440;
    max-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: var(--bg-secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.artist-banner-container:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.artist-banner-img {
    width: 100%;
    object-fit: cover;
    object-position: center 90%;
    transform: translateY(-19%);
}

.artist-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.95) 100%);
}

.artist-profile-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 clamp(16px, 4vw, 36px);
    margin-top: clamp(-100px, -10vw, -60px);
    position: relative;
    z-index: 5;
}

.artist-avatar-wrap {
    width: clamp(140px, 18vw, 250px);
    height: clamp(140px, 18vw, 250px);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    flex-shrink: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transform: scale(1.4);
}

.artist-title-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 0;
    width: 100%;
}

.artist-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    transform: none;
}

.artist-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* Verified Artist Music Note Badge */
.verified-music-badge {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s var(--ease-out-expo);
}

.verified-music-badge:hover {
    transform: scale(1.15) rotate(5deg);
}

.badge-svg {
    width: 100%;
    height: 100%;
}

.artist-sub-badge {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.about__age {
    font-weight: 800;
    color: var(--text-primary);
}

/* About main text block — Hyper-Refined New Gen Glass Card */
.about__main-block {
    max-width: 880px;
    margin-top: 48px;
    padding: 0;
}

.about__role-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

/* removed hover effect since background is gone */

.about__bio {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about__bio:last-of-type {
    margin-bottom: 36px;
}

.about__bio strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Social pill buttons — New Gen Pill Grid */
.socials-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.35s var(--ease-out-expo);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.social-icon-btn:hover {
    border-color: var(--text-primary);
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px var(--accent-glow);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out-expo);
}

.social-icon-btn:hover svg {
    transform: scale(1.15);
}

.social-icon-btn__label {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.about__details {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.about__detail {
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}

.about__detail-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.about__detail-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
}

/* Catalog Icon Buttons Bar for Platforms & Socials */
.about__socials-catalog {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
}

.socials-catalog__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.socials-icon-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    color: #ffffff;
    transition: all 0.25s var(--ease-out-expo);
}

.social-icon-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.social-icon-btn__label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}


/* === MUSIC SECTION === */
.music {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
}

.music__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

/* Custom Interactive Audio Player */
.custom-player {
    margin-bottom: 48px;
}

.player-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    gap: 32px;
    flex-wrap: wrap;
}

.player-card__left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 260px;
}

.player-card__cover-wrap {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-glass);
}

.player-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-card__tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}

.player-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.player-card__artist {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.player-card__controls {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 480px;
}

.player-card__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.player-btn svg {
    width: 22px;
    height: 22px;
}

.player-btn:hover {
    color: #ffffff;
}

.player-btn--main {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
}

.player-btn--main:hover {
    background: #e5e5e5;
    color: #000000;
    transform: scale(1.05);
}

.player-btn--main svg {
    width: 24px;
    height: 24px;
}

.player-card__progress-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    min-width: 32px;
}

.player-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.player-progress-fill {
    width: 0%;
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.player-card__spotify-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
}

.player-card__spotify-link:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.player-card__spotify-link svg {
    width: 20px;
    height: 20px;
}

/* Track List */
.music__tracks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
}

.track-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}

.track-card:hover,
.track-card.active {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.track-card__number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-tertiary);
    min-width: 24px;
}

.track-card.active .track-card__number {
    color: #ffffff;
}

.track-card__cover-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-card__info {
    flex: 1;
    min-width: 0;
}

.track-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-card__streams {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.track-card__play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.track-card__play svg {
    width: 16px;
    height: 16px;
}

.track-card:hover .track-card__play,
.track-card.active .track-card__play {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

/* Releases */
.music__releases-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0;
}

.releases-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--container-padding));
    padding: 0 var(--container-padding) 20px;
}

.releases-scroll::-webkit-scrollbar {
    display: none;
}

.releases-scroll__track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.release-card {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.release-card__cover-wrap {
    width: 200px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.release-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.release-card:hover .release-card__cover {
    transform: scale(1.06);
}

.release-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.release-card:hover .release-card__overlay {
    opacity: 1;
}

.release-card__play-icon {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.release-card__title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-card__type {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-tertiary);
}

.release-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: #ffffff;
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 800;
    color: #000000;
}

/* ============================================
   GALLERY SECTION (VISUAL ARCHIVE - MASONRY)
   ============================================ */
.gallery {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
}

.gallery__header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.gallery__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.gallery__subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 520px;
}

.gallery__counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
}

.gallery__counter-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: dotBlink 2.5s infinite;
}

.gallery__masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: stretch;
}

.gallery__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #080808;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

/* Row 1: 3 Flagship Priority Photos (each spans 4 of 12 cols = 1/3 width) */
.gallery__card--top {
    grid-column: span 4;
    height: 460px;
}

/* Row 2: 4 Lifestyle Archive Photos (each spans 3 of 12 cols = 1/4 width) */
.gallery__card--bottom {
    grid-column: span 3;
    height: 390px;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
    filter: brightness(0.92) contrast(1.05);
}

.gallery__click-shield {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
    background: transparent;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery__card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(255, 255, 255, 0.08);
}

.gallery__card:hover .gallery__img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.08);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 45%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery__card:hover .gallery__overlay {
    opacity: 1;
}

.gallery__tag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.gallery__tag {
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #ffffff;
}

.gallery__pill-index {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.gallery__zoom-btn {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(12px) scale(0.9);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.gallery__zoom-btn svg {
    width: 20px;
    height: 20px;
}

.gallery__card:hover .gallery__zoom-btn {
    transform: translateY(0) scale(1);
}

@media (max-width: 1024px) {
    .gallery__masonry {
        gap: 16px;
    }
    .gallery__card--top {
        height: 390px;
    }
    .gallery__card--bottom {
        height: 330px;
    }
}

@media (max-width: 860px) {
    .gallery__masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery__card--top,
    .gallery__card--bottom {
        grid-column: span 1;
        height: 350px;
    }
    .gallery__card:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .gallery__masonry {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gallery__card--top,
    .gallery__card--bottom,
    .gallery__card:last-child {
        grid-column: span 1;
        height: 390px;
        max-width: 100%;
    }
}

/* ============================================
   FULLSCREEN LIGHTBOX MODAL (PROTECTED)
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s ease;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    cursor: zoom-out;
}

.lightbox__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    pointer-events: none;
}

.lightbox__close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.25s ease;
}

.lightbox__close-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.08);
}

.lightbox__close-btn svg {
    width: 22px;
    height: 22px;
}

.lightbox__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.lightbox__nav-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-50%) scale(1.1);
}

.lightbox__nav-btn svg {
    width: 26px;
    height: 26px;
}

.lightbox__nav-btn--prev {
    left: 30px;
}

.lightbox__nav-btn--next {
    right: 30px;
}

.lightbox__content {
    position: relative;
    max-width: 88vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

.lightbox__img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 76vh;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98), 0 0 40px rgba(255, 255, 255, 0.05);
}

.lightbox__img {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    display: block;
    -webkit-user-drag: none;
    pointer-events: none;
    user-select: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    will-change: transform, opacity;
}

.lightbox__shield {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
    cursor: default;
    user-select: none;
    -webkit-user-drag: none;
}

/* Desktop: Clean Minimal Meta Row (No dock pill on PC) */
.lightbox__bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
    padding: 0 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.lightbox__dock-btn {
    display: none !important;
}

.lightbox__dock-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}

.lightbox__title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

.lightbox__counter {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
}

/* Mobile: Beautiful Glass Dock with Prev/Next buttons */
@media (max-width: 768px) {
    .lightbox__container {
        padding: max(16px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
    }
    .lightbox__nav-btn {
        display: none !important;
    }
    .lightbox__close-btn {
        top: max(16px, env(safe-area-inset-top));
        right: 16px;
        width: 42px;
        height: 42px;
    }
    .lightbox__img-wrapper {
        max-height: 72vh;
        max-width: 95vw;
    }
    .lightbox__img {
        max-height: 72vh;
        max-width: 95vw;
    }
    .lightbox__bottom-bar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 10px;
        padding: 6px 14px;
        border-radius: 100px;
        background: rgba(22, 22, 22, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
        width: auto;
        max-width: 90vw;
    }
    .lightbox__dock-btn {
        display: flex !important;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }
    .lightbox__dock-btn:active {
        transform: scale(0.92);
    }
    .lightbox__dock-btn svg {
        width: 18px;
        height: 18px;
    }
    .lightbox__dock-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        min-width: 110px;
        width: auto;
    }
    .lightbox__title {
        font-size: 0.68rem;
    }
    .lightbox__counter {
        font-size: 0.72rem;
    }
}

/* === DESIRE SECTION === */
.desire {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
}

.desire__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.desire__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: contrast(1.1) brightness(0.85);
    z-index: 0;
    pointer-events: none;
}

.desire__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    mix-blend-mode: overlay;
    z-index: 1;
}

.desire__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
    z-index: 2;
}

.desire__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.desire__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.desire__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.desire__card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
}

.desire__card-inner {
    padding: 24px;
}

.desire__card-avatar-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-glass);
}

.desire__card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.desire__card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.desire__card-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.desire__card-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff66;
}

.desire__card-banner {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.desire__card-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === FOOTER === */
.footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a,
.footer__links button {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer__links a:hover,
.footer__links button:hover {
    color: #ffffff;
}

/* === REVEAL ANIMATION === */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE BREAKPOINTS === */

@media (max-width: 992px) {
    .artist-profile-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about__content-grid {
        grid-template-columns: 1fr;
    }

    .desire__content {
        grid-template-columns: 1fr;
    }

    .player-card {
        flex-direction: column;
        align-items: stretch;
    }

    .player-card__controls {
        max-width: 100%;
    }

    .artist-profile-meta {
        gap: 16px;
        margin-top: -70px;
    }

    .artist-name-row {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat-divider {
        display: none;
    }

    .artist-profile-meta {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: -45px;
    }

    .artist-avatar-wrap {
        width: 110px;
        height: 110px;
        border-width: 4px;
        transform: translateY(0);
    }

    .artist-title-block {
        padding-bottom: 0;
        width: 100%;
    }

    .artist-name-row {
        transform: translateY(0);
        gap: 8px;
        flex-wrap: wrap;
    }

    .artist-name {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .socials-icon-bar {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero__cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .release-card {
        width: 150px;
    }

    .release-card__cover-wrap {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   FLOATING BOTTOM-LEFT SOUND CONTROLLER
   ============================================ */
.sound-pill {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 998;
    background: rgba(12, 12, 12, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 6px 8px 6px 16px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
    cursor: pointer;
    user-select: none;
}

.sound-pill:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8), 0 0 24px rgba(255, 255, 255, 0.12);
}

.sound-pill__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
}

/* Equalizer Bars */
.sound-pill__eq {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 18px;
    width: 18px;
}

.eq-bar {
    width: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    height: 4px;
    transition: height 0.2s ease, opacity 0.2s ease;
}

.sound-pill:not(.muted) .eq-bar--1 {
    animation: eqBounce1 0.85s ease-in-out infinite alternate;
}

.sound-pill:not(.muted) .eq-bar--2 {
    animation: eqBounce2 0.7s ease-in-out infinite alternate 0.15s;
}

.sound-pill:not(.muted) .eq-bar--3 {
    animation: eqBounce3 0.95s ease-in-out infinite alternate 0.3s;
}

.sound-pill:not(.muted) .eq-bar--4 {
    animation: eqBounce4 0.8s ease-in-out infinite alternate 0.45s;
}

@keyframes eqBounce1 {
    0% {
        height: 4px;
    }

    100% {
        height: 16px;
    }
}

@keyframes eqBounce2 {
    0% {
        height: 15px;
    }

    100% {
        height: 5px;
    }
}

@keyframes eqBounce3 {
    0% {
        height: 7px;
    }

    100% {
        height: 18px;
    }
}

@keyframes eqBounce4 {
    0% {
        height: 16px;
    }

    100% {
        height: 6px;
    }
}

.sound-pill.muted .eq-bar {
    height: 2px !important;
    opacity: 0.35;
}

.sound-pill__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.sound-pill__label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.1;
}

.sound-pill__vol {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-tertiary);
    line-height: 1.1;
}

.sound-pill.muted .sound-pill__label {
    color: var(--text-secondary);
}

.sound-pill__icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s, transform 0.3s;
}

.sound-pill:hover .sound-pill__icon-wrap {
    background: #ffffff;
    color: #000000;
}

.sound-svg {
    width: 16px;
    height: 16px;
}

.sound-svg--off {
    display: none;
}

.sound-pill.muted .sound-svg--on {
    display: none;
}

.sound-pill.muted .sound-svg--off {
    display: block;
}

@media (max-width: 768px) {
    .sound-pill {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        left: 16px;
        padding: 4px 6px 4px 12px;
    }

    .sound-pill__label {
        font-size: 0.68rem;
    }

    .sound-pill__icon-wrap {
        width: 28px;
        height: 28px;
    }

    .sound-svg {
        width: 14px;
        height: 14px;
    }
}