/* =============================================================
   pages/game.css — kleines Flugspiel (Easteregg im Footer)
   Übernommen aus der bisherigen Seite.
   ============================================================= */

.game { padding-block: 15px 10px; }
@media (min-width: 1025px) {
  .game > .container { padding-inline: 70px; }
}
.game .page-title { margin-bottom: 26px; text-align: left; }

.superplus-game-section {
  width: min(94vw, 520px);
  height: min(78vh, 760px);
  min-height: 560px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 0%, #2b2112 0%, #111 44%, #030303 100%);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 195, 80, 0.28);
  isolation: isolate;
  user-select: none;
  touch-action: manipulation;
}

.superplus-game-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 190, 60, 0.18), transparent 28%),
    radial-gradient(circle at 70% 35%, rgba(255, 110, 0, 0.12), transparent 26%);
  pointer-events: none;
  z-index: 0;
}

#superplusCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.sp-ui {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sp-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sp-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 215, 120, 0.28);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  font-weight: 900;
}

.sp-brand {
  color: #ffd873;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.sp-score {
  font-size: 15px;
  color: #fff;
}

.sp-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(88%, 410px);
  transform: translate(-50%, -50%);
  padding: 28px;
  border-radius: 30px;
  text-align: center;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 205, 100, 0.3);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}

.sp-menu img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 24px rgba(255, 176, 40, 0.38));
}

.sp-menu h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 9vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  background: linear-gradient(90deg, #fff3a8, #ffb72f, #c95a00);
  -webkit-background-clip: text;
  color: transparent;
}

.sp-menu p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.45;
}

.sp-menu button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 950;
  font-size: 15px;
  color: #160d00;
  background: linear-gradient(135deg, #fff18d, #ffb52d 48%, #c95a00);
  box-shadow: 0 16px 40px rgba(255, 170, 35, 0.3);
}

.sp-menu button:hover {
  transform: translateY(-1px);
}

.sp-small {
  margin-top: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .superplus-game-section {
    width: 94vw;
    height: 76vh;
    min-height: 520px;
    margin: 24px auto;
    border-radius: 28px;
  }

  .sp-menu {
    padding: 24px;
  }
}
