/* Modern Dark Theme CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, #6366f1 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, #8b5cf6 0%, transparent 50%),
                      radial-gradient(circle at 50% 50%, #06b6d4 0%, transparent 50%);
    opacity: 0.1;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.profile-card {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4, #6366f1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 0.6;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    position: relative;
    margin-bottom: 20px;
}

.profile-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    background-clip: padding-box;
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.5);
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.15) brightness(1.08) saturate(1.1);
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.link-content i:first-child {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.link-content span {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.link-content i:last-child {
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-link:hover .link-content i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

/* Platform specific colors */
.onlyfans:hover { background: linear-gradient(135deg, rgba(0, 172, 237, 0.2), rgba(0, 172, 237, 0.1)); }
.fansly:hover { background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1)); }
.tiktok:hover { background: linear-gradient(135deg, rgba(255, 0, 80, 0.2), rgba(255, 0, 80, 0.1)); }
.twitter:hover { background: linear-gradient(135deg, rgba(29, 161, 242, 0.2), rgba(29, 161, 242, 0.1)); }
.instagram:hover { 
    background: linear-gradient(135deg, 
        rgba(225, 48, 108, 0.2), 
        rgba(255, 204, 128, 0.1)
    ); 
}
.telegram:hover { background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1)); }

.onlyfans i:first-child { color: #00aced; }
.fansly i:first-child { color: #3498db; }
.tiktok i:first-child { color: #ff0050; }
.twitter i:first-child { color: #1da1f2; }
.instagram i:first-child { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.telegram i:first-child { color: #0088cc; }

.footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .profile-card {
        padding: 30px 25px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-image img {
        width: 180px;
        height: 180px;
    }
    
    .social-link {
        padding: 14px 18px;
    }
    
    .link-content span {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .profile-card {
        padding: 25px 20px;
    }
    
    .links-container {
        gap: 10px;
    }
    
    .social-link {
        padding: 12px 16px;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-card {
    animation: fadeInUp 0.8s ease-out;
}

.social-link {
    animation: fadeInUp 0.8s ease-out;
}

.social-link:nth-child(1) { animation-delay: 0.1s; }
.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.3s; }
.social-link:nth-child(4) { animation-delay: 0.4s; }
.social-link:nth-child(5) { animation-delay: 0.5s; }
.social-link:nth-child(6) { animation-delay: 0.6s; }