:root{
  --bg:#0f1115;
  --card:#161a22;
  --text:#e6e6e6;
  --muted:#9aa4b2;
  --accent:#5b8cff;
  --danger:#f44336;
  --ok:#1db954;
  --border:#242a35;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{
  max-width:900px;
  margin:0 auto;
  padding:24px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  box-shadow:0 6px 24px rgba(0,0,0,.25);
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.brand{
  font-size:22px;
  font-weight:700;
  letter-spacing:.3px;
}

a, a:visited{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.input-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

input[type=text]{
  flex:1 1 320px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#0d1016;
  color:var(--text);
  outline:none;
}

button, .btn{
  padding:12px 16px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--accent);
  color:white;
  font-weight:600;
  cursor:pointer;
}

.btn-secondary{
  background:#2c3444;
  color:var(--text);
}

.meta{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:12px;
  margin-top:14px;
}

.meta .item{
  background:#0d1016;
  border:1px solid var(--border);
  padding:12px;
  border-radius:10px;
  color:var(--muted);
  font-size:14px;
}

.value{ color:var(--text); font-weight:600 }

.notice{
  padding:12px 14px;
  border-radius:10px;
  background:#111522;
  border:1px solid var(--border);
  color:var(--muted);
  margin-top:10px;
}

.map-wrap{
  margin-top:16px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
}

#map{ width:100%; height:480px; }

.footer{
  margin-top:20px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  opacity:.85;
}
