/* Estilos Otimizados para Video Player */
.video-poster {
    animation: fadeIn 0.6s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.video-poster:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.play-button {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15) !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4) !important;
}

.play-button:active {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

#video-player {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Compatibilidade com temas */
@media (prefers-reduced-motion: reduce) {
    .video-poster,
    .play-button,
    #video-player {
        animation: none;
        transition: none;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .play-button {
        width: 60px !important;
        height: 60px !important;
    }

    .play-button i {
        font-size: 24px !important;
    }
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
