/* ========== LINKTREE – MINIMAL ========== */
.linktree-page {
    background: var(--bg-color);
    min-height: calc(100vh - 70px); /* adjust for header height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.linktree-container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

/* Profile */
.profile {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid var(--primary-accent);
    transition: transform 0.2s ease;
}

.profile-avatar:hover {
    transform: scale(1.02);
}

.avatar-emoji {
    line-height: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.profile-bio {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--surface-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.2s, transform 0.15s;
    border: 1px solid transparent;
}

.link-item:hover {
    background: var(--bg-color);
    border-color: var(--primary-accent);
    transform: translateX(4px);
}

.link-icon {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.link-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.link-arrow {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.link-item:hover .link-arrow {
    transform: translateX(4px);
    color: var(--primary-accent);
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--surface-color);
}

.social-link {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.2s, transform 0.15s;
}

.social-link:hover {
    color: var(--primary-accent);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .profile-avatar {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }
    .profile-name {
        font-size: 1.25rem;
    }
    .link-item {
        padding: 0.6rem 0.75rem;
    }
    .social-links {
        gap: 1rem;
    }
    .social-link {
        font-size: 1.25rem;
    }
}