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

:root {
    --bg: #0b0a0d;            /* Deep Obsidian Charcoal */
    --surface: rgba(20, 19, 24, 0.8);      /* Slate charcoal card */
    --surface-2: rgba(30, 28, 36, 0.9);    /* Highlight card surface */
    --text: #faf9fb;          /* Warm off-white */
    --muted: #938f9b;         /* Slate silver / muted text */
    --line: rgba(255, 255, 255, 0.08);     /* Thin modern grid border */
    --line-active: rgba(212, 175, 55, 0.35); /* Warm gold active borders */
    
    /* Alternative Hip-Hop / R&B Editorial Palette */
    --cyan: #d4af37;          /* Luxury Gold / Champagne Accent */
    --gold: #f3ebd4;          /* Warm Cream Highlight */
    --rose: #e63946;          /* Sleek Crimson Accent */
    --green: #2a9d8f;         /* Muted Emerald Accent */
    
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    --shadow-light: 0 8px 25px rgba(0, 0, 0, 0.3);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background-color: var(--bg);
    font-family: 'Outfit', 'Inter', sans-serif, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50vw),
        radial-gradient(circle at 15% 85%, rgba(230, 57, 70, 0.04) 0%, transparent 50vw),
        #0b0a0d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

a {
    color: inherit;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

code,
pre {
    color: var(--cyan);
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}

code {
    padding: 0.1rem 0.35rem;
}

pre {
    overflow-x: auto;
    padding: 1rem;
    position: relative;
    border-left: 3px solid var(--cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem clamp(1rem, 4vw, 3rem);
    background: rgba(11, 10, 13, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.brand {
    color: var(--cyan);
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.25s ease;
}

.brand:hover {
    opacity: 0.85;
}

/* Brand + Tip Jar group on the left side of the header */
.brand-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.tip-jar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #000;
    background: #ffd100;
    border-radius: 20px;
    border: none;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 2px 10px rgba(255, 209, 0, 0.25);
}

.tip-jar-btn:hover {
    background: #ffe040;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 209, 0, 0.4);
}

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

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
}

.site-nav a {
    min-height: 2.2rem;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
    border-bottom: 2px solid var(--cyan);
}

main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.5rem 0 5rem;
}

/* Alternative Hip-Hop Editorial Content Bands */
.section-band {
    margin: 3.5rem 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow);
    position: relative;
    transition: border-color 0.3s ease;
}

.hero {
    min-height: 65vh;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: 2.5rem;
}

.section-band.hero:not(.compact) {
    background: 
        linear-gradient(to bottom, rgba(11, 10, 13, 0.1) 0%, rgba(11, 10, 13, 0.5) 60%, rgba(11, 10, 13, 0.98) 100%),
        url('assets/homepage-profile.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.hero.compact {
    min-height: 30vh;
    align-items: center;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text) 50%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.hero.compact h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.lead {
    max-width: 64ch;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--rose);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: inline-block;
    border-bottom: 2px solid var(--rose);
    padding-bottom: 0.2rem;
}

