.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.section-title-wrapper {
    flex: 1;
    min-width: 0;
}

.section-title {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.hub-button {
    background: #1b1b22;
    color: #fff;
    border-radius: 8px;
    height: 38px;
    width: 150px;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid #2d2d3a;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
}

.hub-button:hover {
    background: #252530;
    border-color: #3a3a4a;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.hub-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.all-input-search {
    background-color: #1b1b22;
    outline: none;
    border: none;
    color: #bcc0d0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1; /* Важно: меняем line-height */
    letter-spacing: .28px;
    font-family: Roboto Flex, sans-serif;
    white-space: nowrap;
    width: 100%;
    height: 100%; /* Добавляем высоту 100% */
    display: flex;
    align-items: center; /* Выравниваем по вертикали */
}


.all-input-search::placeholder {
    font-size: 12px;
    line-height: normal; /* Для placeholder тоже исправляем */
    display: flex;
    align-items: center;
}

.input-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    padding: 0 20px 0 10px;
    border-radius: 10px;
    column-gap: 14px;
    background-color: #1b1b22;
    position: relative;
    max-width: 282px;
    width: 100%;
    flex: 0 1 260px;
}

/* ---------------------- */
/* МОБИЛЬНАЯ ВЕРСИЯ       */
/* ---------------------- */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .section-title-wrapper {
        width: 100%;
    }
    
    .section-title {
        gap: 8px;
    }
    
    .hub-button {
        flex: 1;
        min-width: 0;
        width: auto;
        height: 36px;
        font-size: 10px;
        padding: 0 12px;
    }
    
    .input-group {
        order: 2;
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        height: 36px;
        margin-top: 8px;
    }
}



		.providersSlots {
		  background: #20273a;
		  border-radius: 15px;
		  margin-top: -40px;
		  padding: 40px 15px 70px 15px;
		  margin-bottom: 15px;
		  display: grid;
		  grid-template-columns: repeat(6,1fr);
		  grid-column-gap: 10px;
		  grid-row-gap: 10px;
		  z-index: 1;
		  position: relative;
		}
		@media (max-width: 1200px) {
		  .providersSlots {
		      grid-template-columns: repeat(5,1fr);
		  }}
		@media (max-width: 650px) {
		  .providersSlots {
		  grid-template-columns: repeat(4,1fr);
		}}
		@media (max-width: 450px) {
		  .providersSlots {
		    grid-template-columns: repeat(3,1fr);
		}}
		@media (max-width: 370px) {
		  .providersSlots {
		    grid-template-columns: repeat(2,1fr);
		}}
		.slots--notFound {
		  grid-column: 1 / -1;
		  text-align: center;
		  padding: 40px;
		  font-weight: 500;
		  font-size: 18px;
		}
		.providersSlots::after {
		  content: '';
		  position: absolute;
		  width: 100%;
		  height: 55px;
		  background: url(../images/shape-2.svg) no-repeat center center/contain;
		  -webkit-transform: rotate(180deg);
		  transform: rotate(360deg);
		  bottom: 0;
		}
		.providersSlots .provider {
		  background: #1b2030;
		  border-radius: 10px;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  padding: 10px;
		  height: 75px;
		  cursor: pointer;
		}
		.providersSlots .provider img {
		  width: 100%;
		  height: 100%;
		  transition: .2s;
		  object-fit: contain;
		  filter: grayscale(3);
		  opacity: .4;
		}
        .provider.active img {
            filter: grayscale(0);
            opacity: 1;
        }
		@media (max-width: 725px) {
		  .btn-up {
		    right: 20px;
		  }
		}
		.slots__container {
		  background: #20273a;
		  border-radius: 15px;
		}
		.slotsLeftBox {
		  display: flex;
		  margin: 10px;
		  align-content: center;
		  align-items: center;
		  color: white;
		}
		.slotsLeftBox img{
		  width: 100%;
		  height: 100%;
		  border-radius: 15px;
		  object-fit: cover;
		}
		.slotsLeftBox span {
		  font-size: 1.25rem;
		  font-weight: 700;
		  margin-left: 10px;
		}
		.slotsLoad {
		  grid-column: 1 / -1;
		  height: 200px;
		  display: flex;
		  justify-content: center;
		  align-items: center;
		}
		.headSlots {
		  margin-bottom: 15px;
		  display: flex;
		  align-items: center;
		  background: #1e1d1d;
		  justify-content: space-between;
		  border-radius: 15px;
		  height: 70px;
		  padding: 10px;
		  position: relative;
		  z-index: 2;
		}
		.searchSlots {
		  display: flex;
		  align-items: center;
		  width: 240px;
		  justify-content: space-between;
		  height: 50px;
		  border-radius: 8px;
		  padding: 0 20px;
		  background-color: #283046;
		}

		.searchSlots input {
		  height: 40px;
		  width: calc(100% - 3px);
		  border: 0px;
		  font-weight: 600;
          color: #fff;
		  background-color: transparent;
		}
		.slotsLoad .wave {
		  width: 2px;
		  height: 100px;
		  background: linear-gradient(45deg, #6080b0, #b7cdef);
		  margin: 10px;
		  animation: wave 1s linear infinite;
		  /* border-radius: 20px; */
		}
		.slotsLoad .wave:nth-child(2) {
		  animation-delay: 0.1s;
		}
		.slotsLoad .wave:nth-child(3) {
		  animation-delay: 0.2s;
		}
		.slotsLoad .wave:nth-child(4) {
		  animation-delay: 0.3s;
		}
		.slotsLoad .wave:nth-child(5) {
		  animation-delay: 0.4s;
		}
		.slotsLoad .wave:nth-child(6) {
		  animation-delay: 0.5s;
		}
		.slotsLoad .wave:nth-child(7) {
		  animation-delay: 0.6s;
		}
		.slotsLoad .wave:nth-child(8) {
		  animation-delay: 0.7s;
		}
		.slotsLoad .wave:nth-child(9) {
		  animation-delay: 0.8s;
		}
		.slotsLoad .wave:nth-child(10) {
		  animation-delay: 0.9s;
		}

		.btnSlots {
			cursor: pointer;
			border: 0px;
			height: 50px;
			border-radius: 8px;
			padding: 0 20px;
			width: 240px;
			font-weight: 600;
			font-size: 14px;
			margin-left: 10px;
			background: #f2ac44;
			color: #ffffff;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: .25s ease;
		}
		.btnSlots.active svg {
		  transform: rotate(180deg);
		}
		.slots {
		    display: -ms-grid;
		    display: grid;
		    -ms-grid-columns: (1fr)[5];
		    grid-template-columns: repeat(5, 1fr);
		    grid-gap: 16px;
		    position: relative;
		    margin-bottom: 25px;
		    border-radius: 15px;
		}

		@media (max-width: 945px) {
		.slots {
		    -ms-grid-columns: (1fr)[3];
		    grid-template-columns: repeat(3, 1fr);
		}}
		@media (max-width: 580px) {
		.slots {
		    -ms-grid-columns: (1fr)[2];
		    grid-template-columns: repeat(2, 1fr);
		}}
		.slots_game {
		  height: 100%;
		  width: 100%;
		  max-height: 280px;
		  background: #1b2030;
		  position: relative;
		  border-radius: 15px;
		  overflow: hidden;
		  color: #fff;
		  transition: all .3s cubic-bezier(0.39, 0.58, 0.57, 1);
		}
		.slot__animation__play svg {
		  height: 60px;
		  width: 60px;
		  padding: 10px;
		  position: absolute;
		  top: 38%;
		  left: 50%;
		  margin-right: -50%;
		  transform: translate(-50%, -50%);
		  cursor: pointer;
		}

		/* ====== NEW: buttons container ====== */
		.slot__buttons {
			position: absolute;
			top: 58%;
			left: 50%;
			transform: translate(-50%, -50%);
			display: flex;
			flex-direction: column;
			gap: 10px;
			width: 160px;
		}
		.slot-btn {
			border: none;
			border-radius: 8px;
			padding: 10px 0;
			font-weight: 700;
			font-size: 14px;
			cursor: pointer;
			transition: 0.25s ease;
		}
		.slot-btn.play {
			background: #f2ac44;
			color: #fff;
		}
		.slot-btn.play:hover {
			background: #ffbe5c;
			transform: scale(1.05);
		}
		.slot-btn.demo {
			background: transparent;
			color: #ffffff;
			border: 2px solid #6080b0;
		}
		.slot-btn.demo:hover {
			background: #6080b0;
			transform: scale(1.05);
		}
		/* ====== /NEW ====== */

		.slot__title {
		  font-weight: 700;
		  text-align: center;
		  left: 50%;
		  display: block;
		  color: #fff;
		  margin-top: 15px;
		  font-size: 19px;
		  position: absolute;
		  top: 18%;
		  margin-right: -50%;
		  transform: translate(-50%, -50%);
		}
		.slot__titleProvider {
		  font-weight: 700;
		  text-align: center;
		  left: 50%;
		  display: block;
		  color: #fff;
		  margin-top: 15px;
		  font-size: 19px;
		  position: absolute;
		  top: 78%;
		  margin-right: -50%;
		  transform: translate(-50%, -50%);
		}
		.slots_game:hover {
		  transform: scaleX(1.05) scaleY(1.05);
		}
		.slots_game:hover .slot__animation__play {
		  opacity: 1;
		}
		.slot__animation__play {
		  position: absolute;
		  left: 0;
		  right: 0;
		  top: 0;
		  bottom: 0;
		  opacity: 0;
		  backdrop-filter: blur(3px);
		  text-align: center;
		  transition: all .2s ease;
		  background-color: rgba(0,0,0,.3);
		}
		.slots_game img {
		  pointer-events: none;
		  height: 100%;
		  width: 100%;
		  border-radius: 15px;
		}
		.shape {
		  position: relative;
		}
		.shape span {
		  margin: 0;
		  position: absolute;
		  top: 20px;
		  left: 50%;
		  color: #6a809f;
		  font-size: 20px;
		  font-weight: 900;
		  text-transform: uppercase;
		  z-index: 1;
		  margin-right: -50%;
		  transform: translate(-50%, -50%);
		}








     /* Слайдер */
/* Уникальные стили с префиксом для избежания конфликтов */
.simple-slider-uniq-container {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.simple-slider-uniq-body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    background-color: #f5f5f5;
    padding: 20px;
    margin: 0;
    width: 100%;
}

.simple-slider-uniq-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.simple-slider-uniq {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin: 0 auto;
}

.simple-slider-uniq-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.8s ease;
}

