/* === Kev's Vector Arcade Styles === */

body {
  margin: 0;
  padding: 0;
  background: black;
  color: lime;
  font-family: 'Courier New', monospace;
}

h1, h2, .title {
  color: cyan;
  text-shadow: 0 0 6px lime;
  font-size: 2em;
  margin: 0.5em 0;
  text-align: center;
}

a {
  color: lime;
  text-decoration: none;
}

a:hover {
  color: black;
  background: lime;
}

.splash-screen {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.left-panel, .right-panel {
  flex: 1;
  padding: 2em;
  box-sizing: border-box;
}

.left-panel {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.right-panel {
  background-color: #111;
  overflow-y: auto;
}

.hero-img {
  width: 80%;
  max-width: 240px;
  margin: 1em 0;
}

.enter-button {
  background: darkgreen;
  color: white;
  padding: 1em 2em;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 1.2em;
  margin: 1em 0;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  display: inline-block;
}

.enter-button:hover {
  background: lime;
  color: black;
}

.footer-logo {
  font-size: 0.9em;
  margin-top: 2em;
  text-align: center;
}

.footer-img {
  width: 120px;
  margin-top: 1em;
}

.speech-bubble {
  background: lime;
  color: black;
  padding: 0.6em 1em;
  border-radius: 12px;
  font-weight: bold;
  margin: 1em;
  max-width: 80%;
  text-align: center;
}

.options-title {
  font-size: 1.5em;
  color: lime;
  text-align: center;
  margin-bottom: 1em;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1em;
  padding: 1em;
}

.game-link {
  background: darkgreen;
  color: white;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s;
}

.game-link:hover {
  background: lime;
  color: black;
}
@media (max-width: 600px) {
  body {
    font-size: 1.1em;
    padding: 1em;
  }

  h1, h2, .title {
    font-size: 1.6em;
  }

  .hero-img {
    width: 100%;
    max-width: 200px;
  }

  .enter-button {
    width: 90%;
    font-size: 1.1em;
    margin: 1em auto;
    display: block;
  }

  input[type="text"] {
    width: 90%;
    font-size: 1em;
  }

  .speech-bubble {
    font-size: 1em;
    max-width: 90%;
    margin: 1em auto;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    padding: 0.5em;
  }

  .game-link {
    font-size: 0.95em;
    padding: 0.8em;
  }
}
.illustration {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.illustration img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2); /* optional flair */
}

.caption {
  font-size: 0.9em;
  color: #555;
  margin-top: 8px;
}