.best-top3{
    margin: 11px 6px;
    display: flex;
    gap: 8px;
    align-items: stretch;
    justify-content: space-between;
}

.best-top3__item{
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff !important;
    background: #cfd5e6;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.best-top3__item:hover{
    transform: translateY(-2px);
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}

.best-top3__photo{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.best-top3__photo img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.best-top3__item:before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,.38) 0%, rgba(0,0,0,.08) 35%, rgba(0,0,0,.58) 100%);
}

.best-top3__top{
    position: absolute;
    top: 6px;
    left: 4px;
    right: 4px;
    z-index: 3;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.best-top3__nick{
    max-width: 92%;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.best-top3__bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 10px 8px 9px;
    text-align: center;
}

.best-top3__label{
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.best-top3__meta{
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.2;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.best-top3__online{
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2a9e2a;
    box-shadow: 0 0 0 2px rgba(255,255,255,.9);
    animation: bestOnlinePulse 1.8s ease-in-out infinite;
}

.country-users-wrap{
    margin: 14px 8px 10px;
}

.country-users-title{
    margin: 0 0 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.25;
}

.country-users-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
    gap: 10px;
}

.zn-card{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 198px;
    text-decoration: none;
    color: #fff !important;
    border: 1px solid rgba(127,127,127,.20);
    transition: transform .2s ease, box-shadow .2s ease;
}

.zn-card:hover{
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(0,0,0,.14);
}

.zn-card__photo{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(127,127,127,.10);
}

.zn-card__photo img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.zn-card::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,.56), rgba(0,0,0,.12) 36%, rgba(0,0,0,.62));
}

.zn-card__top{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
    padding: 4px 4px;
}

.zn-card__bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 6px 6px;
}

.zn-card__nickrow{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
}

.zn-card__nick{
    min-width: 0;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    background: rgba(0,0,0,.4);
    border-radius: 12px;
    padding: 2px 6px;
}

.zn-card__online{
    flex: 0 0 auto;
    font-size: 11px;
    line-height: 1;
    padding: 1px 4px;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    white-space: nowrap;
}

.zn-card__meta{
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.zn-card__meta + .zn-card__meta{
    margin-top: 2px;
}

.zn-online-pulse{
    color: #2a9e2a;
    animation: znOnlinePulse 1.8s ease-in-out infinite;
}

.zn-offline{
    color: rgb(242, 128, 111);
}

.zn-woman{
    color: rgb(255, 103, 240);
    font-size: 16px;
}

.zn-man{
    color: rgb(147, 179, 254);
    font-size: 16px;
}

.country-users-loadmore-wrap{
    margin-top: 12px;
}

.country-users-loadmore{
    width: 100%;
    border: 1px solid rgba(127,127,127,.35);
    border-radius: 12px;
    color: inherit;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    display: none;
    min-height: 38px;
}

.country-users-loadmore.is-visible{
    display: block;
}

.country-users-loadmore[disabled]{
    opacity: .7;
    cursor: default;
    pointer-events: none;
}

.zn-spinner{
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    vertical-align: -3px;
    animation: znSpin .8s linear infinite;
    margin-right: 8px;
}

.country-users-divider{
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 2px;
    opacity: .9;
}

.country-users-divider::before,
.country-users-divider::after{
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(127,127,127,.35);
}

.country-users-divider span{
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

@keyframes bestOnlinePulse{
    0%{opacity:1;}
    50%{opacity:.65;}
    100%{opacity:1;}
}

@keyframes znOnlinePulse{
    0%{opacity:1;}
    50%{opacity:.65;}
    100%{opacity:1;}
}

@keyframes znSpin{
    to{ transform: rotate(360deg); }
}

@media screen and (max-width: 500px){
    .best-top3{
        gap: 6px;
    }

    .best-top3__item{
        height: 150px;
        border-radius: 14px;
    }

    .best-top3__nick{
        font-size: 10px;
        padding: 2px 4px;
    }

    .best-top3__label{
        font-size: 12px;
    }

    .best-top3__meta{
        font-size: 10px;
    }
}

@media screen and (min-width: 525px){
    .best-top3{
        gap: 8px;
        margin: 11px 8px;
    }

    .best-top3__item{
        height: 180px;
        border-radius: 14px;
    }

    .best-top3__nick{
        font-size: 12px;
        padding: 2px 4px;
    }

    .best-top3__label{
        font-size: 12px;
    }

    .best-top3__meta{
        font-size: 12px;
    }
}

@media screen and (min-width: 870px){
    .best-top3{
        gap: 12px;
        margin: 11px 30px;
    }

    .best-top3__item{
        height: 200px;
        border-radius: 14px;
    }

    .best-top3__nick{
        font-size: 12px;
        padding: 2px 4px;
    }

    .best-top3__label{
        font-size: 12px;
    }

    .best-top3__meta{
        font-size: 12px;
    }
}

@media screen and (min-width: 1200px){
    .best-top3{
        gap: 30px;
        margin: 11px 60px;
    }

    .best-top3__item{
        height: 200px;
        border-radius: 14px;
    }

    .best-top3__nick{
        font-size: 12px;
        padding: 2px 4px;
    }

    .best-top3__label{
        font-size: 12px;
    }

    .best-top3__meta{
        font-size: 12px;
    }
}