:root{
  --blue:#2145c7;
  --blue2:#3b6cff;
  --dark:#030407;
  --card:#101114;
  --soft:#17191f;
  --text:#ffffff;
  --muted:#b8c0d6;
  --border:rgba(59,108,255,.45);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:radial-gradient(circle at top, #101a3d 0%, #05060a 38%, #000 100%);
  color:var(--text);
  min-height:100vh;
}
a{color:inherit}
.wrap{width:100%;max-width:520px;margin:0 auto;padding:22px}
.card{
  background:rgba(16,17,20,.96);
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}
.site-logo{
  display:block;
  max-width:160px;
  width:55%;
  height:auto;
  margin:0 auto 14px;
}
.site-icon{
  display:block;
  width:52px;
  height:52px;
  object-fit:contain;
  margin:0 auto 12px;
}
h1{color:var(--blue2); margin:0 0 18px; font-size:34px}
h2{color:var(--blue2); margin-top:0}
p{color:var(--muted); line-height:1.5}
input, textarea, select{
  width:100%;
  padding:14px;
  margin-bottom:13px;
  border-radius:12px;
  border:1px solid #30333b;
  background:#18191d;
  color:white;
  font-size:16px;
}
textarea{min-height:120px; resize:vertical}
button,.btn{
  display:inline-block;
  width:100%;
  padding:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  border:0;
  border-radius:14px;
  color:white;
  font-size:16px;
  font-weight:700;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
}
.btn.secondary{background:#242733}
.btn.danger{background:#9d1f1f}
.btn.good{background:#188a36}
.notice{
  padding:12px;
  border-radius:12px;
  margin:12px 0;
  background:#152041;
  border:1px solid var(--border);
}
.error{
  padding:12px;
  border-radius:12px;
  margin:12px 0;
  background:#421515;
  border:1px solid #ff5c5c;
}
.profile{
  width:100%;
  max-width:440px;
  margin:0 auto;
  padding:24px 18px 36px;
  text-align:center;
}
.profile-card{
  background:rgba(8,9,13,.86);
  border:1px solid var(--border);
  border-radius:32px;
  padding:26px 18px;
  min-height:90vh;
}
.avatar{
  width:135px;
  height:135px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid var(--blue2);
  background:#111;
}
.profile h1{margin:16px 0 4px;font-size:30px;color:#fff}
.headline{color:#53a1ff;margin-bottom:14px}
.bio{color:#dce4ff;font-size:15px;margin:0 auto 18px}
.link-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  margin:10px 0;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.24);
  text-decoration:none;
  color:#fff;
  font-weight:700;
}
.link-btn small{color:#9fb3ff;font-weight:400}
.section-title{
  margin:22px 0 10px;
  color:#4ca3ff;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.dropdown-box{
  text-align:left;
  padding:15px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.15);
  color:#dce4ff;
}
.footer-brand{
  margin-top:30px;
  color:#9fb3ff;
  font-weight:700;
  font-size:13px;
}
.footer-brand img{
  display:block;
  width:120px;
  margin:8px auto 0;
  opacity:.9;
}
.dashboard{
  display:grid;
  grid-template-columns:220px 1fr;
  min-height:100vh;
}
.sidebar{
  background:#05070d;
  border-right:1px solid var(--border);
  padding:20px;
}
.sidebar .site-logo{
  width:100%;
  max-width:170px;
  margin-bottom:22px;
}
.sidebar a{
  display:block;
  padding:12px;
  margin-bottom:8px;
  border-radius:12px;
  color:#dce4ff;
  text-decoration:none;
  background:rgba(255,255,255,.04);
}
.main{padding:24px}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
}
.table{width:100%;border-collapse:collapse}
.table td,.table th{border-bottom:1px solid #333;padding:10px;text-align:left}
.status{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#222;
  color:#fff;
  font-size:12px;
}
.status.active{background:#188a36}
.status.pending{background:#a77912}
.qr{text-align:center}
.qr img{
  width:220px;
  height:220px;
  background:white;
  padding:10px;
  border-radius:16px;
}
@media(max-width:760px){
  .dashboard{display:block}
  .sidebar{
    border-right:0;
    border-bottom:1px solid var(--border)
  }

  .main{padding:16px}

  h1{font-size:28px}

  .site-logo{
    max-width:140px;
    width:50%;
  }
}
