body {
  background: #2b1d16; /* marrón oscuro tipo tierra */
  margin: 0;
  color: #f5f0e6; /* beige claro para buena legibilidad */
  font-family: 'Segoe UI', sans-serif;
  height: 90vh;
  display: flex;
  flex-direction: column;
}

.main-layout {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 90vh;
  gap: 2rem;
  padding-bottom: 2rem;
}

.info-panel {
  width: 30%;
  padding: 5%;
  background: linear-gradient(135deg, #4b2e1e, #301508); /* degradado tierra cálido */
  border-radius: 2rem; /* más redondeado */
  overflow-y: auto;
  color: #f5f0e6; /* beige claro para contraste */
  font-family: 'Merriweather', serif; /* fuente elegante y natural */
  font-size: 1.1rem; /* texto más grande para lectura cómoda */
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.4); /* profundidad suave */
}

/* Título dentro del panel */
.info-panel h1, .info-panel h2 {
  font-size: 5rem; /* título más grande */
  margin-bottom: 1rem;
  color: #ffe4b5; /* tono cálido tipo mantequilla */
  font-family: 'Merriweather', serif;
  text-align: center;
}

.animation-area {
  width: 70%;
  padding: 2%;
  background: #1f140f; /* marrón muy oscuro */
  border: 0.2rem dashed #6b4f3b; /* tono madera */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  overflow: hidden;
}

.animation-area img {
  max-width: 80%;
  max-height: 80%;
}

.revolver-container {
  height: 10vh;
  width: 100%;
  margin-bottom: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #3e2a20;
  border-top: 0.2rem solid #6b4f3b;
}

.revolver {
  width: 10vw;
  height: 10vw;
  position: relative;
  transform-style: preserve-3d;
}

.option {
  position: absolute;
  width: 75%;
  height: 75%;
  left: 12.5%;
  top: 12.5%;
  background: radial-gradient(circle at center, #a68c6d, #3e2a20); /* degradado cálido */
  border: 0.3rem solid #c2b49a; /* borde claro tipo arena */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.option img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  pointer-events: none;
}

.option.active {
  box-shadow: 0 0 1.5rem #ffd700; /* dorado suave */
  transform: scale(1.1);
}
