/* Основний стиль для слайдера */
.games-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.games-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.games-slider__title {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.games-slider__navigation {
    display: flex;
    gap: 10px;
}

.games-slider__prev-btn, .games-slider__next-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 18px;
}

/* Стилі для тіла слайдера */
.games-slider__body {
    display: flex;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.games-slider__items {
    display: flex;
}

.game-item {
    width: 170px;
    margin-right: 20px;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}
.promotion-item{
    width: 260px;
    margin-right: 20px;
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
}

.game-item__info {
    padding: 10px;
    text-align: center;
    color: white;
}

.game-item__name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.game-item__provider {
    font-size: 14px;
    margin-bottom: 12px;
}

.game-item__play-btn {
    background-color: #ff9000;
    border: none;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
}

.game-item__play-btn:hover {
    background-color: #e78000;
}

/* Кнопки слайдера */
.games-slider__prev-btn:disabled, .games-slider__next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.mob{
    display: none;
}

@media (max-width: 768px) {
    .desk{
        display: none;
    }
    .mob{
        display: block;
    }
    .game-item {
        width: 120px;
    }
    .promotion-item{
        width: 260px;
    }
}
.t-game-list__content{
    position: relative;
}
.t-game-list__number {
 position: absolute;
 top: 50%;
 left: -80px;
    font: 800 188px / 100% Geologica, sans-serif;
    color: #101010;
    text-align: center;
    user-select: none;
    background: linear-gradient(0deg, #f1393c, #ffc125);
    -webkit-background-clip: text;
    transform: translateY(-50%);
    -webkit-text-stroke: 3px transparent;
}
/* Сховати сайдбар на мобілках, поки JS не готовий */
@media (max-width: 991px) {
    .t-sidebar-menu {
      display: none !important;
    }
  
    .js-ready .t-sidebar-menu.t-sidebar-menu__expanded {
      display: block !important;
    }
  }

  .licenses {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.licenses img {
    width: 100px;
    height: auto;
}