.panel-label {
    margin: 0 0 0.65rem;
    color: var(--cyan);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-actions,
.tabs,
.list-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

/* Premium Minimalist Buttons */
.button,
button.button,
.link-tile,
.list-stack a {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.button:hover,
button.button:hover,
.link-tile:hover,
.list-stack a:hover {
    color: #0c0b0f;
    background: var(--text);
    border-color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.button.primary,
button.button.primary,
.tabs button.active {
    color: #0b0a0d;
    background: var(--cyan);
    border-color: var(--cyan);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.button.primary:hover,
button.button.primary:hover,
.tabs button.active:hover {
    background: var(--text);
    border-color: var(--text);
    color: #0b0a0d;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.hero-panel,
.player-dock,
.contact-card,
.qr-card,
.project-card,
.release-card,
.stat-grid div {
    background: rgba(20, 19, 24, 0.65);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

/* Hover effects */
.release-card:hover,
.project-card:hover,
.qr-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
}

.hero-panel {
    padding: 1.5rem;
    border-top: 3px solid var(--cyan);
}

.hero-panel audio,
.player-dock audio,
.release-card audio {
    width: 100%;
    margin-top: 0.5rem;
}

/* Styled native audio controls */
audio {
    filter: invert(0.9) hue-rotate(15deg) saturate(1.2);
    border-radius: 4px;
    height: 38px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.project-card h2,
.hero-panel h2 {
    margin: 0 0 0.5rem;
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.02em;
}

.section-heading p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--muted);
}

.music-layout {
    display: block;
}

.release-grid,
.portfolio-grid,
.media-grid,
.contact-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.project-card {
    overflow: hidden;
    max-width: 320px;
    width: 100%;
}

.release-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(20, 19, 24, 0.65);
    padding: 0.6rem;
    box-sizing: border-box;
    overflow: hidden;
}

.project-card img,
.media-grid img,
.qr-card img,
#player-art {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #0b0a0d;
    border-bottom: 1px solid var(--line);
    transition: transform 0.4s ease;
}

.release-card img {
    width: 100px;
    height: 100px;
    min-height: 100px;
    min-width: 100px;
    aspect-ratio: 1;
    object-fit: contain;
    background: #0b0a0d;
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 0.4rem;
}

.project-card:hover img {
    transform: scale(1.03);
}

.project-card {
    padding: 1.25rem;
}

.release-card .card-body {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.release-card .card-body h3 {
    order: 2;
    font-family: 'Chokokutai', cursive, sans-serif;
    color: var(--text);
    font-size: 0.9rem;
    margin: 0 0 0.1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-card .card-body .card-meta {
    order: 3;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-card .card-body .card-actions {
    order: 1;
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0.3rem;
}

.release-card .button {
    min-height: 2rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;

}

.project-card h2 {
    margin: 0 0 0.4rem;
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.02em;
}

.card-meta {
    margin: 0 0 1rem;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.player-dock {
    position: sticky;
    top: 5.5rem;
    padding: 0.8rem;
    border: 1px solid var(--cyan);
    background: rgba(18, 17, 22, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.player-track-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

#player-art {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-height: 80px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 0;
}

.player-text-details {
    min-width: 0;
    flex: 1;
}

.player-text-details .panel-label {
    margin: 0 0 0.15rem 0;
}

/* Player title — now a button styled as a link */
.player-title-btn,
#player-title {
    font-family: 'Chokokutai', cursive, sans-serif;
    color: var(--text);
    font-size: 1.1rem;
    margin: 0 0 0.15rem 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Reset button styles */
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: block;
    width: 100%;
    transition: color 0.2s ease;
}

.player-title-btn:hover,
#player-title:hover {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.5);
    text-underline-offset: 3px;
}

/* Flash highlight for a single track card when navigated to */
.release-card.track-highlight-flash {
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.35) !important;
    animation: card-flash 1.2s ease-out forwards;
}

@keyframes card-flash {
    0%   { background: rgba(212, 175, 55, 0.18); }
    100% { background: rgba(20, 19, 24, 0.65); }
}


#player-meta {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input,
select,
textarea {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    color: var(--text);
    background: rgba(12, 11, 15, 0.9);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.02);
}

textarea {
    resize: vertical;
}

.embed-shell {
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--muted);
    background: #0b0a0d;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.embed-shell.wide {
    min-height: 420px;
}

.embed-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.qr-card {
    margin: 0;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--line);
}

.qr-card img {
    border: 1px solid var(--line);
    border-radius: 4px;
}

.qr-card figcaption {
    margin-top: 0.75rem;
    color: var(--cyan);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

footer {
    padding: 4rem 1rem;
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    border-top: 1px solid var(--line);
    background: rgba(11, 10, 13, 0.98);
}

@media (max-width: 820px) {
    .site-header {
        align-items: center;
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.85rem clamp(0.75rem, 3vw, 2rem);
    }

    .brand-group {
        justify-content: center;
    }

    .site-nav {
        justify-content: center;
        width: 100%;
        gap: 0.2rem;
    }

    .hero,
    .music-layout {
        grid-template-columns: 1fr;
    }

    .player-dock {
        position: static;
        width: 100%;
    }
}

.links-page {
    width: min(760px, calc(100% - 2rem));
}

.all-links-hero {
    min-height: auto;
    text-align: center;
    border-top: 3px solid var(--cyan);
}

.all-links-hero h1 {
    margin: 0 0 0.5rem;
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: clamp(2.8rem, 10vw, 5rem);
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text) 30%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

.all-links-hero .lead {
    margin-left: auto;
    margin-right: auto;
}

.profile-avatar {
    width: min(160px, 42vw);
    aspect-ratio: 1;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--cyan);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.quick-socials,
.link-stack,
.social-grid {
    display: grid;
    gap: 0.75rem;
}

.quick-socials {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-top: 1.5rem;
}

.quick-socials a,
.social-grid a {
    padding: 0.85rem 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
    border-radius: 4px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-socials a:hover,
.social-grid a:hover {
    color: #0b0a0d;
    background: var(--text);
    border-color: var(--text);
    box-shadow: var(--shadow-light);
}

.mega-link {
    display: grid;
    gap: 0.15rem;
    padding: 1.25rem 1.75rem;
    color: var(--text);
    background: rgba(20, 19, 24, 0.85);
    border: 1px solid var(--line);
    border-left-width: 6px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mega-link span {
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mega-link small,
.social-grid span {
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.accent-cyan { border-left-color: var(--cyan); }
.accent-gold { border-left-color: var(--gold); }
.accent-rose { border-left-color: var(--rose); }
.accent-green { border-left-color: var(--green); }

.mega-link:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}

.accent-cyan:hover { border-left-color: var(--cyan); }
.accent-gold:hover { border-left-color: var(--gold); box-shadow: 0 4px 20px rgba(243, 235, 212, 0.08); }
.accent-rose:hover { border-left-color: var(--rose); box-shadow: 0 4px 20px rgba(230, 57, 70, 0.08); }
.accent-green:hover { border-left-color: var(--green); box-shadow: 0 4px 20px rgba(42, 157, 143, 0.08); }

.compact-links {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.link-tile {
    width: 100%;
}

.featured-link {
    border-color: var(--cyan);
    background: rgba(212, 175, 55, 0.04);
}

.social-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.social-grid strong,
.social-grid span {
    display: block;
}

.social-grid strong {
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
}

.contact-card {
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    font-family: 'Chokokutai', cursive, sans-serif;
    color: var(--cyan);
    font-size: 1.25rem;
    border: 1px solid var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--cyan);
    color: #0b0a0d;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

@media (max-width: 560px) {
    main,
    .links-page {
        width: min(100% - 0.75rem, 1180px);
        padding-top: 0.75rem;
        padding-bottom: 3rem;
    }

    .section-band {
        padding: 1.1rem;
        margin: 2rem 0;
        border-radius: 6px;
    }

    .site-header {
        padding: 0.65rem 0.75rem;
        gap: 0.4rem;
    }

    .brand {
        font-size: 1.5rem;
    }

    .tip-jar-btn {
        font-size: 0.68rem;
        padding: 0.28rem 0.6rem;
    }

    .site-nav {
        gap: 0.15rem;
    }

    .site-nav a {
        padding: 0.35rem 0.55rem;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        min-height: 1.9rem;
    }

    .link-grid,
    .compact-links,
    .quick-socials,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .all-links-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    /* Release cards: fill full width as a list on mobile */
    .release-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .release-card {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: unset;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0.75rem;
        gap: 0.75rem;
        border-radius: 6px;
    }

    .release-card img {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .release-card .card-body {
        align-items: flex-start;
        flex: 1;
        min-width: 0;
    }

    .release-card .card-body h3 {
        text-align: left;
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    .release-card .card-body .card-meta {
        text-align: left;
        font-size: 0.62rem;
    }

    .release-card .card-body .card-actions {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .release-card .button {
        padding: 0.2rem 0.55rem;
        font-size: 0.68rem;
    }

    /* Hero section compact */
    .hero.section-band {
        padding: 1.5rem 1rem;
    }

    .hero-panel {
        padding: 1rem;
    }

    .section-heading {
        margin-bottom: 1.25rem;
    }

    .section-heading h2 {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    /* Contact grid: 1 column, smaller images */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .qr-card {
        flex-direction: row !important;
        align-items: center !important;
        gap: 1rem;
        padding: 0.85rem 1rem !important;
        justify-content: flex-start !important;
    }

    .qr-card img {
        width: 64px !important;
        height: 64px !important;
        aspect-ratio: 1 !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        border-radius: 4px;
    }

    .qr-card .button {
        flex: 1;
        min-width: 0;
        margin-top: 0 !important;
    }

    /* Music tabs scrollable row */
    #music-tabs {
        gap: 0.4rem;
        padding-bottom: 0.4rem;
        margin-bottom: 1rem;
    }

    #music-tabs .button {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Music player compact folders */
#music-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

#music-tabs .button {
    flex: 0 0 auto;
}

.music-search-container {
    margin-bottom: 1.5rem;
    max-width: 480px;
    width: 100%;
}

.music-search-container input {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    border-color: var(--line);
    background: rgba(12, 11, 15, 0.85);
}

.music-search-container input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.02);
}

#music-library {
    max-height: min(72vh, 720px);
    overflow-y: auto;
    padding-right: 0.35rem;
    align-content: start;
}

.music-folder {
    grid-column: 1 / -1;
    overflow: hidden;
    background: rgba(20, 19, 24, 0.55);
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.music-folder:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.music-folder summary {
    min-height: 8.5rem;
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem;
    cursor: pointer;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.music-folder summary::-webkit-details-marker {
    display: none;
}

.music-folder summary img,
.folder-art {
    width: 7.5rem;
    aspect-ratio: 1;
    border-radius: 4px;
    object-fit: cover;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(230, 57, 70, 0.1) 100%);
    border: 1px solid var(--line);
    transition: border-color 0.25s ease;
}

.folder-copy {
    min-width: 0;
}

.folder-copy strong {
    font-family: 'Chokokutai', cursive, sans-serif;
    font-size: 1.35rem;
    color: var(--text);
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.folder-copy small {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    display: block;
    margin-top: 0.25rem;
}

.folder-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.folder-toggle {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
}

.music-folder[open] .folder-toggle {
    font-size: 0;
}

.music-folder[open] .folder-toggle::before {
    content: "Close";
    font-size: 0.8rem;
}

.folder-tracks {
    display: grid;
    gap: 0.55rem;
    max-height: 22rem;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.folder-track-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(25, 24, 30, 0.5);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

/* Now-playing highlight — gold left border + subtle gold background */
.folder-track-row.now-playing {
    border-color: var(--cyan);
    border-left: 3px solid var(--cyan);
    background: rgba(212, 175, 55, 0.07);
    position: relative;
}

.folder-track-row.now-playing strong::before {
    content: "▶ ";
    color: var(--cyan);
    font-size: 0.7em;
    animation: now-playing-pulse 1.4s ease-in-out infinite;
    display: inline;
}

@keyframes now-playing-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.folder-track-row strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.folder-track-row small {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--muted);
    display: block;
}

.folder-track-row .button {
    min-height: 2.25rem;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
}

/* Download button — muted outline style, distinct from Play */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0.3rem 0.75rem;
    min-height: 2.25rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.download-btn:hover {
    color: var(--text);
    border-color: var(--cyan);
    background: rgba(0, 230, 230, 0.06);
}

/* Wrapper for Play + Download in folder track rows */
.folder-track-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.stat-grid div {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.stat-grid div strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-grid div span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 560px) {
    #music-library {
        max-height: 60vh;
        padding-right: 0;
    }

    .music-folder summary {
        grid-template-columns: 4.5rem minmax(0, 1fr) auto;
        gap: 0.75rem;
        padding: 0.75rem;
        min-height: 5rem;
    }

    .music-folder summary img,
    .folder-art {
        width: 4.5rem;
    }

    .folder-copy strong {
        font-size: 1.1rem;
    }

    .folder-copy small {
        font-size: 0.72rem;
    }

    .folder-toggle {
        font-size: 0.72rem;
    }

    .folder-track-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.65rem 0.75rem;
    }

    .folder-track-row strong {
        font-size: 0.95rem;
    }

    .folder-track-btns {
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .folder-track-row .button,
    .download-btn {
        font-size: 0.72rem;
        padding: 0.3rem 0.7rem;
        min-height: 2rem;
    }

    .folder-tracks {
        padding: 0.75rem;
        gap: 0.4rem;
    }
}

/* Info Modal Styles */
.info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 10, 13, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1rem;
    transition: opacity 0.25s ease;
}

.info-modal-overlay[hidden] {
    display: none;
}

.info-modal {
    background: #131217;
    border: 1px solid var(--line-active);
    box-shadow: var(--shadow);
    width: min(580px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    border-radius: 4px;
}

.info-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.info-modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-color: var(--text);
}

#modal-project-title {
    font-family: 'Chokokutai', cursive, sans-serif;
    color: var(--text);
    margin: 0 0 0.25rem 0;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.modal-project-meta {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.modal-description {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--cyan);
    padding-left: 1rem;
    color: var(--text);
}

.modal-specs {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
}

.modal-specs div {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.45rem;
}

.modal-specs strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    min-width: 120px;
}

.modal-label-credit {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
    border-top: 1px dashed var(--line);
    padding-top: 0.6rem;
}

.control-btn {
    background: rgba(12, 11, 15, 0.85);
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.control-btn:hover {
    border-color: var(--text);
    color: var(--text);
}

.control-btn.active {
    color: #0b0a0d;
    border-color: var(--cyan);
    background: var(--cyan);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Custom Volume Slider styling */
.player-volume-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.6rem;
    padding-top: 0.2rem;
}

.player-volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    min-height: auto;
    width: auto;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: var(--line);
    outline: none;
    transition: background 0.3s;
    box-shadow: none;
}

.player-volume-slider:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    border: none;
    transition: transform 0.2s;
}

.player-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.player-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    border: none;
    transition: transform 0.2s;
}

.player-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.25);
}

#player-shuffle-all:hover {
    background: var(--cyan) !important;
    color: #0b0a0d !important;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* EPK Page Editorial Theme Override */
.epk-page {
    background-color: #ffd100 !important;
    color: #0b0a0d !important;
}

.epk-page::before {
    display: none !important;
}

.epk-page header.site-header {
    background-color: #0b0a0d !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.epk-page section.section-band {
    background: transparent !important;
    border-top: 1px solid rgba(11, 10, 13, 0.12) !important;
    color: #0b0a0d !important;
    padding: 4rem 2rem !important;
}

.epk-page .section-heading h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    text-transform: uppercase !important;
    color: #0b0a0d !important;
    letter-spacing: 0.02em !important;
    font-weight: normal !important;
    line-height: 1.0 !important;
}

