/*
 * --- BBS/TERMINAL AESTHETIC ---
 * This stylesheet mimics the look of an old Bulletin Board System (BBS)
 * or a classic computer terminal. Think dark backgrounds, glowing text,
 * monospace fonts, and sharp, boxy layouts.
 *
 * FONT-SETUP: For the best effect, add this line to the <head> of your HTML file:
 * <link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
 */

/* --- CRT MONITOR EFFECT & FONT --- */
body {
  background-color: #010118; /* Very dark, almost black blue */
  color: #00FF00; /* Bright CRT Green */
  font-family: 'VT323', monospace; /* The perfect pixel/terminal font */
  font-size: 20px;
  margin: 0;
  padding: 15px;
}

/* --- HEADINGS (BIG, GLOWING, AND IMPORTANT) --- */
h1 {
  color: #FF2281; /* Hot Magenta/Pink */
  text-align: center;
  font-size: 64px;
  margin-bottom: 30px;
}

h2 {
  color: #00FFFF; /* Bright Cyan */
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 2px solid #00FFFF;
  padding-bottom: 5px;
  margin-top: 40px;
}

/* --- LINKS (Like selectable commands) --- */
a:link, a:visited {
  color: #FFFF00; /* Bright Yellow */
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #010118; /* Invert colors on hover */
  background-color: #FFFF00;
}


/* --- PANELS (The main containers for content) --- */
.panel {
  border: 2px solid #00FFFF; /* Cyan border */
  padding: 15px;
  margin: 25px auto;
  background-color: rgba(0, 255, 255, 0.05); /* Very faint cyan background */
}

/* --- ALERT PANEL (For urgent messages) --- */
.panel.alert {
  border-color: #FF0000; /* Red border */
  background-color: rgba(255, 0, 0, 0.05); /* Faint red background */
  color: #FF0000; /* Red text */
  font-weight: bold;
}


/* --- META INFO BAR (For post details like date/category) --- */
.meta-info {
  border: 1px solid #FF2281;
  padding: 10px;
  margin-bottom: 20px;
  color: #FF2281;
  font-size: 18px;
}

/* --- THE BLINKING CURSOR/TEXT --- */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.blink {
  animation: blink 0.8s step-start infinite;
}

/* --- FOOTER (Gotta have the classics) --- */
footer {
  margin-top: 50px;
  text-align: center;
  color: #008F11; /* A dimmer green */
  font-size: 16px;
  border-top: 1px dashed #008F11;
  padding-top: 15px;
}