html {
    background: #0a0a0a;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Shippori Mincho B1", serif;
    color: #f0f0f0;
    --play: running;
}

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

a:hover {
    color: #ffffff;
}

@keyframes blink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes fog1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, -6%) scale(1.25);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes fog2 {
    0% {
        transform: translate(8%, 10%) scale(1.15);
    }

    50% {
        transform: translate(-12%, -8%) scale(0.85);
    }

    100% {
        transform: translate(8%, 10%) scale(1.15);
    }
}

@keyframes fog3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-8%, 14%) scale(1.35);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.fog {
    position: fixed;
    inset: -20%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.fog-blob {
    position: absolute;
    border-radius: 50%;
    animation-play-state: var(--play);
}

.fog-blob-one {
    top: 6%;
    left: 10%;
    width: 58vw;
    height: 58vw;
    background: radial-gradient(circle, rgba(215, 219, 230, 0.12) 0%, rgba(215, 219, 230, 0) 65%);
    animation: fog1 52s ease-in-out infinite;
    animation-play-state: var(--play);
}

.fog-blob-two {
    right: 6%;
    bottom: 4%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(238, 238, 242, 0.1) 0%, rgba(238, 238, 242, 0) 65%);
    animation: fog2 67s ease-in-out infinite;
    animation-play-state: var(--play);
}

.fog-blob-three {
    top: 38%;
    left: 42%;
    width: 46vw;
    height: 46vw;
    background: radial-gradient(circle, rgba(198, 205, 224, 0.11) 0%, rgba(198, 205, 224, 0) 65%);
    animation: fog3 43s ease-in-out infinite;
    animation-play-state: var(--play);
}

.release-page {
    height: 100dvh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.masthead {
    padding: 16px clamp(20px, 5vw, 44px) 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    flex: none;
}

.masthead-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font: 700 14px "Shippori Mincho B1", serif;
    color: #f0f0f0;
    letter-spacing: 0.1em;
}

.brand-name {
    font: 400 11px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.6);
    letter-spacing: 0.22em;
}

.site-link {
    font: 400 11px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.45);
    letter-spacing: 0.14em;
    transition: color 0.3s;
}

.site-link:hover,
.policy-link:hover {
    color: #ffffff;
}

.morph-title {
    margin-top: 14px;
    overflow: hidden;
    font: 400 clamp(26px, 4.5vw, 58px) / 1.1 "Shippori Mincho B1", serif;
    color: #f0f0f0;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.morph-cursor {
    display: inline-block;
    width: 0.42em;
    height: 0.07em;
    margin-left: 0.06em;
    background: #f0f0f0;
    vertical-align: baseline;
    animation: blink 1.1s step-end infinite;
    animation-play-state: var(--play);
}

.release-main {
    flex: 1;
    min-height: 0;
    display: grid;
    align-content: stretch;
    grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.jacket-cell {
    position: relative;
    min-height: min(46vh, 420px);
    aspect-ratio: auto;
    overflow: hidden;
    container-type: size;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: repeating-linear-gradient(45deg, #1c1c1c 0 12px, #161616 12px 24px);
}

.jacket-frame {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.jacket-image {
    width: min(100%, 100cqh);
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.jacket-placeholder {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font: 400 10px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.5);
}

.release-type {
    position: absolute;
    top: 16px;
    left: 20px;
    padding: 5px 10px;
    background: rgba(10, 10, 10, 0.55);
    font: 400 10px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.75);
    letter-spacing: 0.25em;
}

.info-column {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
    padding: 26px clamp(20px, 4vw, 40px) 30px;
}

.section-heading {
    margin-bottom: 8px;
    font: 400 10px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 0.25em;
}

.video-heading {
    margin-bottom: 10px;
}

.youtube-wrapper {
    position: relative;
    max-width: 440px;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0a0a0a;
}

.youtube-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    column-gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.release-link {
    display: grid;
    grid-template-columns: 36px 1fr 20px;
    align-items: center;
    padding: 9px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font: 400 13px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.75);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.release-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.release-link-icon {
    padding-left: 2px;
    font-size: 15px;
    opacity: 0.55;
}

.release-link-name {
    letter-spacing: 0.06em;
}

.release-link-arrow {
    text-align: right;
    opacity: 0.4;
}

.release-footer {
    flex: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px clamp(20px, 5vw, 44px);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-mark {
    padding: 4px 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font: 700 13px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.5);
}

.footer-name {
    font: 400 11px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.5);
    letter-spacing: 0.18em;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 26px;
    font: 400 10px "Shippori Mincho B1", serif;
    color: rgba(240, 240, 240, 0.3);
    letter-spacing: 0.14em;
}

.policy-link {
    color: rgba(240, 240, 240, 0.4);
}

@media (max-width: 960px) {
    .release-page {
        height: auto;
        overflow: visible;
    }

    .release-main {
        align-content: start;
    }

    .jacket-cell {
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .info-column {
        overflow-y: visible;
        padding-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body {
        --play: paused;
    }
}
