/* Video Section */
.video-section {
    padding: var(--spacing-section) 0;
    background-color: white;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: #000;
    /* Fallback for loading */
    aspect-ratio: 16/9;
}

.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video-link:hover .video-thumbnail {
    opacity: 0.8;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    /* YouTube Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.play-button-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 5px;
}

.video-link:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}