:root {
  --bg: #000;
  --neon: #00ff66;
  --dim: #00aa44;
  --red: #ff2244;
  --blue: #3388ff;
  --card: #0a0a0a;
  --border: #00ff6633;
}
* { box-sizing: border-box; }
body {
  margin: 0; min-height: 100vh;
  background: var(--bg);
  color: var(--neon);
  font-family: "Courier New", Consolas, monospace;
  background-image:
    linear-gradient(rgba(0,255,102,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,102,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
a { color: var(--neon); text-decoration: none; }
a:hover { text-shadow: 0 0 8px var(--neon); }
.top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border);
  background: #000c;
  position: sticky; top: 0; z-index: 10;
}
.logo { font-weight: bold; letter-spacing: 2px; font-size: 1.1rem; }
.logo span { color: #fff; }
nav { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; font-size: 0.9rem; }
.who { color: var(--dim); }
main { max-width: 960px; margin: 1.5rem auto; padding: 0 1rem; }
footer { text-align: center; color: var(--dim); padding: 2rem; font-size: 0.8rem; border-top: 1px solid var(--border); margin-top: 3rem; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.2rem; margin-bottom: 1rem;
  box-shadow: 0 0 20px #00ff6611;
}
h1, h2, h3 { text-shadow: 0 0 10px #00ff6644; }
.btn, button, input[type=submit] {
  background: transparent; color: var(--neon); border: 1px solid var(--neon);
  padding: 0.5rem 1rem; cursor: pointer; font-family: inherit; border-radius: 4px;
}
.btn:hover, button:hover, input[type=submit]:hover {
  background: #00ff6622; box-shadow: 0 0 12px #00ff6666;
}
input[type=text], input[type=password], input[type=number], input[type=url], textarea, select {
  width: 100%; background: #050505; border: 1px solid var(--border);
  color: var(--neon); padding: 0.5rem; margin: 0.3rem 0 0.8rem; font-family: inherit;
  border-radius: 4px;
}
label { display: block; color: var(--dim); font-size: 0.85rem; }
.flashes { list-style: none; padding: 0; }
.flashes li { padding: 0.6rem 1rem; margin-bottom: 0.5rem; border-radius: 4px; border: 1px solid; }
.flashes .ok { border-color: var(--neon); background: #00ff6615; }
.flashes .err { border-color: var(--red); color: var(--red); background: #ff224415; }
.flashes .warn { border-color: #ffaa00; color: #ffaa00; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.stat { text-align: center; }
.stat .n { font-size: 1.8rem; font-weight: bold; }
.progress {
  height: 12px; background: #111; border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.progress > span { display: block; height: 100%; background: var(--neon); box-shadow: 0 0 8px var(--neon); }
.modal {
  position: fixed; inset: 0; background: #000e; display: flex; align-items: center; justify-content: center; z-index: 100;
}
.modal-box {
  background: #050505; border: 2px solid var(--neon); padding: 2rem; border-radius: 12px;
  text-align: center; max-width: 420px; box-shadow: 0 0 40px #00ff6644;
}
.pills { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.pill.red { border-color: var(--red); color: var(--red); }
.pill.blue { border-color: var(--blue); color: var(--blue); }
.hero { text-align: center; padding: 3rem 1rem; }
.hero h1 { font-size: 2.2rem; }
.muted { color: var(--dim); font-size: 0.85rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th, td { border: 1px solid var(--border); padding: 0.4rem 0.6rem; text-align: left; }
