
:root{
  --bg:#050607;
  --card:#0A0B0E;
  --text:#F5F1E8;
  --muted:#C6BEAE;
  --line: rgba(217,179,95,.20);
  --gold1:#D9B35F;
  --gold2:#F3E1A6;
  --shadow: 0 22px 60px rgba(0,0,0,.62);
  --r:18px;
  --max: 1120px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1100px 720px at 12% 12%, rgba(217,179,95,.14), transparent 58%),
    radial-gradient(880px 620px at 88% 18%, rgba(243,225,166,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #07090C 55%, var(--bg) 100%);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.top{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(14px);
  background: rgba(5,6,7,.78);
  border-bottom:1px solid rgba(217,179,95,.14);
}
.top .wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 18px}
.brand{display:flex; gap:12px; align-items:center}
.mark{
  width:34px; height:34px; border-radius:14px;
  background: linear-gradient(135deg, rgba(217,179,95,.98), rgba(243,225,166,.92));
  box-shadow: 0 12px 40px rgba(217,179,95,.18);
}
.bt b{display:block; font-size:14px}
.bt small{color:var(--muted); font-weight:600}
.nav{display:flex; gap:14px; align-items:center}
.nav a{color:var(--muted); font-weight:700; font-size:13px; padding:10px 10px; border-radius:12px}
.nav a:hover{color:var(--text); background: rgba(10,11,14,.62); text-decoration:none}
.btn{
  border:1px solid rgba(217,179,95,.22);
  background: rgba(10,11,14,.65);
  color:var(--text) !important;
}
.btn:hover{background: rgba(10,11,14,.80)}
.pill{
  border:1px solid rgba(217,179,95,.22);
  padding:6px 10px; border-radius:999px;
  font-weight:800; font-size:12px;
  background: rgba(10,11,14,.55);
}
h1{font-size:34px; letter-spacing:-.4px; margin:22px 0 10px}
p{color:var(--muted)}
.card{
  border:1px solid rgba(217,179,95,.18);
  background: linear-gradient(180deg, rgba(10,11,14,.84), rgba(10,11,14,.46));
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.pad{padding:18px}
.grid{display:grid; gap:14px}
.cols2{grid-template-columns: 1fr 1fr}
.cols3{grid-template-columns: repeat(3, minmax(240px, 1fr))}
.hr{height:1px; background:linear-gradient(90deg, transparent, rgba(217,179,95,.18), transparent); margin:16px 0}
label{display:block; font-weight:800; font-size:12px; color:var(--muted); margin-bottom:6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(217,179,95,.18);
  background: rgba(8,8,9,.68);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{box-shadow:0 0 0 3px rgba(217,179,95,.10)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.primary{
  border:none;
  background: linear-gradient(135deg, rgba(217,179,95,.98), rgba(243,225,166,.92));
  color:#120F08;
  font-weight:900;
  padding:12px 14px;
  border-radius:14px;
}
.secondary{
  border:1px solid rgba(217,179,95,.22);
  background: rgba(10,11,14,.62);
  color:var(--text);
  font-weight:800;
  padding:12px 14px;
  border-radius:14px;
}
.notice{
  border:1px solid rgba(217,179,95,.22);
  background: rgba(217,179,95,.08);
  border-radius:14px;
  padding:12px 14px;
  color:rgba(245,241,232,.92);
  font-size:13px;
}
.table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:14px; border:1px solid rgba(217,179,95,.18)}
.table th,.table td{padding:12px; border-bottom:1px solid rgba(217,179,95,.10); text-align:left}
.table th{color:var(--muted); font-size:12px; font-weight:900; background: rgba(10,11,14,.62)}
.table tr:last-child td{border-bottom:none}
.foot{border-top:1px solid rgba(217,179,95,.14); padding:18px 0 26px; color:var(--muted); margin-top:28px}
@media (max-width: 980px){
  .cols2{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
}
