.player-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 32px 0;
}

.player-heading h1 {
    font-size: 28px;
    margin: 0;
}

.player-heading > a {
    flex-shrink: 0;
    color: var(--accent);
}

.player-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 24px;
    align-items: start;
}

.video-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #050907;
    overflow: hidden;
    border-radius: 10px;
}

.video-stage video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-notice {
    position: absolute;
    inset: 0 0 44px;
    background: #05110eed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.video-notice > span {
    border: 1px solid #365b4b;
    color: var(--accent);
    display: grid;
    place-items: center;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
}

.video-notice h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.video-notice p {
    font-size: 14px;
    color: var(--muted);
}

.video-notice a {
    font-size: 14px;
    color: var(--accent);
}

.player-message {
    color: var(--muted);
    font-size: 13px;
    margin: 16px 0;
}

.player-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-block: 1px solid var(--line);
    padding: 15px 0;
    font-size: 14px;
}

.player-aside {
    background: var(--panel);
    border-radius: 10px;
    padding: 25px;
}

.player-aside h2 {
    font-size: 18px;
}

.player-aside > p {
    color: var(--muted);
    font-size: 14px;
}

.player-aside .section {
    margin: 25px 0 0;
}

.player-aside .section-head {
    display: block;
}

.player-aside .section-head span, .player-aside .muted {
    font-size: 12px;
}

.player-aside .episode {
    padding: 7px 12px;
}

.player-layout.wide {
    grid-template-columns: 1fr;
}

.player-layout.wide .player-aside {
    display: none;
}

@media (max-width: 900px) {
    .player-layout {
        grid-template-columns: 1fr;
    }

    .player-heading {
        display: block;
    }

    .player-heading h1 {
        font-size: 23px;
        margin-bottom: 14px;
    }
}

@media (max-width: 520px) {
    .video-notice {
        bottom: 38px;
        padding: 10px;
    }

    .video-notice > span {
        display: none;
    }

    .video-notice h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .video-notice p, .video-notice a {
        font-size: 12px;
        margin-bottom: 5px;
    }
}
