:root{
  --bg:#0f0f10; --panel:#1b1b1d; --border:#2a2a2e;
  --text:#e4e4e7; --muted:#b3b3b9; --gold:#F5C518;
  --shadow-lg:0 20px 60px rgba(0,0,0,.55);
}
*{ box-sizing:border-box; }
body{ margin:0; background:var(--bg); color:var(--text); font:14px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; }
a{ color:inherit; text-decoration:none; }

.navbar{ position:sticky; top:0; z-index:50; background:#111; border-bottom:1px solid var(--border); }
.nav-inner{ max-width:1100px; margin:0 auto; padding:10px 16px; display:flex; align-items:center; justify-content:space-between; }
.brand{ font-weight:700; display:flex; gap:8px; align-items:center; }
.star{ color:var(--gold); }
.links a{ padding:8px 10px; border-radius:10px; }
.links a.active, .links a:hover{ background:#18181a; border:1px solid var(--border); }

.wrap{ max-width:1100px; margin:24px auto 60px; padding:0 16px; }
.page-title{ margin:6px 0 4px; font-size:28px; font-weight:800; }
.muted{ color:var(--muted); }

.choice-cards{
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; margin:16px 0 18px;
}
.choice{
  background:var(--panel); border:1px solid var(--border); border-radius:16px; padding:16px; box-shadow:var(--shadow-lg);
}
.choice h3{ margin:0 0 4px; }
.btn{
  display:inline-block; border-radius:12px; padding:10px 14px; border:1px solid var(--border);
  background:#151517; color:var(--text); cursor:pointer;
}
.btn:hover{ border-color:var(--gold); }
.btn.solid{ background:linear-gradient(#F5C518,#F5C518); color:#181818; border:none; font-weight:600; }
.btn.ghost{ background:#151517; }

.hidden{ display:none !important; }

.card{
  background:var(--panel); border:1px solid var(--border); border-radius:16px; padding:14px; box-shadow:var(--shadow-lg);
}
.form .field{ display:grid; gap:6px; margin-bottom:10px; }
.form .field > span{ font-size:12px; color:var(--muted); }
input, select, textarea{
  width:100%; border-radius:12px; padding:10px 12px; outline:none;
  background:#0f0f12; color:var(--text); border:1px solid var(--border);
}
input:focus, select:focus, textarea:focus{ border-color:var(--gold); box-shadow:0 0 0 3px rgba(230,182,92,.15); }
.grid2{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px; }
.span2{ grid-column:1 / -1; }
.form-actions{ display:flex; gap:10px; margin-top:8px; }

.msg{ margin-top:8px; }

.footer{ text-align:center; color:var(--muted); padding:40px 0 60px; }

@media (max-width: 760px){
  .choice-cards{ grid-template-columns:1fr; }
  .grid2{ grid-template-columns:1fr; }
}
.btn.solid:hover, 
.btn.glow:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

