/* style.css */
:root {
  --card: #12121a;
  --muted: #9aa0a6;
  --text: #e7e7ee;
  --accent: #8a7bff;
  --accent-2: #20d3ff;
  --btn: #181822;
  --ring: rgba(138,123,255,.55);
}
* { box-sizing: border-box }
html,body { height: 100%; margin:0 }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: url('https://djmades.com/images/back_mds_1.png') no-repeat left center fixed;
  background-size: cover;
  color: var(--text);
  display: grid; place-items: center;
  padding: 24px;
}
.wrap { width: 100%; max-width: 560px; position: relative; }
.card {
    background:color-mix(in srgb, #12121ac9 96%, transparent);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 22px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
header {
  display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: center; margin-bottom: 8px; }
.avatar {
  width: 96px; height: 96px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.08);
  background: #0e0e14; display: grid; place-items: center; position: relative;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block }
h1 { font-size: 26px; line-height: 1.15; margin: 0 0 6px 0 }
.tagline { color: var(--muted); margin: 0 0 8px 0 }
.meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; color: var(--muted); font-size: 13px }
.meta .dot { width: 4px; height: 4px; border-radius: 999px; background: #2c2c36; }
.links { margin-top: 18px; display: grid; gap: 12px }
.btn {
  display: grid; grid-template-columns: 40px 1fr 24px; align-items: center; gap: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px; text-decoration: none; color: var(--text);
  padding: 12px; position: relative; overflow: hidden; isolation: isolate;
}
.btn::before {
  content:""; position:absolute; inset: -1px; border-radius:14px; padding:1px; background: linear-gradient(120deg, rgba(138,123,255,.65), rgba(32,211,255,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .25;
}
.btn:hover { transform: translateY(-1px); transition: transform .2s ease }
.btn:active { transform: translateY(0) }
.btn .icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--btn); border: 1px solid rgba(255,255,255,.06); font-size: 18px; color: var(--text); }
.btn strong { font-weight: 600 }
.btn small { color: var(--muted) }
.btn .chev { opacity: .6 }
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.pill { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); border:1px solid rgba(255,255,255,.08); padding:8px 10px; border-radius:999px; background:#0e0e14; }
footer { margin-top: 18px; color: var(--muted); font-size: 12px; display:flex; align-items:center; justify-content:space-between }
.toggle { appearance:none; cursor:pointer; background:#0e0e14; color:var(--text); border:1px solid rgba(255,255,255,.1); border-radius: 10px; padding:8px 10px }
.divider { height:1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); margin: 14px 0 }
@media (max-width: 420px) {
  header { grid-template-columns: 80px 1fr }
  .avatar { width:80px; height:80px }
}