.watch-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 18px 0 28px;
}

.watch-heading h1 {
    font-size: 30px;
    margin-bottom: 0;
}

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

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

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

.source-status {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: #080b12e8;
}

.source-icon {
    color: var(--accent);
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    background: #f6d44b14;
    border: 1px solid #f6d44b50;
    border-radius: 50%;
    margin-bottom: 18px;
}

.source-status h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.source-status p {
    color: #b2b7c0;
    font-size: 14px;
    max-width: 460px;
}

.player-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #202227;
    padding: 12px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    color: #aeb1ba;
}

.lights-button {
    color: var(--accent);
    background: #ffffff0c;
    padding: 7px 12px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 14px;
}

.play-notice {
    margin: 15px 0 28px;
    font-size: 14px;
    color: var(--muted);
}

.watch-aside {
    padding: 26px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.watch-aside h2 {
    font-size: 24px;
}

.watch-aside > p:not(.eyebrow) {
    color: #aeb3bc;
    font-size: 14px;
    line-height: 1.9;
}

body.cinema-mode {
    background: #000;
}

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

.cinema-mode .watch-aside {
    display: none;
}

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

@media (max-width: 760px) {
    .watch-heading {
        display: block;
    }

    .watch-heading h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .source-status {
        padding: 12px;
    }

    .source-icon {
        display: none;
    }

    .source-status h2 {
        font-size: 19px;
        margin-bottom: 7px;
    }

    .source-status p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .source-status .button {
        min-height: 35px;
        padding: 7px 15px;
        font-size: 12px;
    }
}
