@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Roboto:wght@400;700&display=swap');

body {
  background-color: #0a0a0a;
  color: #e2e2e2;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  background-color: #121212;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  box-shadow: 0 0 30px #ff003355;
}

header {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: calc(1vw+1hv)rem;
  color: #ff0033;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px #ff0033aa, 0 0 5px #990000aa;
  margin: 0;
  text-wrap: pretty;
}

header p {
  font-size: 1.1rem;
  color: #cccccc;
}

h2, h3 {
  color: #ff3344;
  border-bottom: 2px solid #ff003355;
  padding-bottom: 0.3rem;
  margin-top: 2.5rem;
}

a {
  color: #ff3344;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ff6666;
}

.button {
  display: inline-block;
  background-color: #111111;
  color: #ff3344;
  border: 1px solid #ff3344;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0px #ff3344;
}

.button:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  border-color: #ff3344;
  box-shadow: 0 0 8px #ff334480;
}

section {
  margin-bottom: 3rem;
}

pre, code {
  background-color: #1a1a1a;
  color: #ff9999;
  padding: 0.5rem;
  border-radius: 6px;
  font-family: monospace;
  overflow-x: auto;
}

footer {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin: 4rem 0 1rem;
}
