:root {
    --bg: #08080c;
    --bg-elevated: #12121a;
    --bg-card: #16161f;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f4f4f7;
    --text-muted: #9a9aad;
    --accent: #a855f7;
    --accent-soft: rgba(168, 85, 247, 0.15);
    --accent-glow: rgba(168, 85, 247, 0.35);
    --warm: #f59e0b;
    --warm-soft: rgba(245, 158, 11, 0.15);
    --success: #22c55e;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --font: 'Outfit', system-ui, sans-serif;
    --nav-height: 72px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(168, 85, 247, 0.12), transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(245, 158, 11, 0.08), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.06), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

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

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

.container {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: rgba(8, 8, 12, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.site-nav.scrolled {
    border-bottom-color: var(--border);
    background: rgba(8, 8, 12, 0.92);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav-social {
    display: flex;
    gap: 0.5rem;
}

.nav-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.2s;
}

.nav-social a:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-soft);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: calc(var(--nav-height) + 4rem) 0 5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(168, 85, 247, 0.25);
    color: #d8b4fe;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
    position: relative;
}

.hero-cover-stack {
    position: relative;
    width: min(100%, 380px);
    margin: 0 auto;
    aspect-ratio: 1;
}

.hero-cover {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.4s ease;
}

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

.hero-cover.back {
    transform: rotate(6deg) translate(20px, 20px) scale(0.92);
    opacity: 0.55;
    z-index: 1;
}

.hero-cover.front {
    z-index: 2;
    transform: rotate(-3deg);
}

.hero-cover-stack:hover .hero-cover.front {
    transform: rotate(0deg) scale(1.02);
}

.hero-cover-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
}

.hero-cover-label strong {
    display: block;
    font-size: 1rem;
}

.hero-cover-label span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* Clips carousel */
.clips-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.clips-section .section-header {
    margin-bottom: 2rem;
}

.clips-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
}

.clips-carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.clips-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.clips-slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
}

.clips-slide-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(72vh, 720px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.clips-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clips-slide-link:hover .clips-slide-bg {
    transform: scale(1.03);
}

.clips-slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
    transition: background 0.3s;
}

.clips-play-large {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.92);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s;
    pointer-events: none;
}

.clips-play-large i {
    font-size: 2.25rem;
    color: white;
    padding-left: 4px;
}

.clips-slide-link:hover .clips-play-large {
    transform: translateY(-50%) scale(1.08);
}

.clips-slide-content {
    padding: 2.5rem 1.5rem 2rem;
    position: relative;
    width: 100%;
}

.clips-slide-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.clips-slide-content h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    padding-right: 100px;
}

.clips-slide-content p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    padding-right: 100px;
}

.clips-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.clips-slide-link:hover .clips-watch-btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.clips-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.clips-nav:hover {
    background: rgba(168, 85, 247, 0.75);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-50%) scale(1.05);
}

.clips-nav--prev {
    left: 1rem;
}

.clips-nav--next {
    right: 1rem;
}

.clips-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 0 0;
}

.clips-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.clips-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.clips-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .clips-slide-link {
        aspect-ratio: 16 / 10;
        max-height: none;
    }

    .clips-slide-content {
        padding: 1.5rem 1rem 1.25rem;
    }

    .clips-play-large {
        display: none;
    }

    .clips-slide-content h3,
    .clips-slide-content p {
        padding-right: 0;
    }

    .clips-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .clips-nav--prev {
        left: 0.5rem;
    }

    .clips-nav--next {
        right: 0.5rem;
    }
}

/* Notice */
.notice-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(168, 85, 247, 0.06) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-card i {
    font-size: 1.5rem;
    color: var(--warm);
    margin-top: 0.15rem;
}

.notice-card p {
    margin: 0;
    color: #e5e5ea;
}

/* Album tabs */
.album-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.album-tab {
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.album-tab:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.15);
}

.album-tab.active {
    background: var(--accent-soft);
    border-color: rgba(168, 85, 247, 0.4);
    color: #e9d5ff;
}

