.profile-card {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    background-color: var(--background-color, #0A2A3C);
    color: white;
    border: 2px solid var(--border-color, white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /** overflow: hidden; **/
}

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color, rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.profile-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    position: relative;
    top: -40px;
    z-index: 2;
    overflow: hidden;
}

.profile-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--name-color, white);
    z-index: 2;
}

.profile-age-country {
    font-size: 18px;
    color: var(--text-color, white);
    z-index: 2;
}

p {
    font-size: 14px;
    margin: 5px 0;
    z-index: 2;
}
