    /* Estilos simplificados para o player */
    .video-container {
        max-width: 800px;
        margin: 0 auto 60px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        position: relative;
        background-color: #f5f5f5;
        aspect-ratio: 16/9;
    }
    
    #leaper-video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    
    .video-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background-color: #F18F1C;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(241, 143, 28, 0.4);
        z-index: 10;
    }
    
    .video-play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 25px solid white;
        margin-left: 5px;
    }
    
    @media (max-width: 768px) {
        .video-play-button {
            width: 60px;
            height: 60px;
        }
        
        .video-play-button::after {
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            border-left: 20px solid white;
        }
    }
    
    @media (max-width: 576px) {
        .video-play-button {
            width: 50px;
            height: 50px;
        }
        
        .video-play-button::after {
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 16px solid white;
        }
    }