@theme {}

@font-face {
    font-family: 'Prosto One';
    src: url('../fonts/ProstoOne-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Poppins Font */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: "Poppins", serif;
  scroll-behavior: smooth;
  padding-top: 60px;
  background-image: url(../assets/flag-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10% 28%;
  background-attachment: fixed;
  min-height: 100vh;
}

#game-body, #games-body, #faq-body, #deposit{
    background-image: none;
    background-color: white;
}

#app-body{
    background-position: 10% 40%;
}

p{
    padding-bottom: 10px;
    line-height: 1.8;
}

h2{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.main-header{
    background: rgb(0,42,4);
    background: black;
}

.main-footer{
    background: rgb(43 43 43);
}

.main-header{
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
   font-family: "Prosto One", sans-serif;
   font-weight: 900;
   box-shadow: 2px 2px 20px 6px #ffdc2833;
   border-bottom: 2px solid #fedf27;
}

.main-header a{
   font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.logo-text{
    color: white;
    font-size: 24px;
    font-weight: 900;
   font-family: "Prosto One", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links{
    background-color: black;
    padding: 20px 0;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.container{
    max-width: 1140px;
    margin: 0 auto;
}

.main-header button{
    cursor: pointer;
    transition: transform 0.2s ease;
}

.main-header button:hover{
    transform: scale(1.1);
}

.filtered {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.btn{
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: 3px 5px 5px 0px #dadadd95;
    text-transform: uppercase;
}

.btn:hover{
    transform: scale(1.05);
}

.main-header .register-btn, .main-header .login-btn{
    border-radius: 0;
    color: black;
    border: none;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}
.main-header .register-btn{
    background-color: #ff9634;
}
.main-header .login-btn{
    background-color: #fedf27;
}

.btn_2{
    background-color: #58FF2B;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.jugar-btn, .btn_1{
    background-color: #ffdd04;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.btn_3{
    background-color: transparent;
    border: 3px solid #151580;
    color: #151580;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.btn_3_fill {
    background-color: #fedf27;
    color: #000000;
}

.btn_3 svg{
    fill: #151580;
}

.btn_3_fill svg{
    fill: black;
}

.main-header li, .logo-text{
   transition: transform 0.4s ease;
}

.main-header li:hover, .logo-text:hover{
    transform: scale(1.2);
}

.star {
    color: #ffe600 !important;
}

.star-rating .star-full:before {
    content: "★" !important;
    font-size: 20px;
    font-weight: 900;
    background-color: rgb(0, 45, 85);
}

.star-rating .star-half:before {
    content: "☆" !important;
    font-size: 20px;
    font-weight: 900;
}

.star-rating .star {
    color: #ff2453;
    display: inline-block;
    font-family: 'Font Awesome 5 Free' !important;
    font-size: 1em;
    font-style: normal;
    line-height: 1em;
    text-align: center;
    text-decoration: inherit;
    vertical-align: top;
    width: 1.15em;
    padding: 0;
}

.unit{
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    background-image: url(../assets/flag-colombia.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.unit::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(236, 236, 236, 0.253);
    border-radius: 10px;
    z-index: 1;
    backdrop-filter: blur(1px);
}

.unit > * {
    position: relative;
    z-index: 2;
}

.promo-btn{
    background-color: #ff2b2b;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.unit-img{
    transition: transform 0.2s ease;
}

.unit-img:hover{
    transform:scale(1.1);
}

.shape{
    transform: rotate(180deg);
    fill: white;
}

.shape-bottom svg {
    width: calc(100% + 1.3px);
    height: 50px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
    border: 2px solid rgb(240 218 0); 
}

table td, 
table th {
    border-right: 1.8px solid rgb(240 218 0); 
    padding: 10px;
}

table tr td:last-child, 
table tr th:last-child {
    border-right: none; 
}

table tr {
    border-bottom: none; 
}

table th {
    background-color: #ffdd04;
    font-weight: bold;
    color: black;
}

table {
    width: 100%;
    border-collapse: collapse;
}

tbody tr:nth-child(odd) {
    background-color:rgb(255, 255, 255) ;
}

tbody tr:nth-child(even) {
    background-color: #fff8ca;
}

#home-carousel  .unit-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

#home-carousel  .unit {
    flex: 0 0 calc(100% / 3); 
    scroll-snap-align: start;
}

#home-carousel  .unit-wrapper::-webkit-scrollbar {
    display: none;
}

#home-carousel  #prev, #home-carousel  #next,  #next-game, #prev-game{
    cursor: pointer;
    position: absolute;
}

#home-carousel  #prev, #prev-game{
    transform: rotate(90deg);
    left: -30px;
    top: 50%;
}

#home-carousel  #next,  #next-game{
    transform: rotate(-90deg);
    right: -30px;
    top: 50%;
}

#prev-game, #next-game{
    top: 40%;
}

