@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
  font-family: "Poppins", sans-serif;
  background-color: #000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}


.menu-tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  height: 100px;
  max-height: 100px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(10, 14, 27, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.menu-tab .video-title {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: #cfd8ff;
}

.menu-tab span {
  text-align: center;
}

.menu-tab:hover:not(.tab-active) {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.video-player {
  width: 100%;
  display: block;
  border-radius: 12px;
  background-color: #000;
}

.video-locked {
  filter: grayscale(1) brightness(0.7);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: radial-gradient(circle, rgba(0,0,0,0.45) 20%, rgba(0,0,0,0.8) 100%);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-pulse {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff16a, #ff8c42);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255, 155, 71, 0.5);
}

.play-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: pulse 1.8s infinite;
  border: 3px solid rgba(255, 222, 0, 0.2);
}

.play-pulse::after {
  content: '';
  border-left: 18px solid #0d1b2a;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.play-text {
  font-size: 0.9rem;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(10,14,27,0.9), rgba(10,14,27,0.5));
  border-radius: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

.locked-text {
  background: rgba(0,0,0,0.6);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.btn-cierre,.btn-cierre2,.btn-cierre3,.btn-cierre4{

    position: relative;
}
.btn-cierre::after,
.btn-cierre2::after,
.btn-cierre3::after,
.btn-cierre4::after{
    content: attr(data-date);
    position: absolute;
    background-color: #ff2600b3;
    top: 0;
    right: -50px;
    color: white;
    width: 200px;
    transform: rotate(17deg) ;
    text-align: center;
    padding: 3px;
    font-weight: bold;
    
}


.tab-active {
    background: linear-gradient(135deg, #fff16a 0%, #ffb347 45%, #ff8c42 100%) !important;
    color: #0d1b2a !important;
    box-shadow: 0 10px 25px rgba(255, 155, 71, 0.45);
    border-color: rgba(255, 255, 255, 0.25);
}

.tab-active .video-title {
    color: #7a3f00 !important;
    font-weight: bold;
}

a {
    background-color: #FFDE00 !important;
}
