.game-mount {
  border-radius: 8px;
  border: 1px solid rgba(181, 34, 27, 0.18);
  background: rgba(255, 248, 232, 0.9);
  box-shadow: var(--shadow);
  padding: 14px;
  min-height: 0;
}

.wake-stage,
.eye-stage {
  position: relative;
  min-height: clamp(178px, 31svh, 250px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 224, 148, 0.62), transparent 42%),
    linear-gradient(180deg, #651611, #240907);
}

.wake-lion {
  width: auto;
  max-width: min(76%, 340px);
  max-height: min(220px, 27svh);
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.24s ease;
}

.wake-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 232, 123, 0.62), transparent 62%);
  opacity: 0.12;
  pointer-events: none;
}

.drum-button {
  width: min(40vw, 148px);
  margin: 10px auto 8px;
  display: block;
  border-radius: 50%;
  background: transparent;
}

.drum-button img { width: 100%; }
.drum-button:disabled { opacity: 0.78; color: var(--deep-red); font-weight: 900; }

.drum-game.is-hit .drum-button,
.drum-game.is-hit .wake-stage {
  animation: drumHit 0.18s ease;
}

.game-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(99, 18, 15, 0.14);
}

.game-progress span {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transition: transform 0.22s ease;
}

.game-message {
  margin: 9px 0 0;
  color: var(--deep-red);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.eye-lion-wrap {
  position: relative;
  width: min(86%, 380px, 29svh);
  display: grid;
  place-items: center;
}

.eye-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92);
  transition: filter 0.32s ease, transform 0.32s ease;
}

.dot-hotspot {
  position: absolute;
  width: 15%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 230, 120, 0.1);
}

.dot-hotspot::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, #fff7b2, rgba(255, 196, 44, 0.72), transparent 72%);
  box-shadow: 0 0 28px rgba(255, 221, 84, 0.9);
}

.dot-hotspot.is-lit::after { opacity: 1; }
.dot-hotspot--left-eye { left: 31.5%; top: 46.5%; }
.dot-hotspot--right-eye { left: 53.5%; top: 46.5%; }
.dot-hotspot--forehead { left: 42.5%; top: 24%; }
.dot-hotspot--mouth { left: 42.5%; top: 61%; }

.dot-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.dot-list li {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(99, 18, 15, 0.06);
}

.dot-list li.is-lit {
  color: var(--deep-red);
  background: rgba(255, 222, 130, 0.52);
  font-weight: 900;
}

.eye-stage.is-awake img {
  filter: brightness(1.18) saturate(1.28);
  transform: scale(1.02);
}

.eye-stage.is-wrong { animation: wrongTap 0.18s ease; }

@keyframes drumHit {
  50% { transform: scale(0.985); }
}

@keyframes wrongTap {
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@media (min-width: 760px) {
  .scene--game .scene__inner {
    gap: 10px;
  }

  .scene--game .scene__text {
    padding: 13px 18px;
  }

  .scene--game .scene__text h1 {
    font-size: clamp(2.1rem, 6vw, 3.8rem);
  }

  .scene--game .scene__text p {
    margin-top: 0.48rem;
    font-size: 1rem;
    line-height: 1.36;
  }

  .game-mount {
    padding: 12px;
  }

  .wake-stage,
  .eye-stage {
    min-height: 220px;
  }

  .dot-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dot-list li {
    padding: 8px 10px;
    font-size: 0.92rem;
  }
}

@media (max-height: 760px) and (min-width: 760px) {
  .scene--game .scene__meta {
    display: none;
  }

  .scene--game .scene__text h1 {
    font-size: 3rem;
  }

  .wake-stage,
  .eye-stage {
    min-height: 190px;
  }

  .eye-lion-wrap {
    width: min(74%, 330px, 29svh);
  }

  .drum-button {
    width: 118px;
    margin-block: 8px 6px;
  }
}
