@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
}

@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
}

@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

html {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Montserrat", "Verdana", sans-serif;
  color: #FFFFFF;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #131419;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.scroll-lock {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-weight: 500;
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
}

@font-face {
  font-weight: 500;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
}

@font-face {
  font-weight: 600;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
  font-weight: 700;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-weight: 900;
  font-style: normal;
  font-family: "Montserrat";
  font-display: swap;
  src: local("Montserrat"), url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1400px;
}

.menu__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -100;
}

.menu__content {
  width: 100%;
  max-width: 414px;
  min-height: 100vh;
  background-color: #23262E;
}

.menu__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6980392157);
  cursor: pointer;
  opacity: 0;
  z-index: -100;
}

.menu__inner {
  padding: 0.5rem;
  height: calc(100vh - 64px);
  overflow-y: auto;
}

.menu--open {
  z-index: 100;
  transform: translateX(0);
}

.menu--open .menu__overlay {
  opacity: 1;
  transition: opacity 0.4s ease;
  transition-delay: 0.3s;
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.menu__button {
  padding: 0 20px;
  border: none;
  color: #7D8594;
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.menu__button--close {
  position: absolute;
  top: 23px;
  left: 0;
}

.menu__button:active {
  opacity: 0.8;
}

.menu__btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(96deg, #744d2f 0, #393e4a 30%);
  opacity: 0.8;
  border-radius: 8px;
  transition: opacity 0.4s ease;
}

.menu__btn:active {
  opacity: 1;
}

.menu__btn--center {
  justify-content: center;
  grid-column: 1/-1;
}

.menu__img {
  width: 40px;
  height: 40px;
}

.menu__logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  width: 100%;
  max-width: 414px;
  background-color: #23262E;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2392156863), 0 0 1px 0 rgba(0, 0, 0, 0.3215686275);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding: 0.5rem;
  color: #462201;
  background-color: #FF7900;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid #FF7900;
  outline-offset: 2px;
}

.btn:active {
  background-color: #CF6301;
}

.btn--blue {
  color: #FFFFFF;
  background-color: #454B5A;
}

.btn--blue:active {
  background-color: #393E4A;
}

.card {
  position: relative;
  max-width: 214px;
  max-height: 286px;
  width: 100%;
  aspect-ratio: 1/1.5;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.card a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.card a:focus-visible {
  outline: 2px solid #FF7900;
  outline-offset: 2px;
}

.card a:focus-visible .card__img {
  transform: scale(1.1);
  will-change: transform;
}

.card__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1) translateZ(0);
  transition: 0.4s ease;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.card__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  min-height: 56px;
  padding: 0.25rem;
  background: linear-gradient(180deg, #23262e, #23262e);
  box-shadow: inset 0 0 30px #000;
  border: 1px solid #CF6301;
  text-align: center;
  border-radius: 12px;
}

.card__provider {
  text-transform: uppercase;
  font-size: 8px;
}

.card__title {
  font-weight: 700px;
  color: #C1C9D4;
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  font-size: 1rem;
}

.accordion {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  background-color: #393E4A;
  border-radius: 8px;
  border: none;
  text-align: left;
  color: #FFFFFF;
  opacity: 0.8;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.accordion__button:active {
  opacity: 1;
}

.accordion__button svg {
  transform: rotate(180deg);
  transition: transform 0.4s ease;
}

.accordion__item {
  margin-bottom: 0.25rem;
}

.accordion__item--active .accordion__content {
  max-height: 100%;
}

.accordion__item--active svg {
  transform: rotate(0deg);
}

.accordion__content {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: max-height 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

.accordion__link {
  display: block;
  width: 90%;
  color: #7D8594;
  padding: 0.5rem;
  transform: translateX(0);
  transition: transform 0.4s ease;
}

.accordion__link:active {
  transform: translateX(10px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1rem;
  background-color: #131419;
  z-index: 50;
}

.header__logo {
  max-height: 27px;
  max-width: 150px;
}

.header__right {
  display: flex;
  gap: 0.5rem;
}

.header__left {
  display: flex;
  gap: 1rem;
}

.header__search {
  display: flex;
  align-items: center;
  color: #7D8594;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.intro {
  padding-top: 65px;
}

.intro .container {
  height: 100%;
  position: relative;
  aspect-ratio: 1/0.433;
}

.intro__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
}

.intro__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 4rem;
}

.intro__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.28;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #C1C9D4;
}

.intro__desc {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 2.75rem;
  max-width: 670px;
}

.intro .btn {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.games__title-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.games__title {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1.2;
}

.games__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 208, 165, 0) 0%, #FFD0A5 100%);
}

.games__line--right {
  background: linear-gradient(90deg, #FFD0A5 0%, rgba(255, 208, 165, 0) 100%);
}

.games__cards {
  width: 100%;
}

.games__scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 1.5rem 1rem;
}

.banner .container {
  height: 100%;
  position: relative;
  min-height: 784px;
}

