body {
  font-family: system-ui, Segoe UI, Roboto, Arial;
  background: #0f172a;
  color: #cfe8ff;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 34px;
  color: #4ade80;
  margin-bottom: 10px;
}

p.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: 17px;
  color: limegreen;
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #1e293b;
}

th {
  background: #14532d;
  color: #cfe8ff;
}

a {
  color: #0ea5a4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
  margin: 20px 0;
  font-size: 14px;
}

.breadcrumbs a {
  color: #38bdf8;
}

.breadcrumbs span {
  color: #94a3b8;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.6);
  backdrop-filter: blur(2px);
}

.modal-panel {
  position: relative;
  background: #0f172a;
  color: #e6eef8;
  width: min(900px, 95%);
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header,
.modal-footer {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.modal-footer {
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: right;
}

.modal-body {
  padding: 12px 16px;
  overflow: auto;
}

pre {
  background: #0a1a2a;
  padding: 12px;
  border-radius: 6px;
  white-space: pre-wrap;
  font-family: ui-monospace, Menlo, Monaco, monospace;
  font-size: 13px;
  color: #cfe8ff;
}

.btn, .btn-close {
  background: #0ea5a4;
  color: #042027;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-close {
  background: transparent;
  color: #cfe8ff;
  font-size: 18px;
}

.btn:hover, .btn-close:hover {
  opacity: 0.95;
}

footer {
  background: #0f172a;
  color: #cfe8ff;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}