.epk-page .section-heading .eyebrow {
    color: #444444 !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.12em !important;
}

.epk-page section.section-band p {
    color: #0b0a0d !important;
}

.epk-page .tabs button {
    border: 1px solid #0b0a0d !important;
    background: transparent !important;
    color: #0b0a0d !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    transition: all 0.2s ease !important;
}

.epk-page .tabs button.active,
.epk-page .tabs button:hover {
    background: #0b0a0d !important;
    color: #ffd100 !important;
}

.epk-page .music-folder {
    background: rgba(11, 10, 13, 0.03) !important;
    border: 1px solid #0b0a0d !important;
}

.epk-page .music-folder summary {
    border-bottom: 1px solid rgba(11, 10, 13, 0.08) !important;
}

.epk-page .folder-copy strong {
    color: #0b0a0d !important;
}

.epk-page .folder-copy small {
    color: #444444 !important;
}

.epk-page .folder-toggle {
    color: #0b0a0d !important;
}

.epk-page .folder-tracks {
    background: rgba(11, 10, 13, 0.04) !important;
}

.epk-page .folder-track-row {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(11, 10, 13, 0.08) !important;
}

.epk-page .folder-track-row strong {
    color: #0b0a0d !important;
}

.epk-page .folder-track-row small {
    color: #444444 !important;
}

