.watch-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}
.watch-heading h1 {
    font-size: 28px;
    margin-top: 9px;
}
.watch-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
    align-items: start;
}
.watch-layout > div {
    min-width: 0;
}
.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 9px;
    overflow: hidden;
}
.video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}
.play-status {
    padding: 14px 17px;
    margin: 12px 0;
    background: var(--surface);
    border-left: 2px solid var(--accent);
    color: #c5cbd4;
    font-size: 14px;
}
.player-toolbar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
}
.watch-aside {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 9px;
    padding: 24px;
}
.watch-aside h2 {
    font-size: 23px;
}
.watch-aside p {
    color: var(--muted);
    margin: 14px 0;
    font-size: 14px;
}
.watch-aside .episode {
    padding: 10px 16px;
}
@media (max-width: 1000px) {
    .watch-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 650px) {
    .watch-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .watch-heading h1 {
        font-size: 23px;
    }
    .player-toolbar .button {
        padding: 10px 14px;
        font-size: 13px;
    }
}
