/* General */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;

  /* Fondo GIF animado */
  background-image: url('https://i.imgur.com/NuNaWjo.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* Barra superior */
header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.logo img {
  height: 40px;
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-container input {
  padding: 0.4rem;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-container svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Contenido */
.container {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Tarjetas de juegos */
.game-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid white;
  border-radius: 10px;
  padding: 1rem;
  max-width: 240px;
  text-decoration: none;
  color: white;
  transition: transform 0.2s;
  overflow: hidden;
}

.game-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.game-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.game-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.game-info p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* NUEVO: Estilo para el cuadro principal del juego */
.game-container {
  max-width: 900px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Título del juego */
.game-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

/* Imagen del juego */
.game-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Descripción del juego */
.game-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ddd;
  margin: 0;
  padding: 0 10px;
  text-align: justify;
}

/* Zona de anuncio */
.ad-zone {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Botones de descarga */
.download-zone {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.download-button {
  background-color: #0099ff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #007acc;
}
