 /*
Theme Name: Video Theme
Theme URI: https://www.facebook.com/soyrickyads/
Author: RICKY SAN CRISTOBAL
Author URI: https://www.facebook.com/soyrickyads/
Description: Un tema para agregar videos con enlace directo para trabajar con picositas
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}
video {
    width: 100%;
    height: auto;
}
.cta-button {
    display: none;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
}
/* Ocultar el título de la entrada */
.entry-title {
    display: none;
}
var player = videojs('mi-video');

player.on('timeupdate', function() {
  var currentTime = player.currentTime();
  if (currentTime > 20 && currentTime < 35) {
    // https://sauszhi.com/2098230 :
    var ad = document.createElement('div');
    ad.innerHTML = '<p>Tu anuncio aquí</p>';
    ad.style.position = 'absolute';
    ad.style.top = '50%';
    ad.style.left = '50%';
    ad.style.transform = 'translate(-50%, -50%)';
    ad.style.background = 'rgba(0,0,0,0.7)';
    ad.style.color = 'white';
    ad.style.padding = '20px';
    ad.style.zIndex = '1000';
    player.el().appendChild(ad);
  } else {
    // Si no está en el intervalo, asegúrate de quitar el anuncio si existe.
    var existingAd = document.getElementById('ad');
    if (existingAd) {
      existingAd.remove();
    }
  }
});
@media (max-width: 600px) {
    #contador {
        display: none;
    }
}

