/* Watch page: poster + manual play overlay (Auto Play off) */
.player-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.player-poster-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0a0a0f;
    cursor: pointer;
    z-index: 1;
}

.player-poster-bg {
    position: absolute;
    inset: 0;
    background-color: #121218;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: brightness(0.55);
}

.player-poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 16, 0.35) 0%,
        rgba(10, 10, 16, 0.55) 45%,
        rgba(10, 10, 16, 0.75) 100%
    );
    pointer-events: none;
}

.player-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 72px;
    height: 72px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    background: var(--accent-color, #ffbade);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.player-play-btn i {
    font-size: 26px;
    margin-left: 4px;
    line-height: 1;
}

.player-play-btn:hover,
.player-play-btn:focus {
    outline: none;
    transform: translate(-50%, -50%) scale(1.06);
    background: #fff;
    color: #111;
}

.player-play-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 186, 222, 0.55), 0 8px 28px rgba(0, 0, 0, 0.45);
}

@media (max-width: 575px) {
    .player-play-btn {
        width: 58px;
        height: 58px;
    }

    .player-play-btn i {
        font-size: 20px;
        margin-left: 3px;
    }
}
