/* Video Sync Player - Styles */

/* Video Container */
.video-sync-player {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    background: #000;
}

.video-sync-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Timestamp Links (Anchor links with #vts: hash) */
a[href^="#vts:"] {
    color: #ff5252;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color 0.2s ease;
}

a[href^="#vts:"]:hover {
    color: #d32f2f;
}

a[href^="#vts:"]:active {
    color: #b71c1c;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .video-sync-player {
        margin: 1.5rem 0;
        border-radius: 4px;
    }
}