
:root{
  --bg:#0b0b10;
  --panel:rgba(18,18,26,.72);
  --panel2:rgba(18,18,26,.50);
  --text:#f4f4f6;
  --muted:#b7b7c3;
  --accent:#f6a300;
  --accent2:#ffbe3b;
  --line:rgba(255,255,255,.10);
  --shadow:0 16px 40px rgba(0,0,0,.55);
  --radius:18px;
  --radius2:26px;
  --max:980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 450px at 10% 0%, rgba(246,163,0,.22), transparent 60%),
    radial-gradient(800px 500px at 95% 10%, rgba(255,70,70,.10), transparent 60%),
    linear-gradient(180deg, #0b0b10 0%, #07070b 100%);
}
a{color:var(--accent2); text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max); margin:0 auto; padding:20px 16px 44px}
.topbar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(25,25,38,.62), rgba(12,12,18,.62));
  backdrop-filter: blur(10px);
  border-radius:var(--radius2);
  box-shadow: var(--shadow);
  position:sticky; top:10px; z-index:50;
}
.brand{display:flex; align-items:center; gap:10px; min-width:180px}
.logo{
  width:36px; height:36px; border-radius:12px;
  background: linear-gradient(180deg, var(--accent), #d07c00);
  box-shadow: 0 10px 22px rgba(246,163,0,.25);
}
.brand h1{font-size:16px; margin:0; line-height:1.05}
.brand small{display:block; color:var(--muted); font-size:12px; margin-top:2px}
.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.pill{
  padding:10px 14px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:600; font-size:14px;
}
.pill.primary{
  background: linear-gradient(180deg, var(--accent), #d07c00);
  border-color: rgba(246,163,0,.55);
  color:#1a1200;
}
.pill:active{transform: translateY(1px)}
.hero{
  margin-top:16px;
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(246,163,0,.12), rgba(0,0,0,.0));
  box-shadow: var(--shadow);
}
.heroTop{
  position:relative;
  height:220px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.55) 75%, rgba(0,0,0,.78)),
    url('assets/cover.png');
  background-size: cover;
  background-position: center;
}
.heroBody{padding:18px 18px 20px; background:rgba(0,0,0,.55)}
.kicker{color:var(--accent2); font-weight:800; letter-spacing:.08em; font-size:12px}
.hbig{font-size:38px; line-height:1.02; margin:8px 0 10px}
@media (max-width:520px){.heroTop{height:170px}.hbig{font-size:30px}}
.lead{color:var(--muted); margin:0 0 16px; font-size:16px}
.ctaRow{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:800;
  min-width:160px;
}
.btn.primary{
  background: linear-gradient(180deg, var(--accent), #d07c00);
  border-color: rgba(246,163,0,.55);
  color:#1a1200;
}
.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width:820px){.grid{grid-template-columns:1fr}}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:14px 14px 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.4}
.section{
  margin-top:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:var(--radius2);
  padding:16px;
  box-shadow: var(--shadow);
}
.section h2{margin:0 0 10px; font-size:18px}
.notice{
  margin-top:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(246,163,0,.22);
  background:rgba(246,163,0,.08);
  color:var(--muted);
  font-size:13px;
}
.footer{
  margin-top:18px;
  color:rgba(255,255,255,.38);
  font-size:12px;
  text-align:center;
}
.smallLinkRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.04);
  font-size:12px; color:rgba(255,255,255,.8); font-weight:800;
}
.field{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
  font-size:16px;
}
.row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.table{
  width:100%;
  border-collapse: collapse;
  margin-top:12px;
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--line);
}
.table th,.table td{padding:10px 10px; border-bottom:1px solid var(--line); font-size:13px}
.table th{color:rgba(255,255,255,.75); text-align:left; background:rgba(255,255,255,.03)}
.table td{color:var(--muted)}
