:root { --bg: #0b0c0f; --card: #14161b; --card-hover: #1b1e25; --text: #f2f3f5; --muted: #9aa0a8; --line: #2a2d34; --accent: #8eb0d4; --pay: #00d632; } *, *::before, *::after { box-sizing: border-box; } html, body { margin: 0; min-height: 100%; } html { background: var(--bg); } body { position: relative; display: flex; justify-content: center; padding: max(48px, env(safe-area-inset-top)) 20px max(64px, env(safe-area-inset-bottom)); color: var(--text); background: radial-gradient(70% 42% at 50% 6%, rgba(142, 176, 212, 0.16), transparent 62%), radial-gradient(55% 36% at 88% 88%, rgba(62, 78, 58, 0.18), transparent 70%), radial-gradient(50% 32% at 8% 78%, rgba(28, 36, 52, 0.5), transparent 68%), linear-gradient(180deg, #12151c 0%, var(--bg) 46%, #090a0c 100%); font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; } body::before, body::after { content: ""; position: fixed; inset: 0; pointer-events: none; } body::before { z-index: 0; opacity: 0.22; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); mix-blend-mode: overlay; } body::after { z-index: 0; background: radial-gradient(120% 80% at 50% 40%, transparent 42%, rgba(0, 0, 0, 0.42) 100%); } main { position: relative; z-index: 1; width: min(26.5rem, 100%); text-align: center; } .avatar { width: 112px; height: 112px; object-fit: cover; background: #fff; border: 1px solid rgba(142, 176, 212, 0.28); border-radius: 28px; box-shadow: 0 0 0 8px rgba(142, 176, 212, 0.06), 0 22px 50px rgba(0, 0, 0, 0.45); } .eyebrow { margin: 22px 0 0; color: var(--accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; } h1 { margin: 8px 0 6px; font-size: clamp(2rem, 7vw, 2.5rem); font-weight: 650; letter-spacing: -0.04em; line-height: 1.05; } .bio { margin: 0 0 28px; color: var(--muted); font-size: 1rem; line-height: 1.45; } nav { display: grid; gap: 10px; } button.link { width: 100%; font: inherit; cursor: pointer; } .link { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 12px; padding: 14px 16px; color: inherit; background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); text-decoration: none; text-align: left; transition: transform 140ms ease, border-color 140ms ease, background 140ms ease; } .link.copied, .link.copied:hover, .link.copied:focus-visible { border-color: #5865f2; } .link:hover, .link:focus-visible { background: var(--card-hover); border-color: var(--accent); transform: translateY(-1px); } .link:focus-visible { outline: 2px solid #fff; outline-offset: 3px; } .link.pay:hover, .link.pay:focus-visible { border-color: var(--pay); } .icon { display: grid; place-items: center; width: 40px; height: 40px; color: var(--text); background: #1c2028; border-radius: 12px; } .icon svg { width: 18px; height: 18px; } .copy { display: flex; min-width: 0; flex-direction: column; gap: 2px; } .label { font-size: 1rem; font-weight: 650; letter-spacing: -0.02em; } .handle { overflow: hidden; color: var(--muted); font-size: 0.86rem; text-overflow: ellipsis; white-space: nowrap; } .go { color: var(--muted); font-size: 1.05rem; } footer { margin-top: 36px; color: #6b717a; font-size: 0.8rem; } @media (max-width: 420px) { .link { padding: 13px 12px; } } @media (prefers-reduced-motion: reduce) { .link { transition: none; } .link:hover, .link:focus-visible { transform: none; } }