.snack-game-page {
  overflow-x: hidden;
}

.game-hero-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(420px, 1.5fr);
  gap: 18px;
  align-items: center;
}

.game-copy h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
}

.game-frame {
  display: grid;
  place-items: center;
}

#game {
  display: block;
  width: min(100%, 960px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 247, 238, 0.82);
  box-shadow: var(--shadow);
  touch-action: none;
}

@media (max-width: 940px) {
  .game-hero-section {
    grid-template-columns: 1fr;
  }
}
