
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 30px;
}

/* онлайн на серверах */
.card { 
    width: 290px;
    transition: .3s;
    text-align: center;
    background: rgba(255, 255, 255, 0);
}
.card:hover {
    transform: scale(1.05);
}
.card>img {
    width: 158px;
    height: auto;
    cursor: pointer;
}
.card>p {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 8px 0px;
}
.card>span {
    color: rgb(39, 39, 39);
    font-size: 1rem;
}

/* реклама магазина */
.card2 { 
    width: 260px;
    transition: .3s;
    text-align: center;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;    
}
.card2:hover {
    transform: scale(1.05);
    /* box-shadow: 0 0 16px rgba(0, 0, 0, 0.8); */
}
.card2>img {
    width: 220px;
    height: auto;
}
.card2>p {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 10px 0px 0px 0px;
}
.card2>span {
    color: rgb(39, 39, 39);
    font-size: 1.2rem;
}

.ico {
    position: relative;
    height: 24px;
    top: 5px;
    right: -5px;
}

/* переход в магазин */
.go_dinoshop {
    text-align: center;
    margin: 35px;
}
.go_dinoshop>a {
    color: white;
    transition: .3s;
    padding: 10px 30px;
    font-size: 1.6rem;
    background: rgba(192, 106, 0, 0.7);
    box-shadow: 0 0 12px #7d8fa1;
    border-radius: 22px;
    text-decoration: none;
}

.go_dinoshop>a:hover {
    padding: 10px 40px;
    background-color: rgba(192, 106, 0, 1);
}