.simple-slider-uniq-panel {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.simple-slider-uniq-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* ИЗМЕНЕНИЕ: Вернули cover, но улучшили позиционирование */
.simple-slider-uniq-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Вернули cover для заполнения всего пространства */
    object-position: center center; /* Центрируем изображение */
    border-radius: inherit;
    transition: transform 0.3s ease; /* Плавное увеличение при наведении */
}

/* Улучшенное отображение на разных устройствах */
@media (max-width: 768px) {
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center top; /* Для мобильных - выравниваем по верхнему краю */
    }
}

/* Для горизонтальных изображений - центрируем */
@media (max-width: 768px) and (orientation: landscape) {
    .simple-slider-uniq-img {
        object-position: center center;
    }
}

.simple-slider-uniq-info {
    margin-top: 30px;
    text-align: center;
    color: #666;
    max-width: 900px;
    line-height: 1.6;
    width: 100%;
    padding: 0 20px;
}

.simple-slider-uniq-info-heading {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.9rem;
    font-weight: 600;
}

/* Анимация для плавного перехода */
@keyframes simple-slider-uniq-fade {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

.simple-slider-uniq-img {
    animation: simple-slider-uniq-fade 0.5s ease;
}

/* БОЛЬШИЕ ЭКРАНЫ (ПК) */
@media (min-width: 1283px) {
    .simple-slider-uniq {
        height: 350px;
        max-height: 350px;
        border-radius: 18px;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 2.1rem;
    }
    
    .simple-slider-uniq-info {
        max-width: 1000px;
        font-size: 1.15rem;
        margin-top: 35px;
    }
    
    .simple-slider-uniq-img {
        object-position: center center;
    }
}

/* СРЕДНИЕ ЭКРАНЫ (НОУТБУКИ) */
@media (max-width: 1282px) and (min-width: 1024px) {
    .simple-slider-uniq {
        height: calc(320px * (100vw / 1400));
        max-height: 320px;
        border-radius: 16px;
    }
    
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center center;
    }
}

