*{box-sizing:border-box}
:root{
  --bg:#090b0d;
  --panel:rgba(18,20,23,.88);
  --panel2:#12161a;
  --line:rgba(255,255,255,.09);
  --text:#f7f7f7;
  --muted:#a7adb4;
  --orange:#ff8619;
  --yellow:#ffbd35;
}
html,body{margin:0;min-height:100%;background:var(--bg);color:var(--text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
body{min-height:100vh;overflow-x:hidden;position:relative}
body:before{
  content:"";position:fixed;inset:0;pointer-events:none;opacity:.35;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.014) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(to bottom,black,transparent 72%);
}
.bg-glow{position:fixed;border-radius:50%;filter:blur(90px);pointer-events:none;opacity:.17}
.glow-one{width:420px;height:420px;background:#ff7d00;top:-180px;left:-100px}
.glow-two{width:360px;height:360px;background:#ffb11a;right:-160px;bottom:-160px}
.page-shell{width:min(100%,680px);margin:0 auto;padding:46px 18px 28px;position:relative;z-index:1}
.profile-card{
  padding:34px 22px 28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(25,28,31,.93),rgba(14,16,18,.94));
  border-radius:28px;
  box-shadow:0 28px 70px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter:blur(12px);
}
.logo-wrap{
  width:min(250px,70vw);height:190px;margin:0 auto 8px;
  display:flex;align-items:center;justify-content:center;
}
.logo{display:block;max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 12px 28px rgba(0,0,0,.35))}
h1{font-size:clamp(30px,7vw,46px);letter-spacing:-1.6px;text-align:center;margin:2px 0 8px;font-weight:850}
.subtitle{text-align:center;color:var(--muted);font-size:15px;margin:0 auto 28px;line-height:1.55;max-width:440px}
.link-list{display:grid;gap:13px}
.link-button{
  position:relative;display:flex;align-items:center;gap:13px;text-decoration:none;color:var(--text);
  padding:15px 16px;border-radius:17px;border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.027));
  transition:transform .16s ease,border-color .16s ease,background .16s ease,box-shadow .16s ease;
}
.link-button:hover{
  transform:translateY(-2px);
  border-color:rgba(255,153,43,.6);
  background:linear-gradient(180deg,rgba(255,138,25,.14),rgba(255,255,255,.035));
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.link-icon{
  width:44px;height:44px;flex:0 0 44px;border-radius:13px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--orange),var(--yellow));color:#161616;
  font-size:20px;font-weight:900;box-shadow:0 8px 22px rgba(255,132,20,.2);
}
.link-copy{display:block;min-width:0;flex:1}
.link-copy strong{display:block;font-size:16px;line-height:1.2}
.link-copy small{display:block;color:var(--muted);font-size:12.5px;margin-top:4px;line-height:1.3;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.arrow{font-size:28px;color:#787f87;margin-left:auto;line-height:1}
.empty-state{text-align:center;border:1px dashed rgba(255,255,255,.12);border-radius:16px;padding:22px;color:var(--muted);font-size:14px}
footer{text-align:center;color:#656b72;font-size:12px;padding:21px 10px 0}
@media(max-width:520px){
  .page-shell{padding:24px 12px 18px}
  .profile-card{padding:26px 14px 22px;border-radius:22px}
  .logo-wrap{height:160px}
  .link-button{padding:13px;border-radius:15px}
  .link-icon{width:42px;height:42px;flex-basis:42px}
}
