.player-block {
    width: 805px;
    height: 454px;
    border-radius: 15px;
    background: #0C0C0E;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.player-ad-panel {
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.player-ad-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}

.player-ad-card.no-link {
    cursor: default;
}

.player-ad-image {
    width: 140px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.player-ad-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.player-ad-label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
}

.player-ad-title {
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-top: 4px;
}

.player-ad-embed {
    width: 100%;
    min-height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(12, 12, 14, 0.7);
}

.player-ad-embed iframe {
    width: 100% !important;
    max-width: 100%;
    border: none;
}

.player-surface {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.player-surface.player-idle {
    cursor: none;
}

.player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    background: #000;
}

.player-video.active {
    display: block;
}

.player-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.player-placeholder-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}