/* ПЛАНШЕТЫ И НОУТБУКИ */
@media (max-width: 1024px) and (min-width: 769px) {
    .simple-slider-uniq {
        height: 320px;
        border-radius: 16px;
    }
    
    .simple-slider-uniq-body {
        padding: 15px;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 1.7rem;
    }
    
    .simple-slider-uniq-info {
        max-width: 800px;
        padding: 0 25px;
    }
    
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center center;
    }
}

/* ПЛАНШЕТЫ (768px и меньше) */
@media (max-width: 768px) {
    .simple-slider-uniq {
        height: 300px !important;
        border-radius: 16px;
        width: 100%;
        margin: 0 auto;
    }
    
    .simple-slider-uniq-body {
        padding: 15px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .simple-slider-uniq-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 1.6rem;
        margin-top: 25px;
    }
    
    .simple-slider-uniq-info {
        margin-top: 25px;
        padding: 0 20px;
        font-size: 1.05rem;
    }
    
    /* Для мобильных устройств - настраиваем позиционирование */
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center 30%; /* Смещаем вверх на 30% для лучшего отображения лиц/объектов */
    }
}

/* МОБИЛЬНЫЕ ТЕЛЕФОНЫ */
@media (max-width: 480px) {
    .simple-slider-uniq {
        height: 250px !important;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        width: 100%;
        margin: 0 auto;
    }
    
    .simple-slider-uniq-body {
        padding: 12px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .simple-slider-uniq-wrapper {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 1.5rem;
        margin-top: 20px;
        font-weight: 600;
    }
    
    .simple-slider-uniq-info {
        margin-top: 20px;
        padding: 0 15px;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center 25%; /* Еще выше для телефонов */
    }
}

/* МАЛЕНЬКИЕ МОБИЛЬНЫЕ ЭКРАНЫ */
@media (max-width: 400px) {
    .simple-slider-uniq {
        height: 230px !important;
        border-radius: 12px;
    }
    
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center 20%;
    }
    
    .simple-slider-uniq-body {
        padding: 10px;
        min-height: auto;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 1.4rem;
        margin-top: 18px;
    }
    
    .simple-slider-uniq-info {
        margin-top: 18px;
        padding: 0 12px;
        font-size: 0.95rem;
    }
}

/* ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ */
@media (max-width: 360px) {
    .simple-slider-uniq {
        height: 210px !important;
        border-radius: 10px;
        margin: 0 auto;
    }
    
    .simple-slider-uniq-wrapper {
        width: 100%;
    }
    
    .simple-slider-uniq-body {
        width: 100%;
        padding: 8px;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 1.3rem;
        margin-top: 15px;
    }
    
    .simple-slider-uniq-info {
        margin-top: 15px;
        padding: 0 10px;
        font-size: 0.9rem;
    }
    
    .simple-slider-uniq-img {
        object-fit: cover;
        object-position: center 15%;
    }
}

/* ЛАНДШАФТНАЯ ОРИЕНТАЦИЯ НА МОБИЛЬНЫХ */
@media (max-width: 768px) and (orientation: landscape) {
    .simple-slider-uniq {
        height: 220px !important;
        min-height: auto;
    }
    
    .simple-slider-uniq-img {
        object-position: center center; /* В ландшафте - центрируем */
    }
}

/* Дополнительное правило для очень высоких изображений */
@media (max-height: 600px) and (max-width: 768px) {
    .simple-slider-uniq-img {
        object-position: center 40%; /* Для высоких экранов - смещаем выше */
    }
}

/* ОЧЕНЬ БОЛЬШИЕ ЭКРАНЫ (4K и более) */
@media (min-width: 1920px) {
    .simple-slider-uniq {
        height: 380px;
        max-height: 380px;
        border-radius: 20px;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 2.3rem;
    }
    
    .simple-slider-uniq-info {
        max-width: 1100px;
        font-size: 1.2rem;
        margin-top: 40px;
    }
    
    .simple-slider-uniq-img {
        object-position: center center;
    }
}

