body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #fceabb, #f8b500); /* Volvemos al degradado anterior */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

h1 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px #f48c06;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
}

.game-button,
.extra-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.game-button:hover {
  background-color: #d0f0c0;
  transform: scale(1.05);
}

.extra-button {
  background-color: #ff6f61;
  color: white;
}

.extra-button:hover {
  background-color: #ff3b2e;
  transform: scale(1.05);
}

/* Efecto presionar */
.game-button:active,
.extra-button:active {
  transform: scale(0.97);
}

/* Coming soon message más pequeño */
.coming-soon {
  background-color: #000;
  color: #ffb6c1; /* Rosa pastel por defecto */
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 20px;
  font-size: 15px; /* Tamaño reducido */
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  animation: fadeIn 0.4s ease-in-out;
}

/* Colores pastel aleatorios */
.pastel-1 { color: #ffb6c1; }
.pastel-2 { color: #a1c4fd; }
.pastel-3 { color: #c1f0f6; }
.pastel-4 { color: #ffd6a5; }
.pastel-5 { color: #d0f0c0; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .game-button,
  .extra-button {
    height: 80px;
    font-size: 0.9em;
  }
}
