@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
}

.card {
    width: 90%;
    max-width: 650px;
    border-radius: 25px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08),
        0 15px 30px rgba(0, 0, 0, 0.15);
}

.banner {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 6px solid white;
    margin-top: -65px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.content {
    padding: 25px 30px 35px;
    background-color: #fff;
}

.name {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.counter {
    font-size: 52px;
    font-weight: 700;
    margin: 15px 0;
    color: #2c3e50;
    line-height: 1.1;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    line-height: 1.1;
}

@media (max-width: 480px) {
    .card {
        width: 95%;
        border-radius: 20px;
    }

    .banner {
        height: 180px;
    }

    .avatar {
        width: 100px;
        height: 100px;
        border-width: 4px;
        margin-top: -50px;
    }

    .content {
        padding: 20px 20px 25px;
    }

    .name {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .counter {
        font-size: 40px;
        margin: 10px 0;
    }
}