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

body {
    font-family: 'Merriweather', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.content-pane {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 60px;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter:
        contrast(1.1)
        saturate(1.1)
        brightness(1.05);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.profile-image:hover img {
    filter:
        contrast(1.15)
        saturate(1.2)
        brightness(1.1);
}


.profile-info h1 {
    font-family: 'Lexend', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bio {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.bio p {
    margin-bottom: 20px;
}

.bio p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #555;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-links a:hover {
    color: #333;
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .content-pane {
        padding: 40px 30px;
        margin: 10px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-info h1 {
        font-size: 2.5rem;
    }

    .bio {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content-pane {
        padding: 30px 20px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .bio {
        font-size: 1rem;
    }
}

.copyright {
    text-align: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.copyright p {
    margin: 0;
}