@import url('https://fonts.googleapis.com/css2?family=VT323&family=Courier+Prime&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'VT323', monospace;
  background: #0a0014;
  color: #e0b0ff;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===== CRT BACKGROUND ===== */
#crtBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* ===== UTILITY ===== */
.hidden {
  display: none;
}
