body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.profile-card {
    width: 350px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.profile-image {
    position: relative;
}

.profile-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.1);
}

.name {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.5em;
    padding: 10px 0;
}

.profile-info {
    padding: 20px;
    font-size: 1em;
    color: #333;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
}

.stat p {
    margin: 0;
    color: #999;
}
