.schink-player-wrap {
    max-width: 900px;
    margin: 12px auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.schink-player-inner { width: 100%; height: 100%; position: relative; }

.schink-player-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none; /* We'll control interactions via overlay and API */
}

/* Centered play button */
.schink-player-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 100%);
    transition: opacity 200ms ease;
}

.schink-player-play {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.18);
    position: relative;
    cursor: pointer;
    outline: none;
}

.schink-player-play::after {
    content: '';
    position: absolute;
    left: 30%;
    top: 22%;
    width: 0;
    height: 0;
    border-left: 18px solid rgba(255,255,255,0.95);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Overlay that captures clicks to prevent opening YouTube */
.schink-player-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    /* Transparent but captures pointer events */
    background: rgba(0,0,0,0.0);
    touch-action: none;
}

/* When playing hide placeholder */
.schink-playing .schink-player-placeholder { opacity: 0; pointer-events: none; }

/* Small responsive tweaks */
@media (max-width: 600px) {
    .schink-player-play { width: 60px; height: 60px; }
    .schink-player-play::after { left: 34%; border-left-width: 14px; border-top-width: 10px; border-bottom-width: 10px; }
}
