/* ========== Load font with multiple formats for best support ========== */
@font-face {
  font-family: 'Thin Worms';
  src: url('Fonts/Thin Worms/MBThinWorms.woff2') format('woff2'),
       url('Fonts/Thin Worms/MBThinWorms.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Beautiful Horror';
  src: url('Fonts/Beautiful Horror/BeautifulHorror.woff2') format('woff2'),
       url('Fonts/Beautiful Horror/BeautifulHorror.woff') format('woff');
}
@font-face {
  font-family: 'Bank Printer';
  src: url('Fonts/Bank Printer/F25BankPrinter.woff2') format('woff2'),
       url('Fonts/Bank Printer/F25BankPrinter.woff') format('woff');
}
@font-face {
  font-family: 'Ledlight';
  src: url('Fonts/LED LIGHT/LEDLIGHT.woff2') format('woff2'),
       url('Fonts/LED LIGHT/LEDLIGHT.woff') format('woff');
}
@font-face {
  font-family: 'Paris';
  src: url('Fonts/Paris/Parisienne.woff2') format('woff2'),
       url('Fonts/Paris/Parisienne.woff') format('woff');
}
@font-face {
  font-family: 'Wartext';
  src: url('Fonts/Wartext/WarText.woff2') format('woff2'),
       url('Fonts/Wartext/Wartext.woff') format('woff');
}
@font-face {
  font-family: 'Frusciante';
  src: url('Fonts/Hand/FruscianteHand.woff2') format('woff2'),
       url('Fonts/Hand/FruscianteHand.woff') format('woff');
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fullscreen background like home */
body {
  font-family: sans-serif;
  background: url('GIF/PS2bg%20copy.gif') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Center box */
.landing-box {
  background-color: rgba(57, 61, 52, 0.8); /* semi-transparent dark */
  padding: 2rem;
  width: 320px;
  text-align: center;
  border-radius: 4px;
  font-family: Bank Printer, sans-serif;
  line-height: 1.4;
  font-size: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

/* Enter button */
.enter-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.2rem 1rem;
  background-color: rgba(133, 195, 159, 0.3);
  color: #85c39f;
  border: 2px solid #85c39f;
  border-radius: 2px;
  text-decoration: none;
  font-family: Bank Printer, sans-serif;
  transition: 0.3s;
}

.enter-btn:hover {
  background-color: #b711b14d;
  color: #b711b1;
  border-color: #b711b14d;
}