* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 24px;

    display: grid;
    place-items: center;

    background: #000;
    color: #fff;

    font-family:
        "JetBrains Mono",
        monospace;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: -1;
    pointer-events: none;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 3px,
            rgba(255, 255, 255, 0.035) 3px,
            rgba(255, 255, 255, 0.035) 4px
        );
}

button,
select,
input {
    font: inherit;
}

a {
    color: inherit;
}

select:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 1px solid #fff;
    outline-offset: 3px;
}

.page {
    width: min(900px, 100%);
    padding: 24px;

    background: transparent;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 30px;
}

h1 {
    margin: 0;

    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 18px;

    margin-top: 30px;
    padding-top: 16px;

    border-top: 1px solid #fff;
}

.site-nav a {
    color: #888;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav a:hover {
    color: #fff;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content section {
    border-top: 1px solid #fff;
    padding-top: 16px;
}

.content h2 {
    margin: 0 0 12px;

    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.content p {
    margin: 0;

    color: #888;

    font-size: 13px;
    line-height: 1.6;
}

.content p + p {
    margin-top: 12px;
}

.placeholder {
    color: #555;
    font-style: italic;
}

.carousel {
    display: flex;
    flex-direction: column;
    gap: 14px;

    max-width: 560px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    --carousel-gap: 14px;

    display: flex;
    gap: var(--carousel-gap);

    transition: transform 0.3s ease;
}

.carousel-slide {
    flex: 0 0 calc((100% - 2 * var(--carousel-gap)) / 3);
    aspect-ratio: 1 / 1;
    min-width: 0;

    border: 1px solid #fff;
}

.carousel-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    cursor: pointer;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-button {
    width: 30px;
    height: 30px;

    border: 1px solid #fff;
    background: transparent;

    color: #fff;

    font-size: 14px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.carousel-button:hover {
    background: #fff;
    color: #000;
}

.carousel-counter {
    color: #888;

    font-size: 11px;
    letter-spacing: 0.06em;
}

.lightbox {
    max-width: min(90vw, 720px);
    max-height: 90vh;

    padding: 0;
    border: 1px solid #fff;

    background: #000;
    color: #fff;
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    padding: 20px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;

    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;

    width: 30px;
    height: 30px;

    border: 1px solid #fff;
    background: #000;

    color: #fff;

    font-size: 16px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.lightbox-close:hover {
    background: #fff;
    color: #000;
}

.release {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.release-cover {
    width: 160px;
    height: 160px;

    border: 1px solid #fff;

    object-fit: cover;
}

.release-info {
    display: flex;
    flex: 1 1 200px;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
}

.stream-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.content section > .stream-links {
    margin-top: 14px;
}

.stream-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    border: 1px solid #fff;
    padding: 8px 14px;

    color: #fff;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.stream-button:hover {
    background: #fff;
    color: #000;
}

.stream-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;

    fill: currentColor;
}

@media (max-width: 480px) {
    body {
        place-items: start center;
        padding: 12px;
    }

    .page {
        padding: 12px;
    }

    header {
        align-items: flex-start;
    }
}
