.cookieinfo {
    width: 100%;
    font-size: 13px !important;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 0 !important;
    border-radius: 0;
    padding: 15px 25px !important;
    background: #000;
    text-align: left !important;
    opacity: 1 !important;
    box-sizing: border-box !important;
    line-height: 19px !important;
}

.cookieinfo > div {
    max-width: 1440px;
    margin: 0 auto;
}

.cookieinfo span {
    display: inline-block !important;
}

.cookieinfo a {
    text-decoration: underline !important;
}

.cookieinfo-close {
    padding: 0 !important;
    min-width: auto !important;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff !important;
    font-size: 12px;
    border: 1px solid #fff !important;
    color: #000 !important;
    padding: 5px 35px !important;
    border-radius: 6px !important;
    z-index: 2;
}

.cookieinfo-close:hover {
    background: none !important;
    color: #fff !important;
}

#toTop {
    bottom: 15%;
}

@media screen and (max-width: 525px) {
    .cookieinfo > div {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .cookieinfo-close {
        position: relative;
        margin-top: 20px;
    }
}
/* Исправляем сетку и отступы для слотов */
.slots-items .row {
    margin: 0 -8px; /* Уменьшаем отрицательные отступы ряда */
}

.slots-items .col {
    padding: 8px; /* Одинаковые отступы со всех сторон */
}

/* Делаем карточки слотов одинаковой высоты и ширины */
.slot-item {
    height: 100%;
    transition: all 0.2s;
    border-radius: 16px; /* Уменьшаем радиус скругления */
    overflow: hidden;
}

.slot-item__inner {
    height: 100%;
    background: #05101f; /* Единый фон для карточек */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Центрируем изображения */
.slot-item__permalink {
    display: block; /* Меняем на block вместо flex */
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #fff;
}

/* Настраиваем размер и отображение изображений */
.slot-item__img {
    width: 100%;
    height: auto; /* Автоматическая высота */
    aspect-ratio: 5 / 6; /* Квадратные изображения */
    object-fit: cover; /* Cover для лучшего заполнения */
    border-radius: 16px 16px 0 0; /* Скругление только сверху */
    display: block;
}

/* Стилизуем заголовок для большей читаемости */
.slot-item__title {
    padding: 12px 8px;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    background: #05101f; /* Фон для текста */
    border-radius: 0 0 16px 16px; /* Скругление только снизу */
}

/* Улучшаем анимацию при наведении */
.slot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Эффект наведения */
.slot-item__content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid #69b5e0;
    text-align: center;
    border-radius: 16px;
}

.slot-item:hover .slot-item__content {
    display: flex;
}

/* Фиксируем кнопку Play */
.slot-item__play {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(89.51deg,#5cc1ed 2.16%,#f3337a 76.65%);
    border-radius: 40px;
    margin-bottom: 10px;
}

/* Адаптивность для разных размеров экранов */
@media screen and (max-width: 768px) {
    .slots-items .col {
        padding: 6px; /* Меньшие отступы на мобильных */
    }
    
    .slot-item__title {
        font-size: 12px;
        padding: 10px 5px;
    }
}