* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d, #000000);
    z-index: -1;
}

.stars,
.stars2,
.stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 10px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars 20s linear infinite;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 100px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 100px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 160px, #eee, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: stars 30s linear infinite;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 200px 100px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 250px 200px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: stars 40s linear infinite;
}

@keyframes stars {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

/* Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Bio Card with Glassmorphism */
.bio-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.8),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
        0 0 80px rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.02),
        transparent
    );
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Section */
.profile-section {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 28px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        inset 0 1px 5px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.profile-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.8),
        inset 0 1px 8px rgba(255, 255, 255, 0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.username {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.icon-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.icon-link svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.icon-link:hover::before {
    left: 100%;
}

.icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.discord-icon:hover {
    background: rgba(88, 101, 242, 0.2);
    box-shadow: 
        0 8px 25px rgba(88, 101, 242, 0.4),
        0 0 20px rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.3);
}

.telegram-icon:hover {
    background: rgba(0, 136, 204, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 136, 204, 0.4),
        0 0 20px rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.3);
}

.github-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 255, 255, 0.1);
}

.hosting-icon:hover {
    background: rgba(102, 126, 234, 0.2);
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .bio-card {
        padding: 35px 25px;
    }
    
    .profile-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .username {
        font-size: 1.7rem;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .icon-link {
        width: 45px;
        height: 45px;
    }
    
    .icon-link svg {
        width: 22px;
        height: 22px;
    }
}
