
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #f9f3ea;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 20px;
}

#zona-juego {
  margin-top: 20px;
  width: 90%;
  max-width: 400px;
  height: 240px;
  background: #fff;
  border: 2px dashed #bbb;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circulo {
  width: 50px;
  height: 50px;
  background-color: #e74c3c;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
}

button {
  background-color: #d280a2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  padding: 30px;
  text-align: center;
  z-index: 1000;
  display: none;
  max-width: 80%;
}

.modal.active {
  display: block;
}
