:root { --brand:#0ea5e9; --bg:#0b1220; --card:#111827; --text:#e5e7eb; --accent:#10b981; }
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);
  font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
a{color:var(--brand);text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:24px}
.header{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.logo{display:flex;align-items:center;gap:10px;font-weight:700}
.logo-mark{width:36px;height:36px;border-radius:10px;background:linear-gradient(135deg,var(--brand),#60a5fa)}
.searchbar{display:flex;gap:8px;flex:1;max-width:760px;margin:0 16px}
.searchbar input{flex:1;padding:14px 16px;border-radius:12px;border:1px solid #1f2937;background:#0f172a;color:var(--text)}
.searchbar button{padding:14px 18px;border-radius:12px;border:0;background:var(--brand);color:#fff;font-weight:600;cursor:pointer}
.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:16px}
.card{background:var(--card);border:1px solid #1f2937;border-radius:16px;padding:18px;min-height:160px;position:relative;overflow:hidden}
.card h3{margin:0 0 8px}
.badge{display:inline-block;background:#111827;border:1px solid #1f2937;border-radius:999px;padding:6px 10px;font-size:12px;color:#a5b4fc}
.avatar{position:fixed;right:24px;bottom:24px;width:120px;height:120px;border-radius:999px;border:4px solid #1f2937;background:#0f172a;display:grid;place-items:center;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.avatar img{width:100%;height:100%;object-fit:cover;border-radius:999px}
.footer{opacity:.7;margin-top:28px;font-size:12px}
.list{margin:8px 0 0;padding-left:18px}
.kicker{opacity:.8;font-size:14px;margin-bottom:6px}
.thumb{position:absolute;right:-10px;bottom:-10px;width:120px;opacity:.25;filter:grayscale(1)}
