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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-dark: #0a0a12;
  --bg-mid: #141428;
  --accent-red: #ff2244;
  --accent-blue: #22aaff;
  --accent-gold: #ffcc00;
  --accent-green: #22ff66;
  --text: #e8e8f0;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Press Start 2P', monospace;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  image-rendering: pixelated;
}

.screen {
  display: none;
  width: 960px;
  height: 640px;
  position: relative;
  overflow: hidden;
  border: 3px solid #333;
  border-radius: 4px;
  background: var(--bg-dark);
}
.screen.active { display: flex; flex-direction: column; }
