/* NoirArcX Visual Theme */
body {
  background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
  color: #f4dfd6;
  font-family: 'Courier New', monospace;
  padding: 30px;
  line-height: 1.7;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c68642;
  text-shadow: 1px 1px 3px #000;
}

h1 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-top: 40px;
}

a {
  color: #f4dfd6;
  background-color: #8d5524;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

a:hover {
  background-color: #c68642;
}

section {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #8d5524;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 60px;
  color: #888;
}