/* ===========================
   META INFO (T¨ªtulo + Fecha)
   =========================== */
.sc2k-meta {
  margin-bottom: 12px;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Press Start 2P', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}
.sc2k-meta .live {
  color: #ff4444;
  font-weight: 700;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ===========================
   LOADER RETRO-DORADO
   =========================== */
.sc2k-loader {
  text-align: center;
  font-family: 'Press Start 2P', system-ui, sans-serif;
  font-size: 14px;
  color: #D4AF37;
  padding: 20px;
  margin: 20px auto;
  background: #111;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.sc2k-loader::after {
  content: "";
  display: inline-block;
  width: 16px; height: 16px; margin-left: 8px;
  border: 2px solid #D4AF37; border-top-color: transparent;
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===========================
   PLAYER + MINIATURA + OVERLAY
   =========================== */
.twitch-player {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.twitch-player iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 12px;
}
.twitch-thumb {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #D4AF37;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
  pointer-events: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (min-width:1024px) {
  .twitch-player { aspect-ratio: 16 / 9; max-height: 480px; }
}
@media (max-width:768px) {
  .twitch-player { aspect-ratio: 16 / 9; max-height: 55vh; }
}

/* ===========================
   SWIPER PAGINATION
   =========================== */
.swiper-pagination {
  position: relative !important;
  margin-top: 16px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: #444;
  opacity: 1;
  border: 2px solid #D4AF37;
  width: 12px; height: 12px;
  margin: 0 6px !important;
  transition: background 0.3s, transform 0.3s;
}
.swiper-pagination-bullet-active {
  background: #D4AF37;
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(212,175,55,0.8);
}

/* ===========================
   PR¨®XIMA EMISI¨®N
   =========================== */
.sc2k-next-stream {
  margin-top: 24px;
  text-align: center;
  padding: 14px 20px;
  background: #222;
  color: #fff;
  border-radius: 12px;
  font-family: 'Press Start 2P', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 0 12px rgba(212,175,55,0.7);
}
.sc2k-next-stream span {
  color: #D4AF37;
  font-weight: 700;
}