.epk-page .folder-track-row .button.primary,
.epk-page .release-card .button.primary {
    background: #0b0a0d !important;
    color: #ffd100 !important;
    border: 1px solid #0b0a0d !important;
}

.epk-page .folder-track-row .button.primary:hover,
.epk-page .release-card .button.primary:hover {
    background: #25232b !important;
    border-color: #25232b !important;
}

.epk-page .player-dock {
    background: #0b0a0d !important;
    color: #ffd100 !important;
    border: 2px solid #0b0a0d !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3) !important;
}

.epk-page .player-dock #player-title {
    color: #faf9fb !important;
}

.epk-page .player-dock #player-meta {
    color: #938f9b !important;
}

.epk-page .player-dock .control-btn {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #faf9fb !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.epk-page .player-dock .control-btn.active {
    background: #ffd100 !important;
    color: #0b0a0d !important;
    border-color: #ffd100 !important;
}

.epk-page .player-dock .control-btn:hover {
    border-color: #ffd100 !important;
    color: #ffd100 !important;
}

.epk-page .release-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(11, 10, 13, 0.08) !important;
}

.epk-page .release-card h3 {
    color: #0b0a0d !important;
}

.epk-page .release-card .card-meta {
    color: #444444 !important;
}

.epk-page .release-card .button.info-button {
    border: 1px solid #0b0a0d !important;
    color: #0b0a0d !important;
    background: transparent !important;
}

