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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    min-height: 96px;
    padding: 1.25rem 3rem;
    z-index: 1000;
    border-bottom: 1px solid #fff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.4rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    font-weight: 300;
}

.nav-links a:hover {
    opacity: 0.5;
}

.lang-toggle {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    padding: 0.75rem 1rem;
    font: inherit;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.lang-toggle:hover {
    background: #fff;
    color: #000;
}

.hero {
    min-height: 58vh;
    display: grid;
    align-items: end;
    padding: 10rem 3rem 4.5rem;
    border-bottom: 1px solid #fff;
    position: relative;
    overflow: hidden;
}

.home-hero {
    min-height: 100vh;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.hero::after {
    content: '';
    position: absolute;
    right: 8%;
    bottom: -90px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: rotate(45deg);
}

.home-hero::after {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.home-hero::before {
    display: none;
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 1;
}

.home-hero .hero-content {
    margin: 0 auto;
    text-align: center;
    max-width: 760px;
    transform: translateY(-0.8rem);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 100;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.home-hero h1 {
    font-size: 5.2rem;
    margin-bottom: 1.65rem;
}

h2 {
    font-size: 2rem;
    font-weight: 100;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    overflow-wrap: anywhere;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 2.25rem;
    letter-spacing: 5px;
    font-weight: 300;
    text-transform: uppercase;
}

.deck,
.copy {
    max-width: 740px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 300;
    line-height: 1.9;
}

.home-hero .deck {
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.deck {
    font-size: 1rem;
}

.section {
    padding: 4.5rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section.compact {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
    padding-bottom: 1rem;
}

.section-note {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
    font-weight: 300;
    text-align: right;
}

.feature {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) 1fr;
    gap: 3rem;
    align-items: center;
}

.next-release-teaser {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.8rem;
    align-items: center;
    margin-top: 2.8rem;
    margin-left: auto;
    max-width: 860px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding-top: 2rem;
}

.teaser-art {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: #000;
    color: #fff;
    text-decoration: none;
}

.teaser-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.64;
    filter: saturate(0.8);
    transition: opacity 0.3s, transform 0.3s, filter 0.3s;
}

.teaser-art:hover img {
    opacity: 0.86;
    filter: saturate(1);
    transform: scale(1.02);
}

.teaser-copy h3 {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
}

.teaser-copy .desc {
    max-width: 560px;
}

.media-link,
.card {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    background: #000;
    transition: background 0.3s, color 0.3s;
}

.media-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.flip-art {
    perspective: 1200px;
}

.flip-stage {
    position: absolute;
    inset: 0;
    display: block;
    transform-style: preserve-3d;
    animation: image-flip 4s linear infinite;
}

.flip-art .flip-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-art .flip-back {
    transform: rotateY(180deg);
}

.media-link img,
.media-link video,
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.84;
    transition: opacity 0.3s, transform 0.3s;
}

.portrait-art img,
.portrait-art video {
    object-fit: contain;
    background: #000;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.media-link:not(.flip-art):hover img,
.card:hover .thumb img {
    opacity: 0.56;
    transform: scale(1.02);
}

.flip-art:hover .flip-stage {
    opacity: 0.56;
}

.media-label {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 1px solid currentColor;
    padding: 0.45rem 0.85rem;
    background: rgba(0, 0, 0, 0.72);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

@keyframes image-flip {
    0%,
    45% {
        transform: rotateY(0deg);
    }

    50%,
    95% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.eyebrow,
.meta {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.64;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.btn-row,
.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.3rem;
}

.home-hero .btn-row {
    justify-content: center;
    gap: 2rem;
    margin-top: 3.4rem;
}

.btn,
.link-row a {
    display: inline-block;
    border: 1px solid currentColor;
    color: inherit;
    text-decoration: none;
    padding: 0.78rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    transition: background 0.3s, color 0.3s;
}

.home-hero .btn {
    min-width: 230px;
    padding: 1rem 1.3rem;
    background: rgba(0, 0, 0, 0.12);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-element {
    position: absolute;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.geo-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.geo-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.geo-3 {
    top: 25%;
    left: 12%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.3);
    animation: pulse-geo 8s ease-in-out infinite;
}

.geo-4 {
    bottom: 25%;
    right: 10%;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    animation: float-rotate 12s ease-in-out infinite;
}

.geo-5 {
    top: 50%;
    right: 3%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.3);
    animation: float 18s ease-in-out infinite reverse;
}

.geo-6 {
    bottom: 35%;
    left: 3%;
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.35);
    animation: rotate 15s linear infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse-geo {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

@keyframes float-rotate {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-40px) rotate(135deg);
    }
}

.link-row a {
    padding: 0.45rem 0.75rem;
    font-size: 0.7rem;
}

.btn:hover,
.link-row a:hover,
.card:hover {
    background: #fff;
    color: #000;
}

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

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

.collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.collections-grid .card {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    align-items: stretch;
}

.collections-grid .thumb {
    border-bottom: 0;
    border-right: 1px solid currentColor;
    min-height: 230px;
    width: 100%;
    min-width: 0;
}

.collections-grid .card-body {
    min-width: 0;
    align-self: center;
    padding: 2rem;
}

.collections-grid .link-row {
    min-width: 0;
    max-width: 100%;
}

.collections-grid .card.no-thumb {
    display: block;
}

.album-groups {
    display: grid;
    gap: 2.5rem;
    min-width: 0;
}

.thumb {
    aspect-ratio: 16/9;
    background: #111;
    border-bottom: 1px solid currentColor;
    overflow: hidden;
}

.collection-showcase {
    border: 1px solid #fff;
    background: #000;
    padding: 1rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.collection-head {
    display: grid;
    grid-template-columns: minmax(330px, 1.23fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1rem;
}

.collection-art {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(330px, 39vw, 585px);
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.collection-art img {
    width: min(100%, 645px);
    max-height: clamp(315px, 37.5vw, 555px);
    object-fit: contain;
    display: block;
    opacity: 0.82;
    transition: opacity 0.3s, transform 0.3s;
}

.collection-art:hover img {
    opacity: 1;
    transform: scale(1.01);
}

.collection-summary {
    min-width: 0;
    padding: 0.25rem 0.25rem 0.25rem 0;
}

.collection-summary h3 {
    font-size: 1.45rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.collection-summary .desc {
    max-width: 640px;
}

.collection-summary .btn-row {
    margin-top: 1.1rem;
}

.collection-strip {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    border-top: 1px solid #fff;
    padding-top: 1rem;
    padding-bottom: 0.2rem;
}

.mini-album {
    display: grid;
    gap: 0.65rem;
    align-content: start;
    flex: 0 0 160px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #050505;
    color: #fff;
    text-decoration: none;
    padding: 0.65rem;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.mini-album img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
    display: block;
    background: #000;
}

.mini-album span {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.mini-album:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.video-frame {
    position: relative;
    aspect-ratio: 16/9;
    background: #050505;
    border-bottom: 1px solid currentColor;
    overflow: hidden;
}

.video-frame iframe,
.video-frame video,
.video-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-frame video,
.video-frame img {
    object-fit: contain;
    background: #000;
}

.card-body {
    padding: 1.35rem;
}

.desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.82;
}

.album-detail {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.album-player,
.album-info {
    border: 1px solid #fff;
    background: #000;
}

.album-player .video-frame {
    border-bottom: 0;
    aspect-ratio: 16/9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.album-info {
    padding: 1.35rem;
}

.album-info h2 {
    font-size: 1.35rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.album-info .copy {
    margin-bottom: 1rem;
}

.album-links {
    margin-top: 1.5rem;
}

.album-links .btn {
    min-width: 150px;
    text-align: center;
}

.album-meta-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.album-meta-list div {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 1rem;
    font-size: 0.82rem;
}

.album-meta-list dt {
    opacity: 0.58;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-meta-list dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.artwork-player img {
    object-fit: contain;
    padding: 1rem;
}

.album-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.18);
    gap: 1rem;
    width: auto;
    background: transparent;
    min-height: 0;
    z-index: auto;
    border-bottom: none;
}

.album-nav .btn {
    min-width: 120px;
    text-align: center;
}

.album-nav .btn-placeholder {
    min-width: 120px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
}

nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
}

nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.band {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.white-band {
    background: #000;
    color: #fff;
    padding: 3.5rem 3rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.white-band .copy {
    color: rgba(255, 255, 255, 0.72);
}

.white-band .btn:hover {
    background: #fff;
    color: #000;
}

.white-band-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.track-list {
    display: grid;
    gap: 0.75rem;
}

.track-row {
    display: grid;
    grid-template-columns: 4rem 1fr auto;
    gap: 1rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    padding: 1rem;
    text-decoration: none;
}

.track-row:hover {
    background: #fff;
    color: #000;
}

.track-number {
    opacity: 0.62;
    letter-spacing: 2px;
    font-size: 0.78rem;
}

.track-title {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
    overflow-wrap: anywhere;
}

.track-meta {
    opacity: 0.62;
    font-size: 0.78rem;
    text-align: right;
    text-transform: uppercase;
}

footer {
    padding: 3rem;
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.64;
}

@media (max-width: 968px) {
    nav,
    .hero,
    .section,
    .white-band {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .nav-links {
        gap: 1.1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .lang-toggle {
        justify-self: start;
    }

    h1,
    .home-hero h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    h2 {
        font-size: 1.7rem;
        letter-spacing: 4px;
    }

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

    .next-release-teaser {
        grid-template-columns: 150px minmax(0, 1fr);
        margin-left: 0;
    }

    .album-detail {
        grid-template-columns: 1fr;
    }

    .section-header {
        display: block;
    }

    .section-note {
        text-align: left;
        margin-top: 0.8rem;
    }

}

/* ── Track page: single-screen layout at ≥ 968 px ── */
@media (min-width: 968px) {
    .track-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .track-page .hero {
        min-height: 0;
        flex-shrink: 0;
        padding-top: calc(96px + 0.75rem);
        padding-bottom: 0.75rem;
    }

    .track-page .hero h1 {
        font-size: 2.1rem;
        letter-spacing: 6px;
        margin-bottom: 0.3rem;
    }

    .track-page .hero .subtitle {
        font-size: 0.82rem;
        margin-bottom: 0.4rem;
    }

    .track-page .hero .deck {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .track-page .section.compact {
        flex: 1;
        min-height: 0;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        width: 100%;
    }

    .track-page .album-detail {
        display: grid;
        grid-template-columns: 1fr 380px;
        grid-template-rows: 1fr;
        align-items: stretch;
        gap: 1.25rem;
        height: 100%;
        min-height: 0;
    }

    /* Video column: player fills grid cell, frame fills player absolutely */
    .track-page .album-player {
        position: relative;
        min-width: 0;
    }

    .track-page .album-player .video-frame {
        position: absolute;
        inset: 0;
        aspect-ratio: unset;
    }

    /* Info column: fixed width, scrolls if content overflows */
    .track-page .album-info {
        overflow-y: auto;
    }

    .track-page .album-nav {
        flex-shrink: 0;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .track-page footer {
        flex-shrink: 0;
        padding: 0.5rem 3rem;
    }
}

@media (max-width: 700px) {
    nav {
        position: fixed;
        display: grid;
        grid-template-columns: 1fr auto;
        padding: 1rem 1.5rem;
        align-items: center;
    }

    .nav-hamburger {
        display: flex;
        grid-column: 2;
        grid-row: 1;
    }

    .nav-links {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding-top: 1rem;
    }

    nav.nav-open {
        height: 100vh;
        grid-template-rows: auto 1fr auto;
    }

    nav.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        padding: 0;
    }

    nav.nav-open .nav-links a {
        font-size: 1.4rem;
        letter-spacing: 5px;
    }

    .lang-toggle {
        display: none;
        grid-column: 1 / -1;
        grid-row: 3;
        justify-self: center;
        margin-bottom: 2rem;
    }

    nav.nav-open .lang-toggle {
        display: block;
    }

    .hero {
        padding-top: calc(96px + 1.5rem);
        min-height: auto;
    }

    .home-hero {
        min-height: calc(100vh - 1px);
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    h1,
    .home-hero h1 {
        font-size: 2.35rem;
        letter-spacing: 3px;
    }

    .subtitle {
        letter-spacing: 2px;
    }

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

    .next-release-teaser {
        grid-template-columns: 1fr;
    }

    .teaser-art {
        max-width: 220px;
    }

    .grid.two {
        grid-template-columns: minmax(0, 1fr);
    }

    .collections-grid .card {
        grid-template-columns: 1fr;
    }

    .collections-grid .thumb {
        border-right: 0;
        border-bottom: 1px solid currentColor;
    }

    .collection-showcase {
        padding: 0.75rem;
    }

    .collection-head {
        grid-template-columns: 1fr;
    }

    .collection-art {
        min-height: 260px;
    }

    .collection-strip {
        justify-content: flex-start;
    }

    .track-meta {
        text-align: left;
    }

    .home-hero .btn {
        min-width: 100%;
    }

    .album-links {
        justify-content: center;
    }

    .album-nav {
        padding: 0.75rem 1rem;
        gap: 0.4rem;
    }

    .album-nav .btn,
    .album-nav .btn-placeholder {
        flex: 1;
        min-width: 0;
        padding: 0.6rem 0.4rem;
        font-size: 0.62rem;
        letter-spacing: 1px;
        text-align: center;
    }

    .hero-shapes {
        opacity: 0.55;
    }

    .geo-1 {
        width: 100px;
        height: 100px;
    }

    .geo-2 {
        width: 75px;
        height: 75px;
    }

    .geo-3 {
        width: 50px;
        height: 50px;
    }

    .geo-4 {
        width: 60px;
        height: 60px;
    }

    .geo-5 {
        width: 40px;
        height: 40px;
    }

    .geo-6 {
        width: 30px;
        height: 30px;
    }
}

/* ── Liaozhai Track Index ─────────────────────────────────── */

.lz-track-list {
    display: flex;
    flex-direction: column;
}

.lz-track-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.lz-track-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lz-track-row:hover {
    opacity: 0.6;
}

.lz-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    flex-shrink: 0;
}

.lz-num {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.35;
    width: 2.5rem;
    flex-shrink: 0;
    font-weight: 300;
}

.lz-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.lz-date {
    font-size: 0.75rem;
    opacity: 0.45;
    flex-shrink: 0;
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: uppercase;
}

.lz-progress {
    font-size: 0.78rem;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.lz-progress strong {
    opacity: 1;
    color: #fff;
}

/* ── Liaozhai Song Grid (YouTube-style) ──────────────────────── */

.lz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem 1.5rem;
}

.lz-card {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lz-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0a0a0a;
}

.lz-card-thumb img,
.lz-card-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lz-card-upcoming .lz-card-thumb img {
    opacity: 0.56;
    filter: saturate(0.75);
}

.lz-card-status {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.25rem 0.55rem;
    font-size: 0.58rem;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.lz-card-title-link {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.lz-card-title-link:hover {
    opacity: 0.65;
}

.lz-card-num {
    position: absolute;
    bottom: 0.4rem;
    right: 0.5rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.65);
    padding: 0.15rem 0.45rem;
    font-weight: 300;
}

.lz-card-title {
    font-size: 0.88rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.lz-card-date {
    font-size: 0.68rem;
    opacity: 0.4;
    letter-spacing: 1.5px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Audio player: hidden until src is set */
.lz-audio-player {
    width: 100%;
    margin-top: 1rem;
}

.lz-audio-player:not([src]) {
    display: none;
}
