* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', sans-serif; background: #0f172a; color: #e2e8f0; display: flex; justify-content: center; align-items: center; min-height: 100vh; padding: 24px; }
.card { background: #1e293b; border: 1px solid #334155; border-radius: 20px; padding: 40px 48px; text-align: center; max-width: 520px; width: 100%; box-shadow: 0 25px 50px rgba(0,0,0,.4); }
.avatar-wrap { position: relative; display: inline-block; margin-bottom: 20px; }
.avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #38bdf8; display: block; }
.avatar-placeholder { width: 100px; height: 100px; border-radius: 50%; background: #334155; font-size: 3rem; display: flex; align-items: center; justify-content: center; }
.badge-online { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; padding: 2px 10px; border-radius: 999px; white-space: nowrap; }
.badge-online.online { background: #022c22; color: #4ade80; }
.badge-online.offline { background: #1c1917; color: #78716c; }
h1 { font-size: 1.6rem; color: #f8fafc; margin-bottom: 4px; }
.position { color: #38bdf8; font-size: 0.95rem; margin-bottom: 28px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; text-align: left; }
.info-item { background: #0f172a; border-radius: 10px; padding: 12px 16px; }
.info-item.full { grid-column: 1 / -1; }
.label { display: block; font-size: 0.75rem; color: #64748b; margin-bottom: 4px; }
.value { font-size: 0.88rem; color: #e2e8f0; word-break: break-all; }
.footer { margin-top: 20px; font-size: 0.75rem; color: #475569; }