:root {
  color-scheme: dark;
}
* { box-sizing: border-box; }
body {
  background-color: #0f172a;
  background-image:
    radial-gradient(circle at top right, rgba(30, 58, 138, .85), transparent 34%),
    radial-gradient(circle at bottom left, rgba(12, 74, 110, .85), transparent 36%),
    linear-gradient(135deg, rgba(2,6,23,.95), rgba(15,23,42,.92));
  color: #e0f2fe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.glass-panel {
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255,255,255,.04);
}
.glass-mini {
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.neon-input {
  background: rgba(2, 6, 23, 0.58);
  border: 1px solid rgba(14, 165, 233, 0.42);
  color: #e0f2fe;
  transition: all 0.22s ease;
}
.neon-input::placeholder { color: rgba(125, 211, 252, .45); }
.neon-input:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12), 0 0 18px rgba(14, 165, 233, 0.26);
}
.neon-button {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 0 14px rgba(2, 132, 199, 0.45);
  transition: all 0.22s ease;
}
.neon-button:hover:not(:disabled) {
  box-shadow: 0 0 24px rgba(2, 132, 199, 0.72);
  transform: translateY(-1px);
}
.input {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.93rem;
}
.label {
  display: block;
  color: #7dd3fc;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .73rem;
  font-weight: 700;
}
.outline-button {
  border: 1px solid rgba(56,189,248,.75);
  color: #7dd3fc;
  padding: .7rem 1rem;
  border-radius: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  transition: all .22s ease;
}
.outline-button:hover:not(:disabled) {
  background: #38bdf8;
  color: #020617;
  box-shadow: 0 0 20px rgba(56,189,248,.35);
}
.soft-button {
  border: 1px solid rgba(148, 163, 184, .22);
  background: rgba(15,23,42,.55);
  color: #bae6fd;
  padding: .55rem .85rem;
  border-radius: .75rem;
  font-size: .78rem;
  font-weight: 700;
  transition: all .2s ease;
}
.soft-button:hover { border-color: rgba(56,189,248,.55); color: white; }
.stat-card {
  background: rgba(15, 23, 42, 0.66);
  border: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow: 0 0 20px rgba(14, 165, 233, .08);
  border-radius: 1rem;
  padding: 1rem;
}
.stat-card span {
  display: block;
  color: rgba(125,211,252,.72);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.stat-card b {
  display: block;
  margin-top: .35rem;
  color: #e0f2fe;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  line-height: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(12, 74, 110, .42);
  border: 1px solid rgba(56,189,248,.35);
  color: #bae6fd;
  padding: .35rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
}
table th, table td {
  padding: .85rem .9rem;
  text-align: left;
  white-space: nowrap;
}
table tbody tr:hover { background: rgba(14, 165, 233, .06); }