.epk-page .release-card .button.info-button:hover {
    background: rgba(11, 10, 13, 0.05) !important;
}

.epk-page footer {
    background-color: #0b0a0d !important;
    color: #938f9b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* EPK Hero Banner */
.epk-hero-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    max-height: 480px;
    min-height: 320px;
    overflow: hidden;
    background: url('assets/homepage-profile.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 3rem 2rem;
}

.epk-hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 10, 13, 0.7) 0%, rgba(11, 10, 13, 0.1) 100%);
    z-index: 1;
}

.epk-hero-title {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4.5rem, 15vw, 9.5rem);
    line-height: 0.8;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* EPK Split Bio Section */
.epk-bio-section {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 4rem;
    align-items: start;
    padding: 4rem 2rem;
    background-color: #ffd100;
}

.epk-bio-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.epk-bio-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid #0b0a0d;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.epk-listen-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.2rem;
    background: #0b0a0d;
    color: #ffd100;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1.5rem;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.epk-listen-btn:hover {
    background: #25232b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.epk-bio-right {
    color: #0b0a0d;
}

.epk-release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.8rem, 8vw, 6.8rem);
    line-height: 0.8;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-align: center;
    width: 100%;
}

.epk-bio-right h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #0b0a0d;
    border-bottom: 2px solid #0b0a0d;
    padding-bottom: 0.25rem;
}

