@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@500&display=swap');

body {
  margin: 0;
  padding: 0;
  background: #0f0f1b;
  color: #39ff14;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2em;
  max-width: 600px;
}

header h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.5rem;
  color: #00ffcc;
  margin-bottom: 0.2em;
}

h2 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2em;
}

h3 {
  font-size: .75 rem;
  color: #ffff00;
  margin-bottom: 2em;
}

h4 {
  font-size: .5 rem;
  color: #ff00cc;
  margin-bottom: 2em;
}

.tagline {
  font-size: 1rem;
  color: #ff00cc;
  margin-bottom: 2em;
}

.link-list a {
  display: block;
  background: linear-gradient(145deg, #1f0033, #33004d);
  color: #fff;
  text-decoration: none;
  margin: 1em auto;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 0 12px #ff00cc88;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.link-list a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #00ffcccc, 0 0 12px #ff00ccaa;
}

footer {
  margin-top: 3em;
  font-size: 0.8rem;
  color: #888;
}

footer a {
  color: #00ffcc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}