.rate-bg{
    padding: 2px 10px;
    border-radius: 6px;
    background-color: #ebebeb5f;
    border: 2px solid rgba(255, 255, 255, 0.855);
    font-size: 16px;
    font-weight: 500;
}

.rate-bg span{
    font-size: 22px;
}

.socials svg{
    transition: transform 0.2s ease-in-out;
}

.socials svg:hover{
    transform: scale(1.1);
}

#pay-methods{
    cursor: pointer;
}

/* game page styling*/

.logo-banner, .bonus-promo{
    font-family: "Prosto One", sans-serif;
   font-weight: 800;
   letter-spacing: 3px;
}

.logo-banner{
   font-weight: 600;
}

#bonus, #bonus2, #bonus3{
    height: 40vh;
    max-height: 1200px;
}

#bonus, #bonus-block{
    background-image: url(../assets/black-banner.webp);
    background-size: cover;
    padding: 20px 0;
    background-repeat: no-repeat;
}

#bonus2{
    background-image: url(../assets/banner-red.webp);
    background-size: 110%;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

#bonus3, #bonus-block2{
    background-image: url(../assets/banner-neon.webp);
    background-size: cover;
    padding: 20px 0;
    background-position: 50% 60%;
    background-repeat: no-repeat;
}

#bonus-banners {
    position: relative;
    width: 100%;
    height: 40vh;
    max-height: 1200px;
    overflow: hidden;
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner.active {
    opacity: 1;
}

.floating-image {
    animation: floatAnimation 3s ease-in-out infinite;
}

.content_wrap{
    box-shadow: 2px 2px 20px 2px #80808033;
    border-radius: 20px;
}

#promo .container{
    border-radius: 20px;
    box-shadow: 0 5px 0 0 #dadadd;
    margin-bottom: 30px;
}

.promo__banner {
    height: 420px;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.promo__banner img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}

.promo__banner:after {
    background: linear-gradient(180deg,hsla(0,0%,100%,0),hsla(0,0%,4%,.67) 77.43%);
    bottom: 0;
    content: "";
    display: inline-block;
    height: 35%;
    left: 0;
    position: absolute;
    width: 100%;
}

#promo .content_wrap {
    margin-top: -180px;
}

.promo__offer_wrap {
    color: white;
    -moz-column-gap: 2.625rem;
    column-gap: 2.625rem;
    display: flex;
}

.promo__offer_img {
    animation: bigEntrance 1.2s ease-out forwards;
    border: 6px solid white;
    border-radius: 10px;
    display: inline-block;
    height: 174px;
    overflow: hidden;
    width: 174px;
}

.promo__offer_content {
    margin-top: 1.75rem;
}

.promo__info {
    display: flex;
    padding-top: 230px;
    margin-left: 40px;
}

.info_wrap {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    row-gap: var(--size-3);
}

.promo__info_totals {
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-left: 2rem;
    row-gap: 10px;
    width: 100%;
    padding-right: 20px;
}

.info_wrap .btn {
    box-sizing: border-box;
    min-width: 160px;
    width: 100%;
}

.info_platforms, .rating_full {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width:100%;
}

.totals__item_title {
    color: rgb(117, 117, 117);
    font-size: 14px;
    font-weight: 500;
}

.totals__item_value {
    font-weight: 600;
    margin-top: 4px;
}

#promo .txt {
    margin-top: 1.75rem;
    padding: 10px 40px 30px;
}

.promo__offer_content h1 {
    animation: fadeFromTopFull .4s forwards;
    font-size: 36px;
    font-weight: 800;
}

.promo__offer{
    position: absolute;
    z-index: 999;
    margin-top: 40px;
    margin-left: 30px;
}

.rating_full {
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: var(--size-2);
    align-items: center;
    display: flex;
}

