/* Video/CTA Section Block Styles */
.video-cta-section {
    position: relative;
    overflow: hidden;
}

.video-cta-section.bg-overlay::before {
    background: rgba(0, 0, 0, 0.4);
}

/* Play button styles */
.btn-play {
    position: relative;
    z-index: 2;
}

.btn-play .icn-caret-right {
    margin-left: 2px;
}

/* CTA button styles */
.video-cta-section .btn-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    transition: all 0.3s ease;
}

.video-cta-section .btn-white:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Text styling */
.video-cta-section h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-cta-section p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-cta-section .container {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .video-cta-section h2 {
        font-size: 1.75rem !important;
    }
    
    .video-cta-section .btn-circle {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Animation support */
.video-cta-section [data-cues] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.video-cta-section [data-cues].animate {
    opacity: 1;
    transform: translateY(0);
}