.epk-bio-right h3:first-of-type {
    margin-top: 0;
    font-size: clamp(3.8rem, 8vw, 6.8rem);
    line-height: 0.8;
    margin-bottom: 2rem;
}

.epk-bio-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
    color: #0b0a0d;
}

.epk-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.epk-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0b0a0d;
    color: #ffd100;
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.epk-social-links a:hover {
    transform: scale(1.1);
    background: #25232b;
}

.epk-social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* EPK Photos Grid */
.epk-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.epk-photos-grid figure {
    margin: 0;
    background: rgba(11, 10, 13, 0.02);
    border: 1px solid #0b0a0d;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.epk-photos-grid figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.epk-photos-grid img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #0b0a0d;
}

.epk-photos-grid figcaption {
    padding: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: #0b0a0d;
}

/* EPK Contact Section */
.epk-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.epk-contact-grid div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.epk-contact-grid strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #0b0a0d;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(11, 10, 13, 0.1);
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}

.epk-contact-grid span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0b0a0d;
}

.epk-contact-grid a {
    color: #0b0a0d;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.epk-contact-grid a:hover {
    opacity: 0.8;
}

@media (max-width: 820px) {
    .epk-bio-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .epk-bio-left {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .epk-hero-banner {
        height: 40vh;
        padding: 2rem 1.5rem;
    }
}

/* EPK Video Grid */
.epk-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.epk-video-grid .embed-shell {
    min-height: 0;
    aspect-ratio: 16 / 9;
}

/* EPK Photos Grid Download Links */
.epk-photos-grid figcaption a {
    color: #0b0a0d;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.2s;
}

.epk-photos-grid figcaption a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Persistent Floating Player Dock Styles */
.player-dock.floating-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto; /* override top: 5.5rem */
    width: 100%;
    max-width: 100%;
    background: rgba(18, 17, 22, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid var(--cyan);
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    margin: 0;
    padding: 0.8rem 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
    overflow: visible;
}

.player-dock.floating-player.hidden-player {
    transform: translateY(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Collapsed (hidden by user toggle) */
.player-dock.floating-player.player-collapsed {
    transform: translateY(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Top row wrapper (track info + collapse btn) */
.player-top-row {
    display: contents; /* transparent on desktop — children act as direct flex children */
}

/* Collapse chevron button inside the player */
.player-collapse-btn {
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.7rem;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    padding: 0;
    line-height: 1;
}

.player-collapse-btn:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Restore tab — small pill anchored at the bottom-right */
.player-restore-tab {
    position: fixed;
    bottom: 0;
    right: 1.5rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
    background: rgba(18, 17, 22, 0.96);
    border: 1px solid var(--cyan);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    color: var(--cyan);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
    /* Hidden by default — slides up into view */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease;
}

.player-restore-tab.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.player-restore-tab:hover {
    background: rgba(212, 175, 55, 0.12);
}

.player-restore-icon {
    font-size: 0.85rem;
}

/* Remove bottom padding when player is collapsed */
body.player-is-collapsed {
    padding-bottom: 0 !important;
}

@media (max-width: 560px) {
    .player-restore-tab {
        right: 0.75rem;
        font-size: 0.68rem;
        padding: 0.4rem 0.8rem 0.4rem 0.65rem;
    }

    .player-collapse-btn {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.65rem;
    }
}

/* Specific inner element layout adjustments when floating */
.player-dock.floating-player .player-track-info {
    margin-bottom: 0;
    flex: 1;
    max-width: 320px;
}

.player-dock.floating-player #player-art {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.player-dock.floating-player #player-title {
    font-size: 0.95rem;
}

.player-dock.floating-player #player-meta {
    font-size: 0.7rem;
}

.player-dock.floating-player .player-center-controls {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 320px;
    max-width: 550px;
}

.player-dock.floating-player .player-progress-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
}

.player-dock.floating-player .player-progress-container span {
    font-size: 0.75rem;
    font-family: 'Share Tech Mono', monospace;
    color: var(--muted);
    min-width: 35px;
    text-align: center;
}

/* Custom Seek Progress Slider styling */
.player-progress-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    min-height: auto;
    width: auto;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: var(--line);
    outline: none;
    transition: background 0.3s;
    box-shadow: none;
}

.player-progress-slider:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.player-progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    border: none;
    transition: transform 0.2s;
}

