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

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

.container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 80px 60px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15), 0 8px 25px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.profile-picture {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-picture:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.3);
}

.name {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.subheading {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1e40af, #60a5fa, #3b82f6);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: gradientMove 3s ease-in-out infinite;
}

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

.bio {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e1e7ef;
    transition: all 0.2s ease;
}

.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e1e7ef;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.social-item:last-child {
    border-bottom: none;
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.4);
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 6px;
    border-bottom: 1px solid transparent;
}

.social-name {
    font-size: 16px;
    color: #1e293b;
    font-weight: 500;
}

.social-year {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e1e7ef;
}

.copyright {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .container {
        padding: 60px 50px;
        max-width: 500px;
    }
    
    .profile-picture {
        width: 140px;
        height: 140px;
        font-size: 56px;
        margin-bottom: 30px;
    }
    
    .name {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }
    
    .bio {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 30px;
    }
    
    .profile-picture {
        width: 120px;
        height: 120px;
        font-size: 48px;
    }
    
    .name {
        font-size: 28px;
    }
    
    .bio {
        font-size: 16px;
    }
}