
body {
    font-family: sans-serif;
    background-color: #f0f0f0;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H0L6 0z'/%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.profile-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.profile-pic-container {
    margin-bottom: 20px;
    cursor: pointer;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e9e9e9;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ccc;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.profile-pic:hover {
    background-color: #ddd;
}

.upload-icon {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.profile-pic.has-image .upload-icon {
    opacity: 0;
}

.profile-info h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.profile-info h2 {
    margin: 5px 0 15px;
    font-size: 18px;
    color: #777;
    font-weight: normal;
}

.profile-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.social-links {
    margin-top: 25px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 10px;
    color: #555;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
