:root{
  --bg:#0b0f14;
  --panel:#121924;
  --panel2:#0f1621;
  --text:#e8eef6;
  --muted:#9fb0c3;
  --accent:#5eead4;
  --danger:#ff5c7a;
  --ok:#6ee7b7;
  --border:rgba(255,255,255,.08);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(94,234,212,.09), transparent 50%),
              radial-gradient(900px 450px at 90% 10%, rgba(99,102,241,.10), transparent 45%),
              var(--bg);
  color:var(--text);
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:1100px; margin:0 auto; padding:24px}
.nav{
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  margin-bottom:18px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.2px;
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px; font-size:12px;
  background:rgba(94,234,212,.12); border:1px solid rgba(94,234,212,.25);
  color:var(--accent);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
}

h1{font-size:26px; margin:0 0 6px 0}
p{color:var(--muted); margin:0 0 14px 0; line-height:1.45}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.btn:hover{background: rgba(255,255,255,.07)}
.btn.primary{
  background: rgba(94,234,212,.14);
  border-color: rgba(94,234,212,.3);
}
.btn.danger{
  background: rgba(255,92,122,.12);
  border-color: rgba(255,92,122,.25);
}

.input, textarea{
  width:100%;
  background: rgba(15,22,33,.7);
  border:1px solid var(--border);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  outline:none;
}
textarea{min-height:90px; resize:vertical}
label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px}

.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 560px){ .row{grid-template-columns:1fr} }

.small{font-size:12px; color:var(--muted)}
.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius:14px;
}
.table th, .table td{
  border-bottom:1px solid var(--border);
  padding:10px 10px;
  text-align:left;
  font-size:14px;
}
.table th{color:var(--muted); font-weight:700}
.kpill{
  display:inline-block; padding:4px 10px; border-radius:999px;
  border:1px solid var(--border); font-size:12px; color:var(--muted);
}
.kpill.ok{color:var(--ok); border-color: rgba(110,231,183,.25); background: rgba(110,231,183,.08);}
.kpill.no{color:#fca5a5; border-color: rgba(252,165,165,.25); background: rgba(252,165,165,.08);}

#map{height:520px; border-radius:16px; overflow:hidden; border:1px solid var(--border)}
.notice{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(255,255,255,.03);
  margin-bottom:12px;
}