:root {
    --color-ink: #b8e5ff;
    --color-dark-purple: #fff3a7;
    --color-muted-purple: #b8e5ff;
    --color-white: #0033a0;
    --red-dark: #ce1126;
    --red: #ce1126;
    --red-bright: #ce1126;
    --yellow: #0033a0;
    --gold: rgb(0, 51, 160);
    --green-bright: #0033a0;
    --blue-dark: rgb(255, 243, 167);
    --blue-pale: #0033a0;
    --color-pale-mint: #0033a0;
}

body {
    font-family: 'VT323', monospace;
    background-color: var(--color-ink);
    color: var(--color-white);
    user-select: none;
}

.pixel-font { font-family: 'Press Start 2P', cursive; }

.arcade-card {
    border: 4px solid var(--yellow);
    box-shadow: 6px 6px 0px var(--color-ink);
    background-color: var(--blue-dark);
}

.arcade-btn {
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
    box-shadow: 0px 5px 0px var(--red-dark), 0px 7px 0px #0033a0;
    outline: 2px solid #0033a0;
    transition: all 0.05s ease;
}

.arcade-btn:active {
    transform: translateY(4px);
    box-shadow: 0px 1px 0px var(--red-dark), 0px 3px 0px #0033a0;
}

input[type="number"], select {
    background-color: var(--color-dark-purple);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    outline: none;
    border-radius: 4px;
}

.crt-screen::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 50%);
    z-index: 10;
    background-size: 100% 4px;
    pointer-events: none;
}

.return{
  display: block;
  position: fixed;
  background-image: url(../assets/return.png);
  background-size: cover;
  margin: 2dvh;
  height: 10dvh;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
  z-index: 9999;
}