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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #ffe6e6 50%, #ffcccc 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

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

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0000, #990000);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.name {
    color: #cc0000;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: white;
}

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

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

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.youtube { 
    background: linear-gradient(45deg, #FF0000, #ff9c9c); 
}

.twitch { 
    background: linear-gradient(45deg, #9146FF, #b580ff); 
}

.twitter { 
    background: linear-gradient(45deg, #000000, #303030); 
}

.tiktok { 
    background: linear-gradient(45deg, #000000, #FF0000); 
}

.social-link.youtube:hover { 
    background: rgba(255, 0, 0, 0.15); 
    color: white; 
}

.social-link.twitch:hover { 
    background: rgba(145, 70, 255, 0.15); 
    color: white; 
}

.social-link.twitter:hover { 
    background: rgba(29, 161, 242, 0.15); 
    color: white; 
}

.social-link.tiktok:hover { 
    background: rgba(0, 0, 0, 0.15); 
    color: white; 
}

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

.container {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .profile-pic {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .name {
        font-size: 24px;
    }
}