.ranking-section{
    background:#f3f3f3;
    padding:30px 10px;
}

.ranking-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
}

.ranking-card{
    flex:1;
    text-align:center;
    position:relative;
}

.ranking-card.active{
    transform:scale(1.15);
    z-index:10;
}

.rank-badge{
    width:32px;
    display:block;
    margin:0 auto 10px;
}

/* .app-icon{ */
    /* width:90px; */
    /* height:90px; */
    /* border-radius:18px; */
    /* object-fit:cover; */
    /* box-shadow:0 5px 15px rgba(0,0,0,.15); */
/* } */
.app-icon{
    width:90px;
    height:90px;
    border-radius:18px;
    object-fit:cover;
    display:block;
    margin:0 auto;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.rating-img{
    width:90px;
	display:block;
    margin-top:10px;
	 margin:0 auto;
}

.safe-text{
    font-size:12px;
    color:#777;
    margin-top:8px;
    font-weight:600;
}

.download-btn{
    display:inline-block;
    margin-top:12px;
    background:#ff2a2a;
    color:#fff;
    text-decoration:none;
    padding: 0px 9px;
    border-radius:8px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(255,0,0,.3);
    transition:.3s;
}

.download-btn:hover{
    background:#e60000;
}

@media(max-width:768px){

    .ranking-container{
        gap:10px;
    }

    .ranking-card.active{
        transform:scale(1.05);
    }

    .app-icon{
        width:75px;
        height:75px;
    }

    .download-btn{
        padding:8px 14px;
        font-size:13px;
    }
}