/* Estilos del minijuego */
#game {
  text-align: center;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 1rem;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-area {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 1rem auto;
  border: 2px solid #ccc;
  border-radius: 10px;
  background: linear-gradient(135deg, #c2e9fb 0%, #e2fcff 100%);
  overflow: hidden;
}

.target {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #ff595e;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s;
}

.target:hover {
  transform: scale(1.2);
}

#score {
  font-size: 1.2rem;
  font-weight: bold;
}

/* --- Emoji pop --- */
.emoji-pop {
  position: absolute;
  font-size: 2.5rem;
  pointer-events: none;
  opacity: 0;
  animation: pop 600ms ease-out forwards;
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Estilos para la barra de navegación */
header {
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav a {
  margin: 0 1rem;
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}