.player-progress-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.player-progress-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    border: none;
    transition: transform 0.2s;
}

.player-progress-slider::-moz-range-thumb:hover {
    transform: scale(1.25);
}

/* Yellow Theme Overrides for EPK Page Seek and Volume Thumbs */
.epk-page .player-progress-slider::-webkit-slider-thumb {
    background: #ffd100 !important;
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5) !important;
}
.epk-page .player-progress-slider::-moz-range-thumb {
    background: #ffd100 !important;
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5) !important;
}
.epk-page .player-volume-slider::-webkit-slider-thumb {
    background: #ffd100 !important;
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5) !important;
}
.epk-page .player-volume-slider::-moz-range-thumb {
    background: #ffd100 !important;
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5) !important;
}
.epk-page .player-dock.floating-player {
    border-top: 2px solid #ffd100 !important;
}
.epk-page .player-restore-tab {
    border-color: #ffd100 !important;
    color: #ffd100 !important;
}
.epk-page .player-restore-tab:hover {
    background: rgba(255, 209, 0, 0.12) !important;
}

.player-dock.floating-player .player-right-controls {
    flex: 1;
    min-width: 150px;
    max-width: 220px;
    display: flex;
    justify-content: flex-end;
}

.player-dock.floating-player .player-volume-container {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.player-dock.floating-player .player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* Adjust page padding when floating player is present */
body.has-floating-player {
    padding-bottom: 5.5rem !important;
}

/* Media Queries for Mobile Screens */
@media (max-width: 768px) {
    /* Stack into two rows: [art + info] on top, [controls] below */
    .player-dock.floating-player {
        flex-direction: column;
        gap: 0;
        padding: 0.55rem 0.9rem 0.5rem;
        align-items: stretch;
    }

    /* Top row: track info + collapse btn side by side */
    .player-dock.floating-player .player-top-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 0.35rem;
    }

    .player-dock.floating-player .player-track-info {
        flex: unset;
        max-width: none;
        min-width: 0;
        flex: 1;
        gap: 0.6rem;
        align-items: center;
        margin-bottom: 0;
    }

    .player-dock.floating-player #player-art {
        width: 38px;
        height: 38px;
        min-width: 38px;
        flex-shrink: 0;
    }

    /* Give the text block room to breathe */
    .player-dock.floating-player .player-text-details {
        min-width: 0;
        flex: 1;
    }

    .player-dock.floating-player #player-title {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-dock.floating-player #player-meta {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-dock.floating-player .panel-label {
        display: none; /* hide "Now Playing" label to save vertical space */
    }

    /* Bottom row: controls centered, compact */
    .player-dock.floating-player .player-center-controls {
        flex: unset;
        min-width: 0;
        width: 100%;
        align-items: center;
        gap: 0.2rem;
    }

    .player-dock.floating-player .player-progress-container {
        display: none; /* hide seek bar on mobile */
    }

    .player-dock.floating-player .player-controls {
        flex-direction: row;
        gap: 0.35rem;
        border-top: 1px solid rgba(255,255,255,0.06);
        padding-top: 0.35rem;
        margin-top: 0;
        justify-content: center;
        width: 100%;
    }

    .player-dock.floating-player .control-btn {
        padding: 0.28rem 0.65rem;
        font-size: 0.72rem;
        min-height: 1.9rem;
    }

    .player-dock.floating-player .player-right-controls {
        display: none !important; /* hide volume on mobile */
    }

    /* Collapse btn — inline in the top row, no absolute positioning */
    .player-dock.floating-player .player-collapse-btn {
        display: flex;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        color: var(--muted);
        font-size: 0.72rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .player-dock.floating-player .player-collapse-btn:hover {
        color: var(--text);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .player-dock.floating-player .player-collapse-btn:active {
        transform: scale(0.95);
    }

    body.has-floating-player {
        padding-bottom: 6rem !important;
    }
}

/* =============================================
   T SWERV3 Countdown Section
   ============================================= */

.countdown-section {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    padding: 0;
}

/* Background blurred album art */
.countdown-bg-blur {
    position: absolute;
    inset: 0;
    background: url('assets/tswerv3-cover.jpeg') center/cover no-repeat;
    filter: blur(60px) brightness(0.25) saturate(0.6);
    transform: scale(1.15);
    z-index: 0;
}

/* Inner two-column layout */
.countdown-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Album art column */
.countdown-art-col {
    flex: 0 0 auto;
}

.countdown-art {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.12);
    animation: countdown-art-pulse 4s ease-in-out infinite;
}

