:root { --bg:#0b0c10; --fg:#e8eaf1; --muted:#a6adbb; --card:#12141b; --line:#232838; }
*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 15% 0%, #12162a 0%, var(--bg) 50%);
  color:var(--fg);
}
.wrap{ max-width:1100px; margin:0 auto; padding:18px 18px 0; }
h1{ margin:0 0 6px; font-size:22px; }
.muted{ margin:0 0 14px; color:var(--muted); }
.controls{
  display:flex; gap:10px; flex-wrap:wrap; align-items:end;
  margin-bottom:12px;
}
label{ display:grid; gap:6px; color:var(--muted); font-size:12px; }
input{
  padding:10px 12px; border-radius:12px;
  border:1px solid var(--line); background:#0f1220; color:var(--fg);
}
button{
  padding:10px 12px; border-radius:12px; border:0;
  background:#1f6feb; color:white; cursor:pointer; font-weight:700;
}
button.secondary{ background:#2a2f40; color:var(--fg); border:1px solid var(--line); }
button:hover{ filter:brightness(1.05); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.current{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.k{ color:var(--muted); font-size:12px; margin-bottom:6px; }
.big{ font-size:44px; font-weight:900; line-height:1; }
.mid{ font-size:16px; font-weight:700; }
main.wrap{ padding-bottom:22px; }
@media (max-width: 760px){
  .current{ grid-template-columns: 1fr; }
}
.ranges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:end;
}

button.active{
  background:#1f6feb !important;
  border:0 !important;
  color:white !important;
}

.madeby{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 18px 22px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}


#notifyStatus{
  font-size: 12px;
  color: var(--muted);
}