.banner__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  aspect-ratio: 1/0.574;
}

.banner__content {
  max-width: 600px;
}

.banner__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.2;
}

.banner__text {
  margin-bottom: 2.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #7D8594;
}

.banner__bar {
  display: flex;
  flex-direction: column;
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(84deg, #FFAA5E 0%, #FFD0A5 100%);
  border: 2px solid #FFD0A5;
  border-radius: 20px;
  color: black;
  line-height: 1.2;
  padding: 1.5rem 2rem;
}

.banner__cashback {
  font-size: 72px;
  font-weight: 700;
}

.banner__cashback-desc {
  font-size: 18px;
}

.seo-content {
  width: 70%;
  margin: 0 auto;
}

.seo-content__container > p {
  margin-top: 1rem;
  color: #7D8594;
}

.seo-content_container > h1,
.seo-content_container > h2,
.seo-content_container > h3,
.seo-content_container > h4 {
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.seo-content h1 {
  font-size: 3rem;
}

.seo-content h2 {
  font-size: 2.25rem;
}

.seo-content h3 {
  font-size: 1.5rem;
}

.seo-content .table-wrap {
  width: 100%;
  overflow-x: auto;
}

.seo-content table {
  margin: 1rem 0;
  border-collapse: collapse;
}

.seo-content th,
.seo-content td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #393E4A;
}

.seo-content th {
  font-weight: 700;
  background-color: #FF7900;
  color: #462201;
}

.seo-content li {
  margin-top: 1rem;
  color: #7D8594;
}

.seo-content .btn {
  font-size: 1rem;
  margin: 0 auto;
  padding: 1rem;
}

.seo-content strong:not(td > strong) {
  font-weight: 700;
  color: #C1C9D4;
}

.seo-content .card {
  margin-top: 1rem;
}

.seo-content ul,
.seo-content ol {
  margin: 1rem 0;
}

.footer {
  padding: 2.75rem 0;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-column-count: 4;
  column-count: 4;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  width: 80%;
}

.footer__logo {
  width: 150px;
  height: 30px;
  margin-bottom: 1.5rem;
}

.footer__link a {
  display: inline-block;
  padding: 0.5rem;
  color: #7D8594;
  transition: color 0.4s ease;
}

.footer__link a:active {
  color: #C1C9D4;
}

.footer__line {
  border: none;
  background-color: #7D8594;
  height: 1px;
}

.footer__icons {
  display: flex;
  justify-content: end;
  gap: 1rem;
  margin-block: 2.75rem 1rem;
}

.footer__copyright {
  color: #7D8594;
  font-size: 0.875rem;
}

@media (hover: hover), screen and (min-width: 0\0 ) {
  .menu__button:hover {
    opacity: 0.8;
  }

  .menu__btn:hover {
    opacity: 1;
  }

  .btn:hover {
    background-color: #FF973A;
  }

  .btn--blue:hover {
    background-color: #393E4A;
  }

  .card:hover .card__img {
    transform: scale(1.1);
    will-change: transform;
  }

  .accordion__button:hover {
    opacity: 1;
  }

  .accordion__link:hover {
    transform: translateX(10px);
  }

  .header__search:hover {
    opacity: 0.7;
  }

  .footer__link a:hover {
    color: #C1C9D4;
  }
}

@media (max-width: 1249px) {
  html {
    font-size: 12px;
  }

  .header__logo {
    max-width: 47px;
  }

  .intro__text {
    min-width: 100%;
    text-align: center;
    justify-content: end;
    padding: 0;
  }

  .intro__title {
    font-size: 1.5rem;
  }

  .intro__desc {
    max-width: 280px;
    margin-inline: auto;
    font-size: 2.25rem;
  }

  .intro .btn {
    min-width: 100%;
  }

  .banner .container {
    min-height: auto;
  }

  .banner__img {
    position: relative;
  }

  .banner__content {
    max-width: 100%;
    text-align: center;
  }

  .banner__title {
    font-size: 1.5rem;
  }

  .banner__text {
    font-size: 1rem;
  }

  .banner__bar {
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
  }

  .banner__cashback {
    font-size: 40px;
  }

  .banner__cashback-desc {
    font-size: 14px;
    max-width: 80px;
  }
}

@media (max-width: 1023px) {
  .footer__nav {
    width: 100%;
    -moz-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 767px) {
  .intro .container {
    aspect-ratio: auto;
    min-height: 492px;
  }

  .intro__img {
    -o-object-position: top;
    object-position: top;
  }

  .intro__text {
    min-height: 492px;
  }

  .games__cards {
    overflow-x: scroll;
    padding-bottom: 0.5rem;
  }

  .games__scroll {
    display: flex;
    min-width: -moz-max-content;
    min-width: max-content;
  }

  .seo-content {
    width: 100%;
  }

  .footer__logo {
    width: 47px;
  }
}
/*# sourceMappingURL=style.min.css.map */
