@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #12002f, #2b006b, #001b44);
  color: white;
  font-family: "Press Start 2P", monospace;
}

#app {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

img.splash {
  width: 100%;
  margin-bottom: 24px;
}

.screen {
  width: min(900px, 92vw);
  padding: 32px;
  border: 4px solid #00fff7;
  box-shadow: 0 0 30px #ff00c8;
  background: rgba(0, 0, 0, 0.45);
}

h1 {
  color: #ffe600;
  text-shadow: 0 0 12px #ff00c8;
}

button, input {
  font-family: inherit;
  padding: 16px;
  margin: 12px;
  border: 3px solid #00fff7;
  background: black;
  color: #00fff7;
}

button:hover {
  color: #ffe600;
  border-color: #ff00c8;
  cursor: pointer;
}

.result-image {
  max-width: 100%;
  background: white;
  margin-top: 24px;
}

.score-list {
  list-style: decimal;
  text-align: left;
  margin-top: 24px;
}

.score-link {
  width: 100%;
  text-align: left;
  font-size: 12px;
}

.perfect {
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

.tryagain {
  color: #ff5577;
  text-shadow: 0 0 10px #ff5577;
}