#promo .star-rating .star-full:before {
    background-color: transparent;
}

.title_section {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    opacity: 0;
    transform: translateY(-100%);
    transition: .6s ease;
}

.core_content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 36px;
}

.core_content p {
    font-weight: 400;
    line-height: 24px;
}

.screenbox {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    padding: 0;
    width: 100%;
}

.screenbox figcaption {
    font-style: 14px;
    font-style: italic;
    font-weight: 400;
    margin-top: 10px;
}

.title_section.visible {
    opacity: 1;
    transform: translateY(0);
}

.core_content .title_section {
    margin-top: 10px;
}

.desc_nav__wrap{
    display: flex;
    width: 100%;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.plus_minus {
    -moz-column-gap: 15px;
    column-gap: 15px;
    display: flex;
    margin-top: 10px;
}

.plus_minus__block {
    box-sizing: border-box;
    width: 50%;
}

.plus_minus__block {
    background: rgb(248, 248, 248);
    border-radius: 16px;
    padding:15px;
}

.plus_minus__list {
    list-style: none;
    margin-top: 10px;
}

.plus_minus__title {
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex;
    font-weight: 500;
}

.plus_minus__item {
    align-items: flex-start;
    display: flex;
    line-height: 150%;
    position: relative;
}

.plus_minus__item:before {
    background: url(../assets/plus_stroke.svg) 50% / 100% no-repeat;
    content: "";
    display: inline-block;
    margin-left: 6px;
    margin-right: 14px;
    min-height: 16px;
    min-width: 16px;
    transform: translateY(20%);
}

.minus .plus_minus__item:before {
    background: url(../assets/minus_stroke.svg) 50%/100% no-repeat;
}

.faq__items {
    margin-top: 1.5rem;
}

.faq__item:not(:last-child) {
    margin-bottom: .75rem;
}

.faq__item {
    border-radius: 8px;
    border-radius: 10px;
    box-shadow: 0 3px 0 0 rgb(227, 227, 227);
    overflow: hidden;
    position: relative;
}

.faq__item_header {
    align-items: center;
    background: rgb(248, 248, 248);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    position: relative;
    transition: .3s;
    width: 100%;
}

.faq__item_content {
    background: rgb(248, 248, 248);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: none;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    padding: 0 20px 20px;
}

.faq__item_title {
    color: black;
    font-weight: 600;
    letter-spacing: -.08px;
    text-align: left;
}

.faq__item_handler {
    background: rgb(248, 248, 248);
    border-radius: 100%;
    min-height: 32px;
    min-width: 32px;
    position: relative;
    transition: .3s;
}

.faq__item_handler:after, .faq__item_handler:before {
    background: black;
    content: "";
    display: inline-block;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: .3s;
    width: 40%;
}

.faq__item[active] .faq__item_handler:before {
    transform: translate(-50%,-50%) rotate(0deg);
}

.faq__item_handler:before {
    margin-left: 0;
    transform: translate(-53%,-50%) rotate(90deg);
}

.faq__item[active] .faq__item_content {
    display: block;
}

.section_nav {
    height: 100%;
    max-height: 50px;
    overflow-y: hidden;
    position: relative;
    transition: .3s;
}

.section_nav__header:hover {
    background: rgb(228, 228, 228);
}

.section_nav__header {
    align-items: center;
    background: rgb(238, 238, 238);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    transition: .4s;
    width: 100%;
    border-radius: 6px;
}

.section_nav__header_wrap {
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex;
}

.section_nav__list {
    animation: maxHeightInverse .3s ease-in-out forwards;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    padding-top: 10px;
}

.section_nav__list li:not(:last-child) {
    margin-bottom: var(--size-2);
}

.section_nav__list a, .section_nav__list li {
    color: red;
    transition: .3s;
}

.section_nav.active {
    max-height: 2000px;
    overflow-y: visible;
}

.section_nav.active .section_nav__list {
    animation: maxHeight .5s ease-in-out forwards;
    pointer-events: auto;
}

@keyframes maxHeight{
0% {
    max-height: 0;
}

100% {
    max-height: 2000px;
}
}

@keyframes maxHeightInverse{
0% {
    max-height: 2000px;
}

100% {
    max-height: 0;
}
}

ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 6px;
    margin-block-end: 6px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

ol a:hover{
    text-decoration: underline;
}

.section_nav__list ol {
    list-style: none;
}

ol:not(.section_nav__list) {
    counter-reset: step-counter;
}

.section_nav.active .section_nav__handler {
    transform: rotate(180deg);
}

/* app page styling */

#heading-app{
    max-width: 800px;
    margin: 0 auto;
}

