body {
  font-family: 'IBM Plex Mono', monospace;
  background: #0a0a0a;
  color: #e0e0e0;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #333;
}

.back-button {
  display: inline-block;
  color: #eb050c;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid #eb050c;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 0.3s;
  font-family: 'Orbitron', sans-serif;
}

.back-button:hover {
  background: #eb050c;
  color: #0a0a0a;
  box-shadow: 0 0 10px rgba(235, 5, 12, 0.5);
}

h1 {
  color: #eb050c;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  color: #eb050c;
  font-family: 'Orbitron', sans-serif;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

h3 {
  color: #eb050c;
  margin-top: 25px;
  margin-bottom: 15px;
}

.dates {
  margin-bottom: 30px;
  padding: 15px;
  background: #0f0f0f;
  border-left: 3px solid #eb050c;
}

.dates p {
  margin: 5px 0;
  color: #b0b0b0;
}

.intro {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #c0c0c0;
}

a {
  color: #eb050c;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ff2030;
  text-decoration: underline;
}

ul {
  padding-left: 25px;
}

li {
  margin-bottom: 10px;
  color: #d0d0d0;
}

li strong {
  color: #e0e0e0;
}

code {
  background: #2a2a2a;
  color: #eb050c;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #444;
  font-size: 1.2em;
}

section {
  margin-bottom: 40px;
}

.contact-info {
  background: #0f0f0f;
  padding: 20px;
  border-radius: 4px;
  margin-top: 15px;
}

.compliance-note {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #333;
  font-size: 0.9em;
  color: #909090;
}

.compliance-note em {
  font-style: normal;
}

.footer-legal {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #eb050c;
  text-decoration: underline;
}

.footer-legal .separator {
  color: #555;
  margin: 0 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-legal .separator {
    display: none;
  }
}