
:root {
    --bg: #0d1621;
    --panel: rgba(16, 24, 35, 0.9);
    --panel-2: rgba(26, 38, 52, 0.82);
    --text: #eef4fb;
    --muted: #9fb1c6;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 20px 50px rgba(0,0,0,0.35);
    --radius: 24px;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #111c28 0%, #0b121a 100%);
}
a { color: inherit; text-decoration: none; }
.page {
    position: relative;
    min-height: 100vh;
    padding: 40px 16px 28px;
}
.backdrop {
    position: fixed;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(0px);
    opacity: .14;
    pointer-events: none;
}
.hero-card, .links, .footer {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}
.hero-card {
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 32px;
    box-shadow: var(--shadow);
    padding: 30px 22px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
}
.hero-pattern {
    height: 140px;
    margin: -30px -22px 0;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    border-bottom: 1px solid var(--border);
}
.avatar {
    width: 122px;
    height: 122px;
    border-radius: 15%;
    object-fit: cover;
    margin-top: -61px;
    border: 5px solid rgba(14, 20, 29, 0.95);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    background: #0f1721;
}
.hero-card h1 {
    margin: 14px 0 6px;
    font-size: 32px;
    line-height: 1.1;
}
.tag { margin: 0; color: var(--muted); font-size: 16px; }
.bio { margin: 18px auto 0; max-width: 520px; font-size: 18px; }
.meta {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.meta span {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted);
    font-size: 14px;
}
.links { margin-top: 18px; display: grid; gap: 14px; }
.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.link-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.16);
    background: rgba(21, 31, 44, 0.96);
}
.link-image {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    flex: 0 0 72px;
    background: #111923;
}
.link-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.link-copy strong { font-size: 19px; }
.link-copy small {
    color: var(--muted);
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.link-arrow { margin-left: auto; font-size: 26px; color: var(--muted); }
.footer {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}
.legal-page { display: flex; align-items: center; justify-content: center; }
.legal-card { max-width: 820px; text-align: left; }
.legal-content h2, .legal-content h3 { margin-top: 0; }
.legal-content h3 { margin-top: 22px; }
.legal-content p { color: #d4dfeb; line-height: 1.7; }
.legal-back { margin-top: 24px; }
@media (max-width: 640px) {
    .page { padding-top: 18px; }
    .hero-card { padding: 18px 14px 16px; border-radius: 24px; }
    .hero-pattern { margin: -18px -14px 0; height: 110px; }
    .avatar { width: 96px; height: 96px; margin-top: -48px; }
    .hero-card h1 { font-size: 28px; }
    .bio { font-size: 16px; }
    .link-card { gap: 12px; border-radius: 18px; }
    .link-image { width: 62px; height: 62px; border-radius: 14px; }
    .link-copy strong { font-size: 17px; }
}
