:root {
    --bg: #000;
    --panel: #0e0e0e;
    --panel2: #111;
    --line: #222;
    --text: #fff;
    --muted: #a8a8a8;
    --muted2: #cfcfcf;
    --accent:#ffffff;
    --accent-glow: 0 0 25px rgba(255,255,255,.35);
    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --radius: 18px;
}
.hero{
  padding:80px 0 40px;
}

.hero h1{
  font-weight:900;
  letter-spacing:-1px;
}

.kicker{
  color:#888;
  text-transform:uppercase;
  letter-spacing:1.2px;
}
.logo{
  height:44px;
  object-fit:contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  text-decoration: none;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
radial-gradient(600px 400px at 70% 10%, rgba(255,255,255,.06), transparent 70%),
radial-gradient(800px 500px at 20% -10%, rgba(255,255,255,.04), transparent 70%),
var(--bg);
    color: var(--text);
}

a {
    color: inherit
}

.muted {
    color: var(--muted)
}

.muted2 {
    color: var(--muted2)
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: transparent;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: transform .12s ease;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn.primary{
  background: var(--accent);
  color:#000;
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}


input,
select,
textarea {
    background: #111;
    border: 1px solid #222;
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
}

textarea {
    min-height: 100px
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin: 18px 0
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
    color: #ddd;
    font-size: 12px
}


/* Top bar navigation (shared) */
.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.55);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  max-width:1100px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}

.topbar-links{display:flex; gap:14px; align-items:center; flex-wrap:wrap;}
.topbar-links a{font-size:14px; color:var(--muted); text-decoration:none;}
.topbar-links a:hover{color:var(--text);}

.container{max-width:1100px;margin:0 auto;padding:24px;}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.form{
  display:grid; gap:12px;
}
.form .row2{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
@media (max-width:700px){ .form .row2{grid-template-columns:1fr;} }

.notice-ok{color:#b7ffb7;}
.notice-bad{color:#ff9b9b;}
/* Directory card thumbnail */
.grid .avatar,
.row img.avatar{
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 56px;
}
