:root{
  --bg1:#0b1020; --bg2:#121a33; --glass: rgba(255,255,255,.12);
  --glass-strong: rgba(255,255,255,.22); --border: rgba(255,255,255,.25);
  --text:#eaf2ff; --muted:#bcd0ff; --accent:#8db9ff;
  --ok:#58d68d; --warn:#f5b041; --bad:#ff6b6b;
}
*{box-sizing:border-box} html,body{height:100%}
body{
  margin:0; font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(1200px 1200px at 10% 10%, #1b2550 0%, #0b1020 60%),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  background-attachment: fixed;
}
.container{ max-width: 920px; margin: 0 auto; padding: 24px; }
.card{ background: var(--glass); backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border:1px solid var(--border); border-radius:22px; box-shadow:0 12px 30px rgba(0,0,0,.35);
  padding:18px 18px 12px; }
header.page{ display:flex; gap:12px; align-items:center; margin-bottom:16px }
header.page h1{ font-size:1.25rem; margin:0; letter-spacing:.2px }
.brand{ width:36px; height:36px; border-radius:12px; background:var(--glass-strong); display:grid; place-items:center; font-weight:700 }

.grid{ display:grid; gap:12px }
@media (min-width:720px){ .grid.two{ grid-template-columns:1fr 1fr } }

label{ display:block; font-size:.9rem; color:var(--muted); margin:10px 0 6px }
input, select, button, textarea{
  width:100%; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.22);
  border-radius:14px; padding:12px 14px; color:var(--text); outline:none; font-size:1rem;
}
input:focus, select:focus, textarea:focus{ border-color:var(--accent); box-shadow:0 0 0 3px rgba(141,185,255,.25) }
button{ cursor:pointer; font-weight:700; letter-spacing:.2px; background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); }
button.primary{ border-color: rgba(141,185,255,.5); }
.small{ font-size:.9rem; color:var(--muted) }
.kpi{ display:flex; align-items:baseline; gap:8px }
.kpi .big{ font-size:2rem; font-weight:800 }
.tag{ display:inline-block; font-size:.8rem; padding:4px 8px; border-radius:100px; border:1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08) }
.tag.ok{ border-color: rgba(88,214,141,.5) }
.tag.bad{ border-color: rgba(255,107,107,.5) }
.table{ width:100%; border-collapse:separate; border-spacing:0 10px }
.table th{ text-align:left; font-weight:600; color:var(--muted); font-size:.9rem }
.table td{ background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); padding:10px 12px }
.table tr td:first-child{ border-radius:12px 0 0 12px }
.table tr td:last-child{ border-radius:0 12px 12px 0 }
.notice{ margin-top:6px; font-size:.9rem; color:var(--muted) }
.footer{ opacity:.7; font-size:.85rem; text-align:center; margin-top:18px }
.warning{ background:#fffb; color:#000; padding:8px 12px; border-radius:12px; margin-bottom:12px }
.btn{ color:var(--text); text-decoration:none; display:inline-block; padding:10px 14px; border-radius:14px; border:1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08) }
