/* Popup imagen ampliada */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-contenido {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border: 2px solid white;
  border-radius: 10px;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

/* Tarjeta de premios sin efectos de hover */
.premios-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
}
.premios-card::before,
.premios-card::after {
  content: none !important;
  background: none !important;
}
.premios-card .card-body,
.premios-card:hover .card-body {
  background: transparent !important;
}
.premios-card .d-flex.align-items-center.mb-2:hover {
  background-color: transparent;
  color: inherit;
}

/* Hover en imágenes de premios */
img.ms-auto:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Miniatura de imagen de premio */
.premio-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* Barra de progreso animada */
.progress-bar {
  transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(270deg, #0d6efd, #00c4ff);
  background-size: 200% 100%;
  animation: moveGradient 3s linear infinite;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes moveGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* (utilidades movidas a components.css) */
