/* =========================
   BALORO – GAMES PAGE
   PWA / MOBILE / TABLET / PC
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.menu-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(90,120,255,0.18), transparent 55%),
    radial-gradient(circle at top right, rgba(0,200,255,0.15), transparent 45%),
    linear-gradient(160deg, #0b0f1f, #11162e, #0a0d1a);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
}

/* PAGE TITLE */
.page-title {
  margin-top: 28px;
  margin-bottom: 22px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(120,150,255,0.4);
}

/* MAIN */
#menuPage {
  width: 100%;
  max-width: 420px;
  padding: 0 18px 24px;
  display: grid;
  gap: 16px;
}

/* BUTTONS */
.menu-btn {
  width: 100%;
  padding: 20px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 18px;
  border: 1px solid rgba(120,150,255,0.25);
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.04)
    );
  color: #ffffff;
  cursor: pointer;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.45),
    0 0 18px rgba(120,150,255,0.15);
  transition: transform .15s ease, box-shadow .15s ease;
}

.menu-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 45px rgba(0,0,0,0.55),
    0 0 28px rgba(120,160,255,0.35);
}

.menu-btn:active {
  transform: scale(0.95);
}

/* BACK BUTTON */
.back-btn {
  margin-top: 8px;
  opacity: 0.85;
  border-color: rgba(255,255,255,0.15);
}

/* TABLET */
@media (min-width: 600px) {
  #menuPage {
    max-width: 520px;
  }

  .menu-btn {
    font-size: 17px;
    padding: 22px;
  }
}

/* DESKTOP – APK FEEL */
@media (min-width: 1024px) {
  body.menu-page {
    max-width: 520px;
    margin: 0 auto;
  }
}
