/* Widget de ofertas flash por juego — se inserta en la sección #reserva de
   la página del juego cuando hay ofertas activas para ESE game_id. */

.vi-go-wrap {
  max-width: 780px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(204,26,26,0.10), rgba(232,201,122,0.08));
  border: 1px solid rgba(232,201,122,0.4);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(204,26,26,0.15);
}
.vi-go-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8c97a;
  margin-bottom: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vi-go-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.vi-go-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(15,15,20,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid #cc1a1a;
  color: #f0ede4;
  padding: 0.85rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.vi-go-card:hover {
  background: rgba(30,20,20,0.95);
  border-left-color: #e8c97a;
  transform: translateX(3px);
}
.vi-go-when {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0ede4;
  flex: 1;
  min-width: 0;
}
.vi-go-when-time {
  color: #c8a96e;
  font-weight: 500;
}
.vi-go-msg {
  font-size: 0.76rem;
  color: rgba(240,237,228,0.7);
  display: block;
  margin-top: 3px;
  font-weight: 400;
}
.vi-go-disc {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: #cc1a1a;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.vi-go-cta {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8c97a;
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 700px) {
  .vi-go-wrap { padding: 1rem 1.1rem; margin: 0 1rem 1.5rem; }
  .vi-go-title { font-size: 0.68rem; }
  .vi-go-card { padding: 0.75rem 0.9rem; }
  .vi-go-when { font-size: 0.82rem; }
  .vi-go-disc { font-size: 1.15rem; }
}
