/* Estilos específicos para o player do Bunny.net */
.video-player {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
}
.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Estilos para layout em tela cheia */
.video-page {
    max-width: 100%;
    width: 100%;
}

.video-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .video-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .video-container {
        max-width: 95%;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .video-container {
        max-width: 90%;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .video-container {
        max-width: 100%;
        padding: 0 5px;
    }
} 