/* style.css */

:root{
  --bg: #000014;
  --panel: #050520;
  --border: #00ffff;
  --text: #00ffff;
  --muted: rgba(0, 255, 255, 0.75);
  --title: #ff66ff;
  --visited: #ff66ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Verdana, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Subtle “space” texture without changing palette */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.20) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,0.12) 0 1px, transparent 2px);
  background-size: 420px 420px, 520px 520px, 620px 620px;
}

a { color: var(--text); text-decoration: none; }
a:visited { color: var(--visited); }
a:hover { color: var(--white); text-decoration: underline; }
a:focus { outline: 2px dashed var(--border); outline-offset: 3px; }

.container {
  max-width: 920px;
  margin: 48px auto;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 32, 0.92);
}

/* Cleaner header */
.site-header{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

h1 {
  color: var(--title);
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.tagline{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.statusline{
  margin: 0;
  font-size: 14px;
}

hr {
  border: 0;
  border-top: 1px dashed var(--border);
  margin: 18px 0;
}

h2 {
  color: var(--white);
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: 0.2px;
}

/* Minimal nav bar */
.nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav a{
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(0,255,255,0.55);
  background: rgba(0,0,0,0.18);
}

.nav a:hover{
  border-color: var(--border);
  text-decoration: none;
}

.section{
  padding: 6px 0;
}

/* Two-tone voice: serious text + muted “whisper” */
.whisper{
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* Cards for visual-first blocks */
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card{
  border: 1px solid rgba(0,255,255,0.45);
  padding: 14px;
  background: rgba(0,0,0,0.18);
}

.card strong{
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--border);
  margin: 4px 6px 0 0;
  font-size: 12px;
}

.small {
  font-size: 12px;
  color: var(--muted);
}

/* Optional: make lists less chunky */
ul{
  margin: 8px 0 0 18px;
}

@media (min-width: 700px){
  .grid{
    grid-template-columns: 1fr 1fr;
  }
}