.info-img img{
    box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.458);
    transition: transform .3s ease;
}

.info-img img:hover{
    transform: rotate(10deg);
}

.heading-wrap{
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.36);
    padding: 20px;
    backdrop-filter: blur(4px);
}

.btn .e-font-icon-svg {
    height: 1em;
}

#heading-app .btn{
    box-shadow: 3px 5px 5px 0px #00000039;
}

.app-code{
    padding: 5px 10px;
    background-color:  rgba(255, 255, 255, 0.166);
    backdrop-filter: blur(4px);
    margin-bottom: 5px;
    border-radius: 6px;
    border: 2px solid white;
    font-weight: 500;
}

.swiper-button-prev{
    left: 0;
    color: #545454;
} 

.swiper-button-next{
    right: 0;
    color: #545454;
} 

.swiper{
    padding: 30px 8px;
}

.swiper-slide{
    box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.1);
    border-radius: 6px;
    height: auto;
}

.swiper-slide > div{
    height: 100%;
}

.swiper-pagination-bullet-active{
    background: #188b33;
}

#reviews{
    background: url(../assets/casino-bg.webp), #fdc700;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.swiper-button-next, .swiper-button-prev {
    top: 55%;
}

.swiper-button-next:after, .swiper-button-prev:after{
    text-shadow: 1px 3px 5px #ffffffb2;
}

/* .info-rate{
    height: 120px;
    padding: 5px 10px;
    background-color:  rgba(255, 255, 255, 0.166);
    backdrop-filter: blur(4px);
    margin-bottom: 5px;
    border-radius: 6px;
    border: 2px solid white;
} */

/* games page */

.bottom-line{
    padding-bottom: 10px;
    border-bottom: 2px solid #1a5d00;
    margin-bottom: 15px;
}

.games-wrapper {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px;
    width: 100%;
    max-width: 1200px;
}

.games-wrapper::-webkit-scrollbar {
    display: none;
}

.games-wrapper {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px;
    width: 100%;
    max-width: 1140px;
}

#games-body .scroll-container {
    position: relative;
    max-width: 1140px;
    margin: auto;
    width: -webkit-fill-available;
}

.game-card {
    flex: 0 0 calc(100% / 6);
    scroll-snap-align: start;
    text-align: center;
}

.game-card img{
    transition: transform .3s ease;
}

.game-card img:hover{
    transform: scale(1.1);
}

/* games section */

.game img{
    border-radius: 6px;
    height: 120px;
    object-fit: cover;
}

.game-status span{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.game-status span.green-indicator{
    background-color: #28a745; 
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.8);
}

.game-status span.red-indicator{
    background-color: #ee4b4b; 
    box-shadow: 0 0 5px rgba(206, 65, 65, 0.8);
}

.game-users.green-text{
    color: #188b33; 
    font-weight: 500;
}

.game-users.red-text{
    color: #ee4b4b; 
    font-weight: 500;
}

.game {
    position: relative;
    overflow: hidden;
}

.game img {
    transition: all 0.3s ease-in-out;
}

.game:hover img {
    filter: brightness(50%); 
    cursor: pointer;
}

.game .play-icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.game:hover .play-icon {
    opacity: 1;
    cursor: pointer;
}

/* deposit page */
#deposit .banner, #deposit #bonus-banners{
    height: 80vh;
}

#deposit .banner .floating-image{
    width: 40%;
    height: auto;
}

#deposit #bonus2{
    background-size: cover;
}

.deposit-title {
  overflow: hidden;
  text-align: center;
}

.deposit-title::before,
.deposit-title::after {
  background-color: #000000;
  content: "";
  display: inline-block;
  height: 2px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}

.deposit-title::before {
  right: 0.5em;
  margin-left: -50%;
}

.deposit-title::after {
  left: 0.5em;
  margin-right: -50%;
}

.pay-block{
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 0 0 #dadadd;
    box-shadow: 2px 2px 20px 2px #80808033;
}

