.player-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin: 15px 0 25px;
}
.player-heading h1 {
    font-size: 28px;
    margin: 0;
}
.player-heading > span {
    white-space: nowrap;
    color: var(--muted);
    font-size: 14px;
}
.watch-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 290px;
    gap: 25px;
}
.watch-layout > * {
    min-width: 0;
}
.player-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #030405;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
}
video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.player-notice {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    background: #040711dc;
}
.player-notice > span {
    font-size: 45px;
    color: #ff667a;
}
.player-notice h2 {
    margin: 5px 0;
    font-size: 20px;
}
.player-notice p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 0;
}
.player-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 18px;
    background: #1a1e29;
    font-size: 14px;
}
.player-toolbar > span {
    color: #778093;
}
.play-tip {
    color: #949eb1;
    font-size: 13px;
    margin-top: 16px;
}
.watch-layout aside {
    background: #161a24;
    border-radius: 9px;
    padding: 24px;
}
.watch-layout aside .episodes {
    margin: 0 0 30px;
}
.watch-layout aside .section-head {
    display: block;
}
.watch-layout aside h2 {
    font-size: 20px;
}
.watch-layout aside p {
    color: #a3acbe;
    font-size: 14px;
}
@media (max-width: 1000px) {
    .watch-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 700px) {
    .player-heading {
        display: block;
    }
    .player-heading h1 {
        font-size: 23px;
        margin-bottom: 8px;
    }
    .player-notice > span {
        font-size: 25px;
    }
    .player-notice h2 {
        font-size: 17px;
    }
    .player-notice p {
        font-size: 12px;
    }
    .player-toolbar {
        padding: 14px 8px;
        font-size: 12px;
    }
}
