/* General Vibes */
body {
  background-color: #2e004f; /* Dark Purple */
  background-image: radial-gradient(#4b0082 1px, transparent 1px);
  background-size: 20px 20px;
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  margin: 20px;
}

#container {
  max-width: 800px;
  margin: 0 auto;
  border: 3px double #ff00ff;
  background-color: #1a1a1a;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  border-bottom: 2px solid #00ffff;
  margin-bottom: 20px;
}

h1 { color: #00ffff; text-shadow: 2px 2px #ff00ff; }

/* Layout */
#flex-wrapper {
  display: flex;
  gap: 20px;
}

#sidebar {
  width: 200px;
  border-right: 1px solid #444;
  padding-right: 10px;
}

#content {
  flex: 1;
}

/* Links */
a { color: #ff00ff; text-decoration: none; }
a:hover { color: #00ffff; text-decoration: underline; cursor: help; }

/* Boxes */
.box {
  border: 1px solid #00ffff;
  padding: 10px;
  margin-top: 20px;
  font-size: 0.8em;
}

footer {
  text-align: center;
  font-size: 0.7em;
  margin-top: 20px;
  border-top: 1px solid #444;
}
/* Specific styles for the 404 page */
.error-page {
  background-color: #000000; /* Pitch black for the void */
  cursor: help;
}

.error-page h1 {
  color: #ff0000; /* Red for alert! */
  text-shadow: 3px 3px #550000;
  font-size: 3em;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

.error-page .box {
  border: 2px dashed #ff0000;
  background-color: #110000;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #222;
}

table td {
  border: 1px solid #444;
  padding: 10px;
  color: #eee;
}

table td strong {
  color: #00ffff;
}

blockquote {
  font-style: italic;
  border-left: 3px solid #ff00ff;
  padding-left: 15px;
  margin: 20px 0;
  color: #aaa;
}