.read-more{
    color: #8ca58a;
    font-weight: 500;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.read-more:hover{
    color: #e4b600;
}

.ref-btn{
    background-color: #000000;
    border: 3px solid #ffe700;
    color: #ffe600;
    font-family: "Prosto One", sans-serif;
   font-weight: 900;
}

.ref-btn svg{
    fill: #ffe600;
}

.ratings-container {
    background: #fff8ca;
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    gap: 10px;
    padding:20px 10px;
    align-items: center;
    border-radius:10px;
    margin-bottom:20px;
    box-shadow: 3px 5px 5px 0px #dadadd95;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-badge {
    background: white;
    border-radius: 15px;
    padding: 3px 10px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.overall-rating {
    text-align: center;
    padding: 20px;
}

.overall-rating .big-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: black;
}

.overall-rating .small-text {
    font-size: 0.9rem;
    color: #666;
}

.ratings-container ul{
    display:flex;
    flex-direction:column;
    gap:10px;
}


/* media query */

@media (min-width: 1600px){
    #home-carousel .unit{
        background-image: url(../assets/flag-colombia-crop.webp);
        background-position: center 200%;
        background-size: cover;
    }
}

@media (max-width: 1200px){
    #home-carousel  .scroll-container{
        padding: 0 20px;
    }
    #home-carousel  #prev{
        transform: rotate(90deg);
        left: -10px;
        top: 50%;
    }

    #home-carousel  #next{
        transform: rotate(-90deg);
        right: -10px;
        top: 50%;
    }

    .unit{
        background-position: center center;
    }
}

@media (max-width: 1150px){
    .container{
    padding: 0 40px;
    }

    .unit{
    width:45%;
    }

    .unit-wrapper{
    padding-top: 30px;
    padding-bottom: 30px;
    }

    .footer-menu{
    padding: 20px 15px;
    gap:30px;
    }

    .promo__info {
    flex-wrap: wrap;
    }

    .promo__info_totals {
    grid-template-columns: repeat(2, 1fr);
    }

    .promo__banner {
    height: 230px;
    }

    .block .container .promo__banner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 120%;
    }

    .promo__offer{
    margin: 0 10px;
    position: relative;
    }

    .promo__offer_content h1 {
    font-size: 30px;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, .5);
    }

    .promo__offer_img {
    margin-top: 30px;
    height: auto;
    }

    .promo__info {
    flex-direction: column;
    row-gap: 10px;
    margin-left: 0;
    padding: 20px;
    margin-top: 10px;
    }

    .info_platforms, .rating_full {
    justify-content: start;
    gap: 10px;
    }

    .promo__info_totals{
    margin: 0;
    row-gap: 15px;
    padding-top: 10px;
    }

    #promo .txt {
    padding: 20px;
    margin-top: 0px;
    }

    #promo .container {
    box-shadow: none; 
    }

    #promo .star-rating{
    margin-top: 10px;
    }

    .content_wrap{
    padding: 20px 10px;
    }

    #prev,  #prev-game{
        transform: rotate(90deg);
        left: 10px;
        top: 50%;
    }

    #next,  #next-game{
        transform: rotate(-90deg);
        right: 10px;
        top: 50%;
    }

    .star-rating{
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        justify-content: center;
    }

    #prev-game, #next-game {
        top: 88%;
    }

    .game-card {
        flex: 0 0 calc(100% / 4);
    }

    .floating-image{
        max-width: 200px;
    }

    .banner div.bonus-promo{
        font-size: 36px;
        white-space: nowrap;
    }

    #bonus2{
    background-size: cover;
    }

    .swiper{
        padding-bottom: 80px;
    } 
    .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom: 0;
    }

    .swiper-button-prev{
        left: 5px;
    } 

    .swiper-button-next{
        right: 5px;
    } 

    #deposit .banner .floating-image{
    max-width: 40%;
    height: auto;
    }

    #deposit .bonus-promo {
        font-size: 46px;
    }

    .pay-block{
    padding: 0 40px;
    border-radius: 10px;
    box-shadow: none;
}
}

