h1 {
    color: rgb(239, 236, 236);
    text-align: center;
    margin: 20px auto;
}

.product-block {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-block:hover {
    transform: translateY(-10px);
}

.product-block img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin: 30px 0 5px 0;
    font-size: 2rem;
    text-shadow: 1px 0 1px rgb(84, 11, 11);
}


.cta-button {
    background-color: #f600ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}



.swiper-container {
    width: 100%;
    height: 300px;
}

.swiper-slide img {
    height: auto;
    box-shadow: 0 4px 8px rgba(24, 24, 24, 0.1);
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}

.slider-container {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.swiper-slide img {
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-button-next, .swiper-button-prev {
    color: #f600ff;
    width: 40px;
    height: 40px;
}

.swiper-pagination-bullet {
    background: #f600ff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #ff00ff;
    opacity: 1;
}








/*ТАБЛИЦА*/
.table-responsive {
    overflow-x: auto; /* Добавляем горизонтальный скролл */
    margin: 0 10px; /* Маржин для внутреннего отступа */
    -webkit-overflow-scrolling: touch; /* Улучшает прокрутку на мобильных устройствах */
}

.product-info-table {
    width: 100%; /* Сделать ширину 100% по умолчанию */
    max-width: 1000px; /* Ограничить максимальную ширину */
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: #f9f3f3;
    color: black;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-info-table th, .product-info-table td {
    border: 1px solid black;
    padding: 8px; /* Уменьшенный отступ */
    text-align: center;
    font-size: 0.9rem; /* Меньший размер шрифта */
}

/* Медиазапросы для разных размеров экрана */
@media (max-width: 768px) {
    .product-info-table th, .product-info-table td {
        padding: 5px; /* Еще меньше отступов */
        font-size: 0.8rem; /* Еще меньше размер шрифта */
    }
}

@media (max-width: 480px) {
    .product-info-table {
        font-size: 0.7rem; /* Уменьшение размера шрифта для маленьких экранов */
    }

    .product-info-table th, .product-info-table td {
        padding: 4px; /* Минимальные отступы */
    }
}

.product-info-table th {
    background-color: #6A5ACD;
    color: white;
    font-weight: bold;
}

.product-info-table td {
    background-color: #fff;
    color: #333;
    font-weight: 700;
}

.product-info-table tbody tr:nth-child(even) {
    background-color: #f3f0ff;
}

.product-info-table tbody tr:hover {
    background-color: #eae6ff;
    transition: background-color 0.3s ease;
}

/* Блок описания */
.description-section {
    max-width: 80%;
    margin: 3rem auto;
    text-align: left;
    font-size: 1.2rem;
    line-height: 35px;
    color: #333;
    background: linear-gradient(135deg, #373767 0%, #5c5cab 50%, #1e1e6d 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.description-section h2 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.description-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 25px;
    color: white;

}


/*УСПЕШНЫЕ КАЗИНО*/
.success-casinos {
    max-width: 90%;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.success-casino {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.success-casino:hover {
    transform: translateY(-10px);
}

.success-casino img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.success-casino-content {
    padding: 1rem;
}

.success-casino-content h3 {
    font-size: 1.5rem;
    color: #6A5ACD;
    margin-bottom: 0.5rem;
}

.success-casino-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.success-casino-content a {
    color: #f600ff;
    text-decoration: none;
    font-weight: bold;
}

.success-casino-content a:hover {
    text-decoration: underline;
}








/*СТРАНИЦА ПРО БЄКОФИС*/

#back-office {
    /*background: linear-gradient(45deg, #6A5ACD, #f600ff);*/
    color: #fff;
    padding: 30px 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}
#back-office >img {
    width: 100%;
    margin-top: 10px;
}

#back-office h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
#features, #extra-info, #back-office {
    width: 80%;
    margin: 0 auto;
}

#back-office p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.feature-list, .info-blocks, #extra-info {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.feature-list li, .info-block {
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px 20px 5px;
    padding: 20px;
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 800px) {
    #features, #extra-info, #back-office {
        width: 95%;
    }
    .feature-list li, .info-block {
        width: 80%;
    }
}



.feature-list li:hover, .info-block:hover {
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.feature-list h3, .info-block h3 {
    font-size: 1.2rem;
    color: #ffccff;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
}





/*CТРАНИЦА СЛОТОВ*/
.slots-bundle {
    width: 80%;
    margin: 20px auto;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}
.bundle-advantages ul big{
    color: #1ed1d1;

}

li {
    padding: 5px 0;
}

/*ЖИВЫЕ СЛОТЫ*/
.provider-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.provider {
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.provider img {
    width: 100%;
    height: auto;
    padding: 10px;
}

.provider p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #333;
}


.features-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Переносим элементы на новую строку, если не вмещаются */
    padding: 20px;
}

.feature-item {
    text-align: center;
    flex-grow: 1;
    padding: 10px;
}

.feature-item img {
    width: 60px; /* Размер может быть изменен в зависимости от ваших нужд */
    height: auto;
}

.feature-item p {
    font-size: 1rem;
    color: #1ed1d1;
    margin-top: 5px;
}


.block-img_demo {
    margin-top: 20px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(24, 24, 24, 0.6);
}
.block-img_demo img {
    width: 100%;
}


/*СЛОТЫ*/
.provider-section {
    text-align: center;
    padding: 20px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.provider-card {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.provider-card img {
    width: 80%;
    height: 50%;
    margin-bottom: 10px;
}

.provider-name {
    font-weight: bold;
    color: #000;
}

.provider-games {
    color: #666;
    font-size: 0.8rem;
}

/*БЛОК ОФ СЛОТОВ*/
.provider-grid-anim {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 100%; /* Высоту можно настроить под размер изображений */
}

.provider-grid-anim img {
    width: 40%; /* Ширина каждого изображения */
    margin: 0 2%; /* Добавлено место между изображениями */
    height: auto;
    animation: slide 15s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); } /* Увеличенная анимация для полного цикла двух наборов изображений */
}