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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(-45deg, #2d1b4e, #1a0f2e, #1a103d, #0d081a, #241438);
    background-size: 400% 400%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card {
    background: rgba(45, 27, 78, 0.9);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(138, 43, 226, 0.3);
    text-align: center;
    border: 2px solid rgba(147, 112, 219, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(147, 112, 219, 0.6);
    }
}

.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

h1 {
    color: #e6e6fa;
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tagline {
    color: #b19cd9;
    font-size: 18px;
    margin-bottom: 35px;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.link-btn:hover::before {
    left: 100%;
}

.link-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
}

.link-btn:active {
    transform: translateY(-2px) scale(1.01);
}

.twitch {
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
    color: white;
}

.twitch:hover {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    border-color: #b19cd9;
}

.telegram {
    background: linear-gradient(135deg, #a174ce 0%, #8a2be2 100%);
    color: white;
}

.telegram:hover {
    background: linear-gradient(135deg, #9f83ba 0%, #9966cc 100%);
    border-color: #b19cd9;
}

.youtube {
    background: linear-gradient(135deg, #925acb 0%, #ad80d7 100%);
    color: white;
}

.youtube:hover {
    background: linear-gradient(135deg, #9f83ba 0%, #935acc 100%);
    border-color: #b19cd9;
}

.discord {
    background: linear-gradient(135deg, #a174ce 0%, #8a2be2 100%);
    color: white;
}

.discord:hover {
    background: linear-gradient(135deg, #9f83ba 0%, #9966cc 100%);
    border-color: #b19cd9;
}

.tiktok {
    background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
    color: white;
}

.tiktok:hover {
    background: linear-gradient(135deg, #8a2be2 0%, #9370db 100%);
    border-color: #b19cd9;
}

.icon {
    margin-right: 12px;
    font-size: 24px;
}

.bio-section {
    background: rgba(26, 15, 46, 0.7);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(147, 112, 219, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.bio-section h2 {
    color: #d8bfd8;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.bio-section p {
    color: #c8a4d4;
    font-size: 16px;
    line-height: 1.6;
}

.footer {
    margin-top: 30px;
    color: #9370db;
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

@media (max-width: 640px) {
    .card {
        padding: 40px 25px;
    }
    
    h1 {
        font-size: 30px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .link-btn {
        padding: 16px 22px;
        font-size: 16px;
    }
    
    .bio-section {
        padding: 20px;
    }
    
    .bio-section h2 {
        font-size: 20px;
    }
    
    .bio-section p {
        font-size: 15px;
    }
}
