/* Global reset and fonts */
* {
  box-sizing: border-box;
}

body {
  font-family: 'VT323', monospace; /* Retro terminal font */
  background-color: #050505; /* Deep dark background */
  color: #dcdcdc; /* Soft off-white for text */
  margin: 0;
  padding: 20px;
  line-height: 1.5;
  font-size: 1.2rem;
}



/* Background grid pattern */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 800px;
  margin: auto;
  border: 4px ridge #444;
  border-radius: 8px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

header {
  text-align: center;
  padding: 30px 0;
  border-bottom: 2px ridge #444;
  margin-bottom: 20px;
}

header span {
  font-size: 2rem;
  color: #74C365; /* Accent green */
  text-shadow: 2px 2px 0 #000;
}

nav {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping if needed */
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

nav a {
  text-decoration: none;
  color: #dcdcdc;
  padding: 10px 20px;
  border: 2px solid #555;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 1.3rem;
  min-width: 100px; /* Prevent wrapping mess */
  text-align: center;
}

nav a:hover {
  background: #2a2a2a;
  border-color: #74C365;
  color: #fff;
  box-shadow: 0 0 10px #74C365;
}

section h1, section h2 {
  font-size: 1.8rem;
  margin-top: 0;
  border-bottom: 1px dashed #555;
  padding-bottom: 10px;
}

img.pixelated {
  max-width: 100%;
  height: auto;
  filter: contrast(1.2) saturate(0.9) sepia(0.3);
  image-rendering: pixelated; /* Crisp retro look */
  border: 2px solid #444;
  border-radius: 4px;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 1rem;
  color: #666;
}