.album-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.album-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.album-showcase {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.album-info-card {
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
}

.album-cover-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.album-cover-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.album-badge.new {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
}

.album-badge.best {
    background: linear-gradient(135deg, var(--accent), #6366f1);
    color: white;
}

.album-meta h3 {
    font-size: 1.75rem;
    margin: 0 0 0.25rem;
    font-weight: 800;
}

.album-meta .subtitle {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.album-meta .stats {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-meta .description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.platform-btn:hover {
    transform: translateY(-1px);
}

.platform-btn.youtube { background: rgba(255, 0, 0, 0.12); border-color: rgba(255, 0, 0, 0.3); color: #fca5a5; }
.platform-btn.spotify { background: rgba(34, 197, 94, 0.12); border-color: rgba(34, 197, 94, 0.3); color: #86efac; }
.platform-btn.apple { background: rgba(244, 63, 94, 0.12); border-color: rgba(244, 63, 94, 0.3); color: #fda4af; }
.platform-btn.tidal { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); color: #e5e5ea; }

/* Tracklist */
.tracklist {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.tracklist-header {
    display: grid;
    grid-template-columns: 48px 1fr 70px 90px;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.track-item {
    border-bottom: 1px solid var(--border);
}

.track-item:last-child {
    border-bottom: none;
}

.track-row {
    display: grid;
    grid-template-columns: 48px 1fr 70px auto;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.25rem;
    transition: background 0.2s;
}

.track-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.track-main-link {
    display: grid;
    grid-template-columns: 48px 1fr 70px;
    gap: 1rem;
    align-items: center;
    grid-column: 1 / 4;
    text-decoration: none;
    color: inherit;
}

.track-main-link:hover {
    color: inherit;
}

.track-item--has-clip .track-main-link {
    grid-column: 1 / 3;
}

.track-item--has-clip .track-row {
    grid-template-columns: 1fr auto;
}

.track-item--has-clip .track-main-link {
    grid-template-columns: 48px 1fr 70px;
}

.track-title {
    font-size: 0.98rem;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.track-clip-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    color: #fca5a5;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.track-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.track-listen-btn {
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}

.track-clip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 0, 0, 0.35);
    background: rgba(255, 0, 0, 0.1);
    color: #fca5a5;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.track-row:hover .track-listen-btn,
.track-listen-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

.track-clip-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    color: #fff;
}

.track-num {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.track-row:hover .track-num {
    display: none;
}

.track-play-icon {
    display: none;
    text-align: center;
    color: var(--accent);
    font-size: 1.1rem;
}

.track-row:hover .track-play-icon {
    display: block;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s;
}

.info-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1rem;
    font-size: 1.2rem;
}

.info-card h3 i {
    color: var(--accent);
}

.info-card p,
.info-card li {
    color: var(--text-muted);
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-card li i {
    color: var(--success);
    margin-top: 0.2rem;
}

/* Contact */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.04) 100%);
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-section .section-header {
    width: 100%;
}

.contact-email {
    width: fit-content;
    min-width: min(100%, 320px);
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-email i {
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.contact-email a {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s;
}

.contact-email a:hover {
    color: #d8b4fe;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Legal page */
.legal-page {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--accent);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid,
    .album-showcase {
        grid-template-columns: 1fr;
    }

    .album-info-card {
        position: static;
    }

    .hero-visual {
        order: -1;
    }

    .hero-cover-stack {
        width: min(100%, 280px);
    }
}

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

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(8, 8, 12, 0.98);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .tracklist-header {
        display: none;
    }

    .track-row {
        grid-template-columns: 1fr auto;
    }

    .track-main-link {
        grid-template-columns: 40px 1fr;
    }

    .track-duration {
        display: none;
    }

    .track-action {
        display: none;
    }

    .track-item--has-clip .track-action {
        display: flex;
        grid-column: 1 / -1;
        padding: 0 1.25rem 0.75rem;
        justify-content: flex-start;
    }
}
