@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lato-regular.woff") format("woff"),
    url("fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato Bold";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/lato-bold.woff") format("woff"),
    url("fonts/lato-bold.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --first-color__87jh: #EE944B;
  --second-color__87jh: #EE944B;
  --text-color__87jh: #ffff;
  --text-color-light__87jh: #ffffff;
  --body-color__87jh: #250D42;
  --second-body-color__87jh: #000000;

  --body-font-normal__87jh: 'Lato', sans-serif;
  --body-font-bold__87jh: 'Lato Bold', sans-serif;
  --h1-font-size__87jh: 1.75rem;
  --h2-font-size__87jh: 1.5rem;
  --h3-font-size__87jh: 1.25rem;
  --normal-font-size__87jh: .938rem;
  --small-font-size__87jh: .813rem;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--body-font-normal__87jh);
  font-size: var(--normal-font-size__87jh);
  background-color: var(--body-color__87jh);
  color: var(--text-color__87jh);
  height: 100%;
}

h1 {
  font-family: var(--body-font-bold__87jh);
  font-size: var(--h1-font-size__87jh);
}

h2 {
  font-family: var(--body-font-bold__87jh);
  font-size: var(--h2-font-size__87jh);
}

h3 {
  font-family: var(--body-font-bold__87jh);
  font-size: var(--h3-font-size__87jh);
}

