body {
  margin: 0;
  padding: 0;
  background-image: url('madera.png');
  background-size: cover;
  background-position: center;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#titulo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

#titulo-principal {
  background-color: #182e0e;
  color: #FFD700;
  font-size: 48px;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 2;
}

#subtitulo {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #A8E6A3;
  color: #282411;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 1;
}

#tiempo {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  padding: 8px 16px;
  border-radius: 10px;
  margin-top: 10px;
}

#mesa {
  position: relative;
  width: 95%;
  max-width: 700px;
  aspect-ratio: 3 / 2;
  background-color: #D2B48C;
  border: 4px solid #5C4033;
  border-radius: 12px;
  margin: 20px 0;
  overflow: hidden;
}

#masa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.colocado {
  position: absolute;
  width: 30%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

#zona-ingredientes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  max-width: 700px;
}

.ingrediente {
  width: 100px;
  height: auto;
  cursor: grab;
}

#btn-horno {
  background-color: #4CAF50;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin: 20px;
  cursor: pointer;
}

#quiz-container {
  display: none;
  max-width: 700px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #333;
}

.opcion-btn {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  cursor: pointer;
  text-align: left;
}

.opcion-btn:hover {
  background-color: #e0e0e0;
}

.siguiente-btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  background-color: #7FCB5B;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .ingrediente {
    width: 80px;
  }
  .colocado {
    width: 40%;
  }
}