:root{
  --bg1:#0b1220;
  --bg2:#0b2a6f;
  --card:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:#eaf2ff;
  --muted:#b9d1ff;
  --blue:#2563eb;
  --blue2:#1d4ed8;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(135deg,var(--bg1),var(--bg2));
  color:var(--text);
}

.wrap{
  max-width:880px;
  margin:0 auto;
  padding:28px 16px 48px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  backdrop-filter: blur(12px);
}

.heroTop{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.avatar{
  width:120px;height:120px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #3b82f6;
}

h1{margin:0 0 6px;font-size:32px}
h2{margin:0 0 10px}
.tagline{margin:0;color:var(--muted)}

.content{margin-top:16px;line-height:1.65}
.content a{color:#93c5fd}
.content code{background:rgba(0,0,0,.25);padding:2px 6px;border-radius:6px}
.content pre{background:rgba(0,0,0,.25);padding:12px;border-radius:12px;overflow:auto}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width:640px){ .grid2{grid-template-columns:1fr} }

input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px;resize:vertical}

button{
  width:100%;
  margin-top:10px;
  padding:12px 14px;
  border:none;
  border-radius:10px;
  background:var(--blue);
  color:white;
  font-weight:700;
  cursor:pointer;
}
button:hover{background:var(--blue2)}

.muted{color:var(--muted)}
.status{margin-top:10px;color:var(--muted)}
.footer{opacity:.9;font-size:14px;text-align:center}
.footer a{color:#93c5fd}