p {
  line-height: 140%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper__87jh {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.container__87jh {
  max-width: 1240px;
  margin-right: 1.5rem;
  margin-left: 1rem;
}

.section__87jh {
  padding: 1rem 0;
}

.grid__87jh {
  display: grid;
  gap: 1rem;
}

.main__87jh {
  overflow: hidden;
  flex: 1 1 auto;
  padding-bottom: 80px;
}

.header__87jh {
  position: fixed;
  width: 100%;
  background-color: var(--second-body-color__87jh);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding-top: .5rem;
  padding-bottom: .5rem;
  gap: .5rem;
}

.nav__top__87jh {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  z-index: 1000;
}

.nav__logo__87jh img {
  width: 70px;
}

.nav__buttons__87jh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav__button__87jh {
  background-color: var(--first-color__87jh);
  color: var(--text-color__87jh);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
  gap: .5rem;
  padding: .95rem 1.75rem;
  font-family: var(--body-font-bold__87jh);
  font-size: var(--normal-font-size__87jh);
  transition: background .5s;
  border-radius: .5rem;
  cursor: pointer;
}

.nav__button__87jh:hover {
  background-color: var(--second-color__87jh);
}

.nav__button__87jh img {
  width: 16px;
}

.nav__bottom__87jh {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background-color: var(--second-body-color__87jh);
  width: 100%;
  margin: 0;
  z-index: 1000;
}

.nav__icons__87jh {
  display: flex;
  justify-content: space-between;
  border-radius: 1rem;
}

.nav__icon__87jh {
  display: grid;
  justify-content: center;
  gap: 0.25rem;
}

.nav__icon__87jh img {
  width: 24px;
  justify-self: center;
}

.nav__icon__87jh p {
  font-size: var(--small-font-size__87jh);
  color: var(--text-color__87jh);
}

.nav__icon_close__87jh {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.nav__icon_close__87jh img {
  width: 32px;
}

@media screen and (max-width: 1200px) {
  .nav__menu__87jh {
    position: fixed;
    background-color: var(--body-color__87jh);
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    transition: right .4s;
    padding-left: 4rem;
    margin-top: 7rem;
    margin-right: 0;
  }
}

.nav__list__87jh {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  row-gap: 1.5rem;
}

.nav__link__87jh {
  color: var(--text-color__87jh);
  transition: color .6s;
  font-family: 'Lato Bold', sans-serif;
  font-size: var(--normal-font-size__87jh);
}

.nav__link__87jh:hover {
  color: var(--second-color__87jh);
}

.show-menu__87jh {
  right: 0;
}

.top__container__87jh {
  margin-top: 8rem;
}

.first__block__87jh {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: .5rem;
  justify-content: space-between;
}

.block__87jh {
  display: grid;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: 4px;
  border: 1px solid var(--text-color__87jh);
  border-radius: .5rem;
  height: 90px;
  cursor: pointer;
  transition: border .4s;
}

.block__87jh:hover,
.menu__card__87jh:hover {
  border: 1px solid var(--second-color__87jh);
}

.block__87jh img {
  height: 30px;
  justify-self: center;
}

.block__87jh p {
  font-size: var(--small-font-size__87jh);
  text-transform: uppercase;
  color: var(--text-color__87jh);
}

.slider-container__87jh { 
  position: relative; 
  width: 100%; 
  overflow: hidden; 
  border-radius: 10px; 
}

.slides__87jh { 
  display: flex; 
  transition: transform 0.5s ease-in-out; 
  cursor: grab;
}

.slide__87jh { 
  min-width: 100%; 
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  justify-content: space-between;
}

 .slide__87jh img { 
  width: 100%; 
  border-radius: 10px; 
}

.slide__87jh a { 
  background-color: var(--first-color__87jh);
  color: var(--text-color__87jh);
  display: flex;
  padding: .5rem 2rem;
  width: 120px;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--body-font-bold__87jh);
  font-size: var(--normal-font-size__87jh);
  transition: background .5s;
  border-radius: .5rem;
  cursor: pointer;
}

.dots__87jh { 
  text-align: center; 
  margin-top: 2px; 
}

.dot__87jh { 
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  margin: 5px; 
  background: var(--text-color__87jh); 
  border-radius: 50%; 
  cursor: pointer; 
}

.active__87jh { 
  background: var(--first-color__87jh); 
}

.slide1__87jh {
  background: url(img/slide1.jpg) top no-repeat;
  background-size: cover;
}

.slide2__87jh {
  background: url(img/slide2.jpg) top no-repeat;
  background-size: cover;
}

.slide3__87jh {
  background: url(img/slide3.jpg) top right no-repeat;
  background-size: cover;
}

.slide4__87jh {
  background: url(img/slide4.jpg) top no-repeat;
  background-size: cover;
}

.menu__card__87jh img {
  height: 32px;
  justify-self: center;
}

.menu__row__87jh {
  display: flex;
  overflow: auto;
  white-space: nowrap;
  gap: 1rem;
}

.menu__card__87jh {
  justify-content: center;
  padding: 8px 16px;
  gap: 4px;
  border: .5px solid var(--text-color-light__87jh);
  border-radius: .5rem;
  width: 100px;
}

.menu__card__87jh p {
  color: var(--text-color__87jh);
}

.games__container__87jh a {
  justify-self: center;
}

.games__title__87jh {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.games__title__87jh img {
  width: 40px;
}

.games__row__87jh {
  display: flex;
  overflow: auto;
  white-space: nowrap;
  gap: .5rem;
}

.game__row__card__87jh {
  justify-content: center;
  text-align: center;
}

.game__row__card__87jh p {
  font-size: var(--small-font-size__87jh);
  color: #fff;
}

.game__image__87jh {
  width: 150px;
  cursor: pointer;
}

.bonus__cta__87jh {
  text-align: center;
  font-size: var(--h2-font-size__87jh);
}

.betting__image__bg__87jh {
  background-color: var(--second-body-color__87jh);
  padding: .5rem;
  border-radius: 1rem;
}

.betting__icon__87jh {
  width: 60px;
  justify-self: center;
}

.betting__row__87jh {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cards__row__87jh {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cards__row__87jh img {
  width: 180px;
}

.lottery__row__87jh img {
  width: 115px;
}

.title__87jh {
  text-align: center;
}

.popup__87jh {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--second-body-color__87jh);
  text-align: center;
  padding: 20px;
  box-shadow: 0 12px 20px rgba(254, 254, 254, 0.2);
  border-radius: 10px;
  width: 300px;
}
.popup__87jh.active__87jh {
  display: block;
}

.modal__content__87jh {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.modal__content__87jh img {
  width: 32px;
}

.overlay__87jh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  z-index: 999;
}

.overlay__87jh.active__87jh {
  display: block;
}

.popup__87jh a {
  justify-self: center;
}


/* FAQ */
.faq__title__87jh {
  font-size: clamp(1.25rem, 1.2vw + 1rem, 1.75rem);
  margin-bottom: 1rem;
}

.faq__item__87jh {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq__q__87jh {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.125rem;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq__q__87jh:focus-visible {
  outline: 2px solid #8ec5ff;
  outline-offset: 2px;
  border-radius: 12px;
}

.faq__chev__87jh {
  transition: transform .25s ease;
}

.faq__q__87jh[aria-expanded="true"] .faq__chev__87jh {
  transform: rotate(180deg);
}

.faq__a__87jh {
  padding: 0 1.125rem 1rem;
  animation: faqSlide .25s ease;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}


@media screen and (max-width: 340px) {

  .container__87jh {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .cards__row__87jh img {
    width: 150px;
  }
  
}

@media screen and (max-width: 380px) {

  .cards__row__87jh img {
    width: 150px;
  }

  .nav__button__87jh {
    width: 140px;
  }
  
}

@media screen and (min-width: 768px) {

  .slide__87jh { 
    gap: 8rem;
    padding: 2rem;
  }

  .game__image__87jh {
    width: 300px;
  }

  .cards__row__87jh img {
    width: 280px;
  }

  .betting__image__bg__87jh {
    width: 200px;
  }

  .betting__image__bg__87jh img {
    width: 80px;
  }

  .lottery__row__87jh img {
    width: 180px;
  }

}

@media screen and (min-width: 1200px) {

  :root {
    --h1-font-size__87jh: 2rem;
    --h2-font-size__87jh: 1.75rem;
    --h3-font-size__87jh: 1.5rem;
  }
  
  .nav__bottom__87jh,
  .nav__icon_close__87jh {
    display: none;
  }

  .nav__top__87jh,
  .nav__menu__87jh {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .nav__list__87jh {
    flex-direction: row;
    column-gap: 1rem;
  }

  .content__data__87jh {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

}

@media screen and (min-width: 1240px) {
  
  .container__87jh {
    margin-left: auto;
    margin-right: auto;
  }

  .main__87jh {
    padding-bottom: 16px;
  }

}

.download__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px auto;
}