CSS
/* THE GEOMETRIC & SPATIAL BACKGROUND */
body {
  background-color: #0d0d11; /* Pure deep space pitch black */
  
  /* This creates a clean, subtle geometric matrix grid background without needing an image file */
  background-image: 
    linear-gradient(rgba(18, 24, 38, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 24, 38, 0.5) 1px, transparent 1px);
  background-size: 40px 40px; /* Controls the size of your geometric grid cubes */
  
  color: #cdd6f4;            /* Sharp, clear silver/platinum text color */
  font-family: "Courier New", Courier, monospace; /* Edgy, technical typewriter font */
  line-height: 1.8;
  max-width: 700px;
  margin: 80px auto;
  padding: 0 24px;
}

/* THE BOLD HEADLINE */
h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* Clean ultra-modern font */
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase; /* Forces uppercase for an intense, authoritative presence */
  letter-spacing: 2px;       /* Spreads letters out like a futuristic transmission */
  
  /* Silver gradient text effect */
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  
  /* The sharp Red and Deep Blue neon accent borders */
  border-left: 4px solid #da1212;   /* Fierce deep red bar on the left edge */
  border-bottom: 2px solid #11468f; /* Deep structural electric blue underline */
  
  padding-left: 20px;
  padding-bottom: 20px;
  margin-bottom: 45px;
}

/* INDIVIDUAL PARAGRAPHS */
p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* A STYLISH BONUS: If you ever add links later, they will glow deep blue and turn red on hover */
a {
  color: #11468f; 
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

a:hover {
  color: #da1212;
}