* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0f0f1e 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

/* Profile Card */
.profile-card {
    background: rgba(20, 30, 45, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 150, 200, 0.2);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Image Wrapper */
.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    animation: scaleIn 0.6s ease-out;
}

.profile-image:hover {
    transform: scale(1.05);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(100, 150, 200, 0.5), rgba(150, 100, 200, 0.5));
    opacity: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Name */
.name {
    font-size: 2.5em;
    font-weight: 700;
    color: #e0e8f0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(100, 150, 200, 0.3);
}

/* Bio */
.bio {
    color: #a0b0c0;
    font-size: 1.1em;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    font-size: 1.3em;
}

.social-btn span {
    flex: 1;
}

/* Instagram */
.social-btn.instagram {
    background: rgba(230, 64, 130, 0.85);
    border: 1px solid rgba(230, 64, 130, 1);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    background: rgba(230, 64, 130, 1);
    box-shadow: 0 10px 25px rgba(230, 64, 130, 0.4);
}

/* TikTok */
.social-btn.tiktok {
    background: rgba(25, 25, 25, 0.85);
    border: 1px solid rgba(25, 25, 25, 0.85);
}

.social-btn.tiktok:hover {
    transform: translateY(-3px);
    background: rgba(25, 25, 25, 1);
    box-shadow: 0 10px 25px rgba(100, 100, 100, 0.4);
}

/* Twitter */
.social-btn.twitter {
    background: rgba(29, 161, 242, 0.85);
    border: 1px solid rgba(29, 161, 242, 1);
}

.social-btn.twitter:hover {
    transform: translateY(-3px);
    background: rgba(29, 161, 242, 1);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

/* YouTube */
.social-btn.youtube {
    background: rgba(255, 0, 0, 0.85);
    border: 1px solid rgba(255, 0, 0, 1);
}

.social-btn.youtube:hover {
    transform: translateY(-3px);
    background: rgba(255, 0, 0, 1);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

/* Telegram */
.social-btn.telegram {
    background: rgba(0, 136, 204, 0.85);
    border: 1px solid rgba(0, 136, 204, 1);
}

.social-btn.telegram:hover {
    transform: translateY(-3px);
    background: rgba(0, 136, 204, 1);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.4);
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(100, 150, 200, 0.3), transparent);
    margin: 30px 0;
}

/* Footer Text */
.footer-text {
    color: #708090;
    font-size: 0.9em;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-card {
        padding: 40px 25px;
        max-width: 100%;
        margin: 20px;
    }
    
    .name {
        font-size: 2em;
        letter-spacing: 1px;
    }
    
    .bio {
        font-size: 1em;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .glow {
        width: 130px;
        height: 130px;
    }
    
    .social-btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }
    
    .social-btn i {
        font-size: 1.1em;
    }
}

@media (max-width: 400px) {
    .profile-card {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}
