.video-spotlight {
    padding: 100px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 15px 0;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-cover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    cursor: pointer;
    z-index: 10;
}

.video-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.video-cover:hover img {
    transform: scale(1.05);
}

/* Play Button Styling */
.play-button-outer {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.play-button-inner {
    width: 65px; height: 65px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-cover:hover .play-button-outer {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.video-iframe-container {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .video-spotlight { padding: 60px 0; }
    .play-button-outer { width: 70px; height: 70px; }
    .play-button-inner { width: 50px; height: 50px; }
}