/*
Theme Name: Vevo Play Wp theme
Theme URI: https://example.com
Author: Jairo Santana
Description: Tema basado en HTML con reproductor de video.
Version: 1.0
Text Domain: vevo-play-theme
*/
body {
    margin: 0;
    padding: 0;
    background-color: #141414;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    margin: 0 auto;
    background-color: #252525;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.seccion-publicidad,
.seccion-publicidad-bottom {
    height: 80px;
    background: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.seccion-publicidad {
    margin-bottom: 20px;
}

.seccion-publicidad-bottom {
    margin-top: 20px;
}

.seccion-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    text-align: center;

}

.botones-contenido {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;

}

.img-boton {
    width: 120px;
    height: 120px;
    background: #ddd;
    border-radius: 10px;
    border: 2px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#btnVerVideo {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

#btnVerVideo:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#temporizador {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Barra de progreso */
.progress-container {
    width: 250px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
    display: none;
    /* Se muestra al iniciar */
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #007BFF;
    transition: width 1s linear;
}

/* Estilos para el botón */
.telegram-button {
    display: inline-block;
    background-color: #0a507c;
    /* Color de fondo del botón */
    color: #ffffff;
    /* Color del texto del botón */
    padding: 10px 20px;
    /* Espacio alrededor del texto */
    font-size: 16px;
    /* Tamaño del texto */
    text-decoration: none;
    /* Sin subrayado en el texto */
    border-radius: 5px;
    /* Bordes redondeados */
    border: none;
    /* Sin borde */
    cursor: pointer;
    /* Cursor al pasar sobre el botón */
}

/* Estilos para el logo de Facebook */
.telegram-logo {
    width: 30px;
    /* Tamaño del logo */
    vertical-align: middle;
    /* Alinear verticalmente con el texto */
    margin-right: 10px;
    /* Espacio a la derecha del logo */
}

/* Estilos para el botón */
.facebook-button {
    display: inline-block;
    background-color: #00ad03;
    /* Color de fondo del botón */
    color: #ffffff;
    /* Color del texto del botón */
    padding: 10px 20px;
    /* Espacio alrededor del texto */
    font-size: 16px;
    /* Tamaño del texto */
    text-decoration: none;
    /* Sin subrayado en el texto */
    border-radius: 5px;
    /* Bordes redondeados */
    border: none;
    /* Sin borde */
    cursor: pointer;
    /* Cursor al pasar sobre el botón */
}

/* Estilos para el logo de Facebook */
.facebook-logo {
    width: 30px;
    /* Tamaño del logo */
    vertical-align: middle;
    /* Alinear verticalmente con el texto */
    margin-right: 10px;
    /* Espacio a la derecha del logo */
}

.imagen-animada {
    animation: moverArribaAbajo 2s ease-in-out infinite;
}

/* Animación */
@keyframes moverArribaAbajo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* Ajusta la altura del movimiento */
    }

    100% {
        transform: translateY(0);
    }
}

#btnPlay img {
    width: 55px;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* relación 16:9 */
    height: 0;

    overflow: hidden;
    border-radius: 10px;
    /* opcional */
}

.video-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    height: 100%;
    object-fit: cover;
}