/* --- GLOBAL STYLES --- */
:root {
  /* The "Cabell Library" Amber Phosphor */
  --neon-amber: #ffb000; 
  --dark-bg: #0b0c08;
  /* A warmer glow for the amber CRT effect */
  --text-glow: 0 0 10px rgba(255, 176, 0, 0.4);
}

body {
  background-color: var(--dark-bg);
  /* The requested 4px tiny repeating dot/grain pattern */
  background-image: radial-gradient(circle, #1a1a1a 1px, transparent 1px);
  background-size: 4px 4px;
  
  color: var(--neon-amber);
  font-family: "JetBrains Mono", "Monaco", "Lucida Console", monospace;
  line-height: 1.6;
  margin: 0;
  padding: 40px 20px;
  /* Keeps the scanlines from creating a scrollbar */
  overflow-x: hidden;
}

/* --- LAYOUT --- */
.container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 5;
  /* Ensures text is above the background grain */
}

/* --- CRT SCANLINE EFFECT --- */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Creates horizontal black lines with 50% transparency */
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.2) 50%
  );
  background-size: 100% 4px;
  z-index: 10; /* Sits on top of everything */
  pointer-events: none;
  /* Allows you to click links through the overlay */
}

/* --- TYPOGRAPHY & GLOW --- */
h1, h3, p, li {
  text-shadow: var(--text-glow);
}

h1 {
  font-size: 2em;
  letter-spacing: 4px;
  margin-bottom: 0;
}

.subtitle {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 5px;
}

/* --- ELEMENTS --- */
hr.dotted {
  border: none;
  border-top: 2px dotted var(--neon-amber);
  margin: 30px 0;
  opacity: 0.6;
}

a {
  color: var(--neon-amber);
  text-decoration: none;
  border: 1px solid var(--neon-amber);
  padding: 0 5px;
  transition: all 0.2s ease;
}

a:hover {
  background-color: var(--neon-amber);
  color: var(--dark-bg);
  box-shadow: 0 0 15px var(--neon-amber);
}

ul {
  list-style-type: none;
  /* Terminal style: no bullets */
  padding-left: 0;
}

ul li::before {
  content: "> ";
  /* Adds a command-line prompt before list items */
  opacity: 0.7;
}

.lineup-header {
  font-weight: bold;
  text-decoration: underline;
  margin-top: 25px;
}

/* --- VINTAGE FLICKER --- */
/* Optional: Adds a very slight "heartbeat" to the screen brightness */
@keyframes screenFlicker {
  0% { opacity: 0.99; }
  50% { opacity: 1; }
  100% { opacity: 0.98; }
}

.container {
  animation: screenFlicker 0.2s infinite;
}