/* =========================
   GENERAL PAGE
========================= */
body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, sans-serif;
  text-align: center;
  color: white;
}

/* =========================
   HOME PAGE
========================= */

.home-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.home-container img {
  width: 100%;
  height: auto;
  display: block;
}
html,
body {
  overflow-x: hidden;
}
/* MENU GRID */
.menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: calc(100% - 24px);
  max-width: 430px;
  margin: 14px auto;
  padding: 0;
  box-sizing: border-box;
  grid-auto-rows: 54px;
}

/* BUTTON STYLE */
.menu-btn {
  background: linear-gradient(145deg, #00c853, #009624);
  color: white;
  text-decoration: none;
  width: 100%;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #00ff88;
  box-shadow: 0 4px 10px rgba(0, 255, 100, 0.4);
  transition: 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}

.menu-btn:visited {
  color: white;
}

.menu-btn:hover {
  background: linear-gradient(145deg, #00e676, #00c853);
  transform: scale(1.06);
  box-shadow:
    0 0 14px rgba(0, 255, 120, 0.8),
    0 0 28px rgba(0, 255, 120, 0.35);
}

/* =========================
   CONTENT PAGES (PSEPHIA, MUSIC, ETC)
========================= */

.page-content,
.home-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  min-height: 100vh;
  box-sizing: border-box;
}

.page-content h1,
.home-content h1 {
  font-size: 36px;
  margin-bottom: 25px;
}

.page-content h2,
.home-content h2 {
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-content p,
.home-content p {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* =========================
   ABOUT PAGE
========================= */

.about-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.about-container h1 {
  font-size: 36px;
  margin-bottom: 25px;
}

.about-container p {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   ARCADE PAGE
========================= */

.arcade-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 30px auto 0;
}

.arcade-game {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background: linear-gradient(145deg, #00c853, #009624);
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 12px;
  border: 2px solid #00ff88;
  box-shadow: 0 4px 10px rgba(0, 255, 100, 0.35);
  transition: 0.2s ease;
}

.arcade-game:visited {
  color: white;
}

.arcade-game:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 14px rgba(0, 255, 100, 0.5);
}

/* =========================
   LINKS
========================= */

.external-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 20px;
  color: #00ff88;
  font-weight: bold;
  text-decoration: none;
}

.external-link:hover {
  text-decoration: underline;
}

/* =========================
   CONTACT / FOOTER
========================= */

.contact-section {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 20px;
}

.contact-section a {
  color: #00ff88;
  text-decoration: none;
  font-weight: bold;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* =========================
   BACK BUTTON
========================= */

.back-button {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 10px 18px;
  background: linear-gradient(145deg, #00c853, #009624);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  border: 2px solid #00ff88;
  box-shadow: 0 4px 10px rgba(0, 255, 100, 0.35);
  transition: 0.2s ease;
}

.back-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 255, 100, 0.5);
}

.bottom-home {
  display: block;
  text-align: center;
  margin: 40px auto;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .menu {
    grid-template-columns: repeat(2, 1fr);
    max-width: 390px;
    padding: 10px;
  }

  .about-container h1,
  .page-content h1,
  .home-content h1 {
    font-size: 30px;
  }

  .about-container p,
  .page-content p,
  .home-content p {
    font-size: 19px;
    line-height: 1.6;
  }

  .contact-section {
    font-size: 18px;
  }
}
.scorecast-text {
  text-align: center;
  color: white;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 18px;
  padding: 0 20px;
  line-height: 1.4;
}
.music-cover {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}