/* === SECCIÓN DE JUEGOS === */
.contenedor-juegos {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

.contenedor-juegos h1 {
  text-align: center;
  margin-bottom: 30px;
}

.grid-juegos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.juego-card {
  background-color: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.juego-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.juego-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.info-juego {
  padding: 10px 12px;
}

.titulo-juego {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  margin-bottom: 5px;
}

.titulo-juego:hover {
  color: #00b0ff;
}

.info-juego .fecha {
  color: #aaa;
  font-size: 0.85rem;
}

.info-juego .nota {
  color: #ccc;
  font-size: 0.85rem;
}

.info-juego .nota span {
  font-weight: bold;
  color: #00b0ff;
}
