/* Minimal, moderation-friendly layout */
:root{
  --bg:#0b0c10;
  --card:#11131a;
  --text:#f5f7ff;
  --muted:#b8bfd6;
  --line:#202437;
  --accent:#6ea8fe;
  --danger:#ff6b6b;
  --ok:#51cf66;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#07080c);
  color:var(--text);
}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:980px; margin:0 auto; padding:28px 16px 60px}
.header{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:18px}
.brand .title{font-size:22px; font-weight:700; letter-spacing:.2px}
.brand .subtitle{color:var(--muted); margin-top:2px}
.nav{display:flex; gap:14px; flex-wrap:wrap}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.card{
  background:rgba(17,19,26,.92);
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  margin:14px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.hero h1{margin:0 0 10px; font-size:28px}
.muted{color:var(--muted)}
.note{
  margin-top:12px;
  padding:12px 12px;
  border-radius:12px;
  border:1px dashed #2a2f46;
  color:var(--muted);
  background:rgba(0,0,0,.18);
}
.placeholder{
  display:inline-block;
  padding:0 6px;
  border-radius:8px;
  border:1px dashed #2a2f46;
  color:#d6ddff;
}

.form{margin-top:8px}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.grid.two{grid-template-columns:1fr 1fr}
label{display:block; font-weight:600}
label input, label select{
  width:100%;
  margin-top:6px;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid #2a2f46;
  background:#0c0e14;
  color:var(--text);
  outline:none;
}
label input:focus, label select:focus{border-color:#3b82f6}
.hint{font-size:12px; color:var(--muted); font-weight:400; margin-top:6px}

.checkbox{display:flex; gap:10px; margin-top:12px; font-weight:500}
.checkbox input{width:18px; height:18px; margin-top:2px}

.actions{display:flex; align-items:center; gap:14px; margin-top:14px}
.btn{
  appearance:none;
  border:1px solid #2a2f46;
  background:linear-gradient(180deg,#1b2a4a,#111a2f);
  color:var(--text);
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{border-color:#3b82f6}
.status{font-size:14px}
.status.error{color:var(--danger)}
.status.ok{color:var(--ok)}

.links{margin:10px 0 0; padding-left:18px}
.links li{margin:6px 0}

.footer{
  margin-top:18px;
  padding-top:10px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.small{font-size:12px}
@media (max-width:760px){
  .header{align-items:flex-start; flex-direction:column}
  .grid{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
}
