@font-face {
    font-family: "Geologica-Bold";
    font-weight: 700;
    font-display: swap;
    src: local("Geologica-Bold"),
    url("../fonts/Geologica-Bold.ttf");
}
/*․casino-box {*/
/*    display: grid ;*/
/*    grid-template-columns: repeat(3, 354px);*/
/*}*/
.casino-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
}



.casino-item {
    display: flex;
    justify-content: center;
}

.casino-card {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;

}

.casino-card__header {
    background-color: #1a1a1a;
    height: 80px;
    display: flex;
    justify-content: center;
}


.casino-card__logo {
height: 80px;

}

.casino-card__body {

}

.casino-card__name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.casino-card__info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
}

.casino-card__bonus,
.casino-card__freespins {
    text-align: center;
}

.casino-card__promo {
    font-size: 1.2rem;
    padding: 0 16px;
}

.casino-card__promo-code {
    display: flex;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
    font-weight: bold;
    border: 1px solid #080D25;

}

.casino-card__footer {
    padding: 16px;
}

.casino-card__button {
    display: block;
    color: white;
    background-color: #5865F2;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.casino-card__button:hover {
    background-color: #4752C4;
}

.casino-card__info span {
    color:#080D25;
    font-family: "Geologica-Bold";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}
.casino-card__bonus ,.casino-card__freespins {
    display: flex;
    flex-direction: column;
}
.casino-card__bonus-percent {
    font-size: 26px !important;
    font-weight: 700;
}

.hidden {
    display: none;
}

/* Обертка для центрирования кнопки */
.button-wrapper {
    display: flex;
    justify-content: center; /* Центрирует кнопку по горизонтали */
    margin-top: 20px;        /* Отступ сверху */
}

/* Стили самой кнопки */
.load-more-btn {
    padding: 10px 20px;
    border: 2px solid #007bff;
    border-radius: 20px;
    background-color: transparent;
    color: #080D25; /* Цвет текста */
    text-align: center;

    font-family: "Geologica-Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* Высота строки */

    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background-color: #007bff;
    color: #fff;
}