@media (max-width: 767px){
    body{
        padding-top: 50px;
    }

    .toggle-menu.active{
    display: flex!important;
    flex-direction: column;
    position: absolute;
    top: 55px;
    background-color: #1a198f;
    height: 95vh;
    width: 100%;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 80px;
    right: 0;
    overscroll-behavior: contain;
    z-index: 9999;
    }

    .toggle-menu ul{
    flex-direction: column;
    gap: 20px;
    }

    .toggle-menu ul a{
    text-transform: uppercase;
    }

    .toggle-menu .header-btns{
    flex-direction: column;
    width: 100%;
    align-items: center;
    }

    .toggle-menu .header-btns a{
    width: 80%;
    display: grid;
    }

    .container{
    padding: 0 15px;
    }

    .unit{
    width:100%;
    }

    #home-carousel .unit-wrapper{
    padding: 30px 15px;
    margin: 0 15px;
    }

    #home-body .unit-wrapper{
    padding: 30px 15px;
    }

    .footer-links{
    gap:10px;
    padding: 15px;
    flex-wrap: wrap;
    }

    .footer-menu{
    padding: 20px 15px;
    gap:30px;
    }

    .promo__banner {
    height: 150px;
    }

    .block .container .promo__banner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 120%;
    }

    .promo__offer{
    margin-left: 10px;
    position: relative;
    }

    .promo__offer_wrap{
    flex-direction: column;
    }

    .promo__offer_content h1, .title_section, #promo h3{
    font-size: 22px;
    color: black;
    text-shadow:none;
    }

    .promo__offer_img {
    height: 120px;
    width: 120px;
    margin-top: 80px;
    }

    .promo__info {
    flex-direction: column;
    row-gap: 10px;
    margin-left: 0;
    padding: 10px;
    }

    .info_platforms, .rating_full {
    justify-content: start;
    gap: 10px;
    }

    .promo__info_totals{
    margin: 0;
    row-gap: 15px;
    padding-top: 10px;
    }

    #promo .txt {
    padding: 10px;
    margin-top: 0px;
    }

    #promo .container {
    box-shadow: none; 
    }

    #promo .star-rating{
    margin-top: 10px;
    }

    .promo__offer_content {
    margin-top: 15px;
    }

    ol {
    padding-left: 20px;
    }

    .core_content .title_section {
    margin-bottom: 10px;
    }

    .content_wrap{
    padding: 10px;
    box-shadow: none;
    }

    .plus_minus {
    flex-wrap: wrap;
    gap: 15px;
    }

    .plus_minus__block {
    width: 100%;
    }

    #heading-app{
    flex-wrap: wrap;
    justify-content: center;
    }

    #heading-app h1{
        font-size: 30px;
    }

    .info-img img{
        width: 200px;
    }

    #home-carousel  .unit {
        flex: 0 0 calc(100% / 2 + 10px ); 
    }

    .unit{
        background-image: none;
        background-color: #00218d;
    }

    .unit a{
        color: white;
    }

    #home-carousel  #prev{
        transform: rotate(90deg);
        left: 5px;
        top: 50%;
    }

    #home-carousel  #next{
        transform: rotate(-90deg);
        right: 5px;
        top: 50%;
    }

    #home-body .star-rating .star-full:before, #home-carousel .star-rating .star-full:before{
    background-color: transparent;
    }

    .game-card {
        flex: 0 0 calc(100% / 2);
    }

    .games-wrapper {
        gap: 15px;
    }

    #prev-game, #next-game {
        top: 88%;
    }

    .game-status{
        font-size: 12px;
    }

    #bonus, #bonus2, #bonus3, #bonus-banners{
        height: 260px;
    }

    .bonus-content{
        align-items: center;
        align-content: center;
    }

    #app-body{
        background-image: none;
        background: linear-gradient(0deg, rgba(255, 186, 2, 1) 90%, rgba(255, 219, 0, 1) 100%);
    }

    #reviews .container {
        padding: 0 45px;
    }

    .swiper{
        padding-bottom: 60px;
        padding-top: 10px;
    } 

    .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
    font-weight: 700;
    }

    .swiper-button-next, .swiper-button-prev {
        top: 60%;
    }

    #reviews{
    background: #fdc700;
    }

    #deposit .bonus-promo {
        font-size: 40px!important;
    }

    #author .read-more{
        display: none;
    }

    #author ul svg{
        width: 50px!important;
    }

    .ratings-container{
		display:grid;
		grid-template-columns:1fr;
	}
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}