body {
    background: #f4f7fa;
}

img {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid #ccc;
    opacity: 0;
    animation: fadeInImg 1s ease forwards;
}

@keyframes fadeInImg {
    to {
        opacity: 1;
    }
}

h2 {
    text-transform: uppercase;
}

.profile-card {
    max-width: 350px;
    margin: 40px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(60,60,120,0.15);
    padding: 32px 24px 28px 24px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s;
}

.profile-card:hover {
    box-shadow: 0 12px 40px rgba(60,60,120,0.25);
}

.profile-card h1 {
    margin: 0 0 8px 0;
    font-size: 2rem;
    color: #2d3a4b;
    font-weight: 700;
    letter-spacing: 1px;
}

.profile-card h2 {
    margin: 0 0 18px 0;
    font-size: 1.1rem;
    color: #6c7a89;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-card img {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid #e0e0e0;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 18px 0 18px 0;
    opacity: 0;
    animation: fadeInImg 1s ease forwards;
}

@keyframes fadeInImg {
    to {
        opacity: 1;
    }
}

.profile-card h3 {
    margin: 10px 0 0 0;
    font-size: 1.05rem;
    color: #3d4a5c;
    font-weight: 400;
    letter-spacing: 1px;
}