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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffb6c1 0%, #ffc0cb 25%, #ffd1dc 50%, #ffe4e1 75%, #fff0f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 209, 220, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 10%, rgba(255, 218, 185, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 10% 60%, rgba(255, 228, 225, 0.15) 0%, transparent 35%);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 192, 203, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 85% 75%, rgba(255, 182, 193, 0.3) 0%, transparent 55%),
        radial-gradient(circle at 45% 85%, rgba(255, 209, 220, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 75% 15%, rgba(255, 218, 185, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 25% 65%, rgba(255, 228, 225, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(255, 240, 245, 0.2) 0%, transparent 35%),
        radial-gradient(circle at 5% 90%, rgba(255, 182, 193, 0.15) 0%, transparent 30%);
    pointer-events: none;
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) scale(1.02);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-5px) translateY(8px) scale(0.98);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(8px) translateY(3px) scale(1.01);
        opacity: 0.85;
    }
}

.container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(255, 182, 193, 0.2);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 182, 193, 0.2);
    position: relative;
    z-index: 1;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-pic {
    margin-bottom: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffb6c1;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    margin-bottom: 10px;
}

.profile-pic i {
    font-size: 80px;
    color: #ffb6c1;
    margin-bottom: 10px;
}

.name {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.bio {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    width: 100%;
}

.link-button i {
    margin-right: 12px;
    font-size: 20px;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

.tiktok {
    background: linear-gradient(45deg, #000000 0%, #ff0050 100%);
    color: white;
}

.tiktok:hover {
    background: linear-gradient(45deg, #ff0050 0%, #000000 100%);
}

.email {
    background: linear-gradient(45deg, #4285f4 0%, #34a853 100%);
    color: white;
}

.email:hover {
    background: linear-gradient(45deg, #34a853 0%, #4285f4 100%);
}

.phone {
    background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.phone:hover {
    background: linear-gradient(45deg, #128c7e 0%, #25d366 100%);
}

.footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.footer p {
    color: #999;
    font-size: 14px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .link-button {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .link-button i {
        font-size: 18px;
        margin-right: 10px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

.link-button {
    animation: fadeInUp 0.6s ease-out;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
