/* =========================
   GLOBAL
========================= */

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  height: 100%;
  overflow: hidden;
  font-family: "Press Start 2P", monospace;
}

#home {
  height: 100vh;
  width: 100vw;
}

/* =========================
   HERO
========================= */

#hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* Hero images */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.hero-mobile { display: none; }
.hero-desktop { display: block; }

@media (max-width: 900px) {
  .hero-desktop { display: none; }
  .hero-mobile { display: block; }
}

/* ❌ Removed vignette + scanlines per your request */
/*
.hero-vignette { display: none; }
#hero::after { display: none; }
*/

/* =========================
   BUTTON GRID (2x2, BOTTOM CENTER)
========================= */

.hero-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4%;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 220px));
  gap: 14px 18px;
  z-index: 10;
}

@media (max-width: 900px) {
  .hero-nav {
    bottom: 4%;
    grid-template-columns: repeat(2, minmax(140px, 200px));
    gap: 12px 14px;
  }
}

/* =========================
   RETRO NEON BUTTONS (GLOBAL)
========================= */

.retro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;

  /* DEFAULT: CYAN */
  color: #00ffff;
  background: rgba(0,0,0,0.55);

  border: 3px solid #00ffff;
  border-radius: 999px;
  padding: 14px 18px;

  font-size: 13px;
  line-height: 1;

  box-shadow:
    0 0 10px rgba(0,255,255,0.9),
    inset 0 0 10px rgba(0,255,255,0.35);

  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}

/* HOVER: PINK (ALL PAGES) */
.retro-btn:hover {
  transform: translateY(-1px);
  color: #ff4df2;
  border-color: #ff4df2;
  box-shadow:
    0 0 14px rgba(255,77,242,0.95),
    inset 0 0 12px rgba(255,77,242,0.35);
}

.retro-btn:active {
  transform: translateY(0);
}

/* Original square artwork recovered; retain the whole image on every screen. */
#home, #hero { height: 100dvh; }
.hero-img { object-position: center; }
.hero-nav { max-width: calc(100vw - 32px); }
.hero-nav .retro-btn { padding:14px 8px; font-size:11px; letter-spacing:.5px; }
.retro-btn:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
@media (max-width: 380px) {
  .hero-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 32px); }
  .retro-btn { font-size: 10px; padding: 14px 8px; }
}
