:root {
    --primary-color: #0073e6;
    --hover-color: #005bb5;
    --background-gradient: linear-gradient(135deg, #6a11cb, #2575fc);
    --container-bg: rgba(255, 255, 255, 0.9);
    --text-color: #333;
    --secondary-text-color: #666;
    --shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

body {
    font-family: Arial, sans-serif;
    background: var(--background-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    animation: gradientBG 10s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    background-color: var(--container-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.name {
    font-size: 24px;
    margin: 10px 0;
    color: var(--text-color);
}

.bio {
    font-size: 14px;
    color: var(--secondary-text-color);
    margin-bottom: 20px;
}

.links .link {
    display: block;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.links .link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.links .link:hover::before {
    width: 0;
    height: 0;
}

.links .link:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.links .link span {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    .profile-pic {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 20px;
    }

    .bio {
        font-size: 12px;
    }

    .links .link {
        padding: 8px;
        font-size: 14px;
    }
}