.release-header {
    margin-top: 30px;
    display: flex;

    img {
        height: 461px;
    }

    > div {
        margin-top: 350px;
        margin-left: 30px;
        display: flex;
        width: 100%;

        > div:first-child {
            h1 {
                font-size: 60px;
                line-height: 1;
            }

            h3 {
                font-size: 30px;
                line-height: 1;
            }
        }

        > div:last-child {
            margin-left: auto;
            display: flex;
            flex-direction: column;
            text-align: right;
            color: var(--brand-accent);

            small {
                padding-top: 20px;
            }

            line-height: 1;

            p {
                font-size: 20px;
                font-weight: 200;
            }

            h4 {
                font-size: 30px;
                font-weight: 900;
                text-transform: uppercase;
            }
        }
    }
}


.release-content {
    margin-top: 40px;
    display: flex;

    .left {
        max-width: 850px;
        flex: 1;
    }

    .right {
        max-width: 512px;
        flex: 1;

        .header, .section>h1 {
            text-align: right;
        }

        .tracklist {
            .header {
                * {
                    text-transform: uppercase;
                }
                p {
                    font-size: 20px;
                    margin-bottom: 20px;
                }
            }
        }
    }
}

.track {
    align-items: stretch;
    justify-content: stretch;

    .track-position {
        background: var(--brand-accent);
        max-height: 999px;
        display: flex;
        width: 20px;
        padding: 0px;
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--col-d0);
        font-weight: 900;
    }

    .track-info {
        background: transparent;

        h4 {
            color: var(--brand-accent);
            font-size: 23px;

            span {
                font-size: 23px;
                color: white;
            }
        }

        small {
            color: #eee !important;
            font-weight: 900;
        }
    }

    .track-play {
        background: var(--brand-accent);
        height: auto;
    }
}

.osu {
    margin-top: 30px;
    margin-bottom: 30px;
    background: #ff66aa;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 24px;
    gap: 10px;
    font-weight: 900;

    i {
        font-size: 36px;
    }
}

.section iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    outline: 1px solid #333;
}

@media (max-width: 900px) {
    .center.description {
        font-size: 15px;
    }
    .release-header {
        flex-direction: column;
        img {
            aspect-ratio: 1/1;
            width: 100%;
            height: auto;
        }
        > div {
            margin: 0px;
            margin-top: 20px;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            >div:first-child {
                h1 {
                    font-size: 40px;
                }
            }
            >div:last-child {
                margin: 0px;
                margin-top: 20px;
                align-items: center;
            }
        }
    }
    .release-content {
        flex-direction: column-reverse;
        .right .section {
            >h1, >.header {
                text-align: left !important;
            }
        }
    }
}

body:has(.center.release.preorder) {
    canvas {
        filter: grayscale(100%) !important;
    }
    .center.release {
        &:before {
            content: "PREORDER";
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 140px;
            font-weight: 100;
            color: white;
            z-index: -1;
            opacity: 0.3;
        }
    }
}

/*# sourceMappingURL=release.css.map*/