/* ШИРОКОФОРМАТНЫЕ ЭКРАНЫ */
@media (min-width: 2560px) {
    .simple-slider-uniq {
        height: 420px;
        max-height: 420px;
        border-radius: 22px;
    }
    
    .simple-slider-uniq-info-heading {
        font-size: 2.5rem;
    }
    
    .simple-slider-uniq-info {
        max-width: 1300px;
        font-size: 1.3rem;
        margin-top: 45px;
    }
    
    .simple-slider-uniq-img {
        object-position: center center;
    }
}
















    
    /* Остальные стили остаются практически без изменений, только названия классов оригинальные */
    .page-header {
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
    }
    
    .main-heading {
        font-size: 3rem;
        margin-bottom: 15px;
        background: linear-gradient(to right, #ff6b6b, #ffd166);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        letter-spacing: 1px;
    }
    
    .page-subtitle {
        font-size: 1.3rem;
        color: #b0b0d0;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }
    
    .providers-section {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .provider-card {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.08);
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.1rem;
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }
    
    .provider-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .provider-card i {
        font-size: 1.8rem;
    }
    
    .pragmatic-provider i {
        color: #ff9a00;
        text-shadow: 0 0 10px rgba(255, 154, 0, 0.5);
    }
    
    .hacksaw-provider i {
        color: #00e5ff;
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    }
    
    .games-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .game-section {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        position: relative;
        overflow: hidden;
    }
    
    .game-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        z-index: 1;
    }
    
    .game-section:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: -20px;
        padding-bottom: 20px;
        /*border-bottom: 2px solid rgba(255, 255, 255, 0.1);*/
        position: relative;
    }
    
    .section-title {
        font-size: 2.2rem;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 800;
    }
    
    /* КНОПКА "ВСЕ" - ДОБАВЛЕНА */
    .all-games-btn {
        background: linear-gradient(to right, #ff6b6b, #ffd166);
        color: #0c0c1d;
        border: none;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 800;
        box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
        text-decoration: none;
    }
    
    .all-games-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 20px rgba(255, 107, 107, 0.6);
    }
    
    /* Уникальные стили для каждого раздела */
    .golden-section {
        border: 2px solid rgba(255, 193, 7, 0.3);
    }
    
    .golden-section::before {
        background: linear-gradient(to right, #ffc107, #ff9800);
    }
    
    .golden-section .section-title {
        color: #ffc107;
        text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    }
    
    .golden-section .title-icon {
        color: #ffc107;
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
    }
    
    .bonus-section {
        border: 2px solid rgba(0, 229, 255, 0.3);
    }
    
    .bonus-section::before {
        background: linear-gradient(to right, #00e5ff, #2979ff);
    }
    
    .bonus-section .section-title {
        color: #00e5ff;
        text-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    }
    
    .bonus-section .title-icon {
        color: #00e5ff;
        text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
    }
    
    .new-section {
        border: 2px solid rgba(233, 30, 99, 0.3);
    }
    
    .new-section::before {
        background: linear-gradient(to right, #e91e63, #9c27b0);
    }
    
    .new-section .section-title {
        color: #e91e63;
        text-shadow: 0 0 15px rgba(233, 30, 99, 0.4);
    }
    
    .new-section .title-icon {
        color: #e91e63;
        text-shadow: 0 0 10px rgba(233, 30, 99, 0.7);
    }
    
    .title-icon {
        font-size: 2rem;
    }
    
    /* ОСНОВНОЕ ИЗМЕНЕНИЕ - MOBILE-FIRST ПОДХОД */
    /* По умолчанию для мобильных - 2 колонки */
    .games-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 в ряд по умолчанию */
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .games-grid:last-child {
        margin-bottom: 0;
    }
    
    .game-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        aspect-ratio: 3/4;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .game-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
        z-index: 10;
    }
    
    .game-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .game-card:hover .game-cover {
        transform: scale(1.1);
    }
    
    .game-info {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 15px;
        text-align: center;
    }
    
    .game-card:hover .game-info {
        opacity: 1;
    }
    
    .game-name {
        font-size: 0.9rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
        color: #fff;
        line-height: 1.3;
    }
    
    .play-action {
        background: linear-gradient(to right, #ff6b6b, #ffd166);
        color: #0c0c1d;
        border: none;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
        font-weight: 800;
    }
    
    .play-action:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 20px rgba(255, 107, 107, 0.6);
    }
    
    .provider-tag {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        font-size: 0.7rem;
        padding: 3px 8px;
        border-radius: 20px;
        font-weight: bold;
        letter-spacing: 0.5px;
    }
    
    .pragmatic-tag {
        border-left: 3px solid #ff9a00;
    }
    
    .hacksaw-tag {
        border-left: 3px solid #00e5ff;
    }
    
    .floor-label {
        display: block;
        text-align: center;
        margin-bottom: 15px;
        font-size: 1rem;
        font-weight: bold;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .page-footer {
        text-align: center;
        padding: 25px;
        color: #a0a0c0;
        font-size: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 30px;
    }
    
    .footer-note {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #8888aa;
    }
    
    /* Адаптивность - MOBILE-FIRST ПОДХОД */
    /* Для экранов больше 480px - 2 колонки с большим отступом */
    @media (min-width: 481px) {
        .games-grid {
            gap: 15px;
        }
        
        .game-name {
            font-size: 1rem;
        }
        
        .play-action {
            padding: 12px 25px;
            font-size: 1rem;
        }
        
        .floor-label {
            font-size: 1.1rem;
        }
        
        .all-games-btn {
            padding: 12px 30px;
            font-size: 1.1rem;
        }
    }
    
    /* Для экранов больше 768px - 3 колонки */
    @media (min-width: 768px) {
        .games-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .main-heading {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 1.5rem;
        }
        
        .providers-section {
            flex-direction: row;
            gap: 40px;
        }
        
        .game-section {
            padding: 30px;
        }
        
        .casino-slider {
            height: 250px;
        }
        
        .slider-title {
            font-size: 1.5rem;
        }
        
        .slider-content {
            padding: 20px;
        }
        
        .slider-nav {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
        
        .game-name {
            font-size: 1.1rem;
        }
        
        .floor-label {
            font-size: 1.2rem;
        }
        
        .all-games-btn {
            padding: 12px 35px;
            font-size: 1.1rem;
        }
    }
    
    /* Для экранов больше 1024px - 6 колонок */
    @media (min-width: 1024px) {
        .games-grid {
            grid-template-columns: repeat(6, 1fr);
        }
        
        .main-heading {
            font-size: 3rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .casino-slider {
            height: 350px;
        }
        
        .slider-title {
            font-size: 2.5rem;
        }
        
        .slider-content {
            padding: 40px;
        }
        
        .slider-nav {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }
        
        .all-games-btn {
            padding: 12px 40px;
            font-size: 1.2rem;
        }
    }
    
    /* Для очень маленьких телефонов */
    @media (max-width: 480px) {
        .games-grid {
            gap: 10px;
        }
        
        .game-name {
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        
        .play-action {
            padding: 8px 15px;
            font-size: 0.8rem;
        }
        
        .provider-tag {
            font-size: 0.6rem;
            padding: 2px 6px;
        }
        
        .floor-label {
            font-size: 0.9rem;
        }
        
        .section-title {
            font-size: 1.3rem;
        }
        
        .all-games-btn {
            padding: 8px 15px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 360px) {
        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .all-games-btn {
            align-self: flex-end;
        }
    }