* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--bg, #1e1f26);
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem;
    color: #e2e8f0;
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.avatar {
    display: block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid #334155;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description {
    margin-bottom: 2rem;
}

.description p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
}

.section {
    margin-top: 2rem;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    background: #374151;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: transform 0.15s, opacity 0.15s;
}

.link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.icon svg {
    width: 20px;
    height: 20px;
}

.icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.link-title {
    flex: 1;
    text-align: center;
    margin-right: 32px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    transition: transform 0.15s, opacity 0.15s;
}

.social:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social svg {
    width: 20px;
    height: 20px;
}

.footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.footer a {
    color: #f97316;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
