/**
 * Shared Video Player Styles
 *
 * Click-to-play video functionality with glassmorphic play button
 * Used across Product Highlights, How It Works, and Hero Section modules
 */

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Video Poster Overlay */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Glassmorphic Play Button */
.play-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.play-button:hover {
    transform: scale(1.1);
    opacity: 1;
}

.play-button:focus {
    outline: 2px solid rgba(18, 28, 102, 0.5);
    outline-offset: 4px;
}

.play-button:active {
    transform: scale(0.95);
}

/* Play button SVG */
.play-button svg {
    display: block;
    width: 76px;
    height: 76px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Video Element */
[data-video] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}
