.video-shell {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020305;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    position: relative;
}

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

.player-notice {
    border-left: 3px solid var(--accent);
    margin: 20px 0;
    background: var(--panel);
    padding: 15px 20px;
    color: #bac4d4;
    font-size: 14px;
}

.player-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.player-nav .disabled {
    opacity: .45;
    cursor: default;
}

.player-heading {
    font-size: clamp(24px, 3vw, 34px);
}