@keyframes countdown-art-pulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 40px rgba(0,0,0,0.7), 0 0 60px rgba(255, 215, 0, 0.12); }
    50%       { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 8px 40px rgba(0,0,0,0.7), 0 0 90px rgba(255, 215, 0, 0.28); }
}

/* Info column */
.countdown-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.countdown-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffd100;
    margin: 0;
}

.countdown-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.countdown-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
    margin: 0;
}

/* Countdown units row */
.countdown-units {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    min-width: 70px;
    backdrop-filter: blur(6px);
}

.countdown-unit span {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #ffd100;
    line-height: 1;
    transition: transform 0.15s ease;
}

.countdown-unit span.tick {
    transform: scale(1.08);
}

.countdown-unit label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

.countdown-colon {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.5);
    margin-top: 0.6rem;
    animation: colon-blink 1s step-end infinite;
}

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

/* Released message */
.countdown-released-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd100;
    padding: 0.75rem 1.25rem;
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 6px;
    background: rgba(255, 215, 0, 0.08);
    display: none; /* hidden by default; JS removes [hidden] to reveal */
}

.countdown-released-msg:not([hidden]) {
    display: inline-block;
}

/* Daily teaser mini player card */
.countdown-player-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 420px;
}

.countdown-player-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.countdown-player-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.countdown-player-track-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.countdown-player-controls {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.cd-play-btn {
    flex: 0 0 auto;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: none;
    background: #ffd100;
    color: #000;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    font-family: sans-serif;
}

.cd-play-btn:hover {
    transform: scale(1.1);
    background: #ffe040;
}

.countdown-progress-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cd-progress-bar {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    accent-color: #ffd100;
    outline: none;
}

.cd-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffd100;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.5);
}

.cd-progress-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffd100;
    cursor: pointer;
    border: none;
}

.cd-time-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .countdown-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 1.25rem;
        gap: 2rem;
    }

    .countdown-art {
        width: 200px;
        height: 200px;
    }

    .countdown-info-col {
        align-items: center;
    }

    .countdown-units {
        justify-content: center;
    }

    .countdown-unit {
        min-width: 58px;
        padding: 0.6rem 0.75rem;
    }

    .countdown-player-card {
        max-width: 100%;
        width: 100%;
    }

    .countdown-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
}

/* =============================================
   Nav Countdown Pill
   ============================================= */

.nav-countdown-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: rgba(255, 209, 0, 0.07);
    border: 1px solid rgba(255, 209, 0, 0.22);
    border-radius: 20px;
    padding: 0.3rem 0.9rem 0.3rem 0.75rem;
    white-space: nowrap;
    /* Hidden and slightly shifted up by default */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
    /* Take center space between brand and nav */
    flex: 0 1 auto;
    margin: 0 auto;
}

.nav-countdown-pill.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-countdown-pill:hover {
    background: rgba(255, 209, 0, 0.14);
    border-color: rgba(255, 209, 0, 0.5);
}

.nav-cd-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.nav-cd-nums {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffd100;
    letter-spacing: 0.04em;
}

.nav-cd-nums span {
    display: inline;
}

/* On small screens: hide the label, keep just the numbers */
@media (max-width: 640px) {
    .nav-cd-name {
        display: none;
    }

    .nav-countdown-pill {
        padding: 0.3rem 0.65rem;
    }
}

/* On very small screens, hide entirely to avoid header overflow */
@media (max-width: 400px) {
    .nav-countdown-pill {
        display: none;
    }
}
