/* --- Linktree Styles --- */
body.linktree-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.linktree-container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.linktree-card {
    background: linear-gradient(145deg, #4A4A4A 0%, #3a3a3a 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 40px rgba(26, 26, 46, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s cubic-bezier(.23,1.01,.32,1) 0.1s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.linktree-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #2a2a2a;
    box-shadow: 0 4px 24px rgba(26, 26, 46, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: #3a3a3a;
}

.linktree-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.linktree-bio {
    font-size: 1.1rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.linktree-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, #d8d8d8 0%, #ffffff 100%);
    box-shadow: 0 2px 12px rgba(26, 26, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    position: relative;
}

.social-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.social-icon.instagram:hover {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 4px 20px rgba(253, 89, 73, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.social-icon.tiktok:hover {
    transform: scale(1.08) rotate(6deg);
    box-shadow: 0 4px 20px rgba(37, 244, 238, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.linktree-links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.linktree-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.linktree-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 0;
    width: 100%;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, #4A4A4A 0%, #3a3a3a 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(26, 26, 46, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    position: relative;
}

.linktree-btn .icon {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.linktree-btn.instagram-link {
    background: linear-gradient(145deg, #fd5949 0%, #d6249f 50%, #285AEB 100%);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(253, 89, 73, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.linktree-btn.instagram-link:hover {
    background: linear-gradient(145deg, #d6249f 0%, #fd5949 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 20px rgba(253, 89, 73, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.linktree-btn.tiktok-link {
    background: linear-gradient(145deg, #25f4ee 0%, #fe2c55 100%);
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(37, 244, 238, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.linktree-btn.tiktok-link:hover {
    background: linear-gradient(145deg, #fe2c55 0%, #25f4ee 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 20px rgba(37, 244, 238, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.linktree-footer {
    margin-top: 2rem;
    text-align: center;
    color: #cfcfcf;
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .linktree-card {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
        max-width: 90vw;
    }
    
    .linktree-title {
        font-size: 1.5rem;
    }
    
    .linktree-avatar {
        width: 80px;
        height: 80px;
    }
    
    .linktree-socials {
        gap: 0.7rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .links-heading {
        font-size: 1rem;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 