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

@font-face {
  font-family: "FuturaPTCondBoldOblique";
  src: url("../assets/fonts/futura-pt-cond-bold-oblique.otf");
  font-weight: 700;
}
@font-face {
  font-family: "FuturaPTCondExtraBold";
  src: url("../assets/fonts/FuturaPTCondExtraBold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "FuturaPTCondExtraBoldOblique";
  src: url("../assets/fonts/futura_pt_cond_extra_bold_oblique.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "RobotoRegular";
  src: url("../assets/fonts/roboto-regular.ttf");
  font-weight: 400;
}

:root {
  --c-red-1: #e01b1b;
  --c-red-2: #a60225;
  --c-red-3: #e01b1ba3;
  --c-white: #fff;
  --c-black: #0e1012;

  --g-yellow: linear-gradient(to top, #ecc440 0%, #fffa8a 50%, #ecc440 100%);
  --g-yellow-text: -webkit-linear-gradient(
    #ecc440 0%,
    #fffa8a 50%,
    #ecc440 100%
  );

  --f-futura-extra-bold: "FuturaPTCondExtraBold";
  --f-futura-extra-bold-obl: "FuturaPTCondExtraBoldOblique";
  --f-futura-bold-obl: "FuturaPTCondBoldOblique";
  --f-roboto-regular: "RobotoRegular";
}
a {
  text-decoration: none;
  color: unset;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--c-red-2);
}

.text-gradient-config {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flex-r {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.flex-c {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headline {
  font-size: 1.8rem;
  /* font-size: 32px; */
  text-transform: uppercase;
  color: var(--c-white);
  font-family: var(--f-futura-extra-bold-obl);
}
/* 
.btn,
.btn-reversed {
  height: 38px;
  padding: 15px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 18px;
  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
  cursor: pointer;
  color: var(--c-black);
}

.btn:hover,
.btn-reversed:hover {
}

.btn {
  background: var(--c-white);
}
.btn:hover {
  background: var(--g-yellow);
}

.btn-reversed {
  background: var(--g-yellow);
  text-decoration: none;
}

.btn-reversed:hover {
  background: var(--c-white);
} */

.btn {
  height: 38px;
  padding: 15px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 18px;
  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
  cursor: pointer;
  color: var(--c-black);
  /* background: linear-gradient(90deg, #ffc857, var(--c-white), #ffc857); */
  background: linear-gradient(90deg, #e01b1b, #0bf, #e01b1b);

  background-size: 300%;
  animation: gradientAnimation 5s linear infinite;
}
#login-btn {
  color: var(--c-white);
  border: 2px solid #ffc857;
}
.btn-reversed {
  height: 38px;
  padding: 15px;
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 18px;
  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
  cursor: pointer;
  color: var(--c-black);
  background: linear-gradient(-45deg, var(--c-white), #ffc857, var(--c-white));

  background-size: 400%;
  animation: gradientAnimation 5s linear infinite;
}

.btn:hover {
  background: linear-gradient(90deg, #ffc857, #ffffff);
}
#login-btn:hover {
  background: linear-gradient(-45deg, #0bf, #e01b1b, #0bf);
}

.btn-reversed:hover {
  background: linear-gradient(-45deg, #ffffff, #ffc857);
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cup {
  cursor: pointer;
}

.pl {
  padding-left: 1vw;
}

/* HEADER  */

header {
  width: 100dvw;
  position: fixed;
  top: 0;
  z-index: 22;
  height: 60px;
  background-color: var(--c-red-1);
  justify-content: space-between;
  padding: 0px 30px;
  z-index: 1000;
}

nav {
  position: fixed;
  /* top: 60px; */
  right: -70vw;
  top: 0;
  background: var(--c-red-1);
  padding: 18px 28px 18px 18px;
  width: 70vw;
  border-top-left-radius: 11px;
  border-bottom-left-radius: 11px;
  height: 100vh;
  z-index: 22;
  color: var(--c-black);
  opacity: 0;
  transition: all 0.3s ease;
}

nav.open {
  right: 0;
  opacity: 1;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 22;
  cursor: pointer;
}

.nav-bg {
  position: fixed;
  width: 100vw;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--c-red-3);
  height: 100vh;
  z-index: 18;
  display: none;
}

.nav-bg.open {
  display: block;
}

.header-logo {
  /* height: 1.5vw; */
  min-width: 180px;
  max-width: calc(13.8vw - 38px);
  top: 18px;
  object-fit: contain;
  cursor: pointer;
}

.header-left {
  gap: 2vw;
  height: 100%;
}

.header-left-item {
  cursor: pointer;
  white-space: nowrap;
  height: 100%;
  position: relative;
}

.header-left-item a {
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--f-futura-extra-bold);
}
.header-left-item img {
  filter: invert(0);
}

.header-left-item:nth-child(5) img {
  height: 30px;
  object-fit: contain;
  filter: invert(0);
}

nav .header-left-item {
  height: 50px;
  display: flex;
  color: var(--c-black);
}

nav .header-left-item img {
  filter: invert(1);
}

#close-dropdown {
  filter: invert(0);
  z-index: 22;
}

nav .header-left-item a,
nav .header-left-item p {
  width: fit-content;
  text-decoration: none;
  color: var(--c-black);
  font-family: var(--f-futura-extra-bold);
}

nav .header-left-item:nth-child(5) img {
  height: 30px;
  object-fit: contain;
  filter: invert(0);
}

.nav-title {
  justify-content: space-between;
  width: 100%;
}
.nav-title-lang .active {
  color: var(--c-white);
}

.nav-title img {
  height: 20px;
  width: 20px;
  filter: invert(0);
  object-fit: contain;
}

#nav-bonus {
  filter: invert(0);
  height: 30px;
}

.header-right-lang {
  margin-left: 10px;
}
.header-right-lang img {
  display: none;
  height: 24px;
  cursor: pointer;
  width: 30px;
}

.header-right-lang a {
  display: block;
  text-decoration: none;
  font-family: var(--f-futura-extra-bold);
  font-size: 20px;
  cursor: pointer;
  color: var(--c-white);
}

.header-right-lang a:hover {
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right-lang a.active {
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right-lang a.active:hover {
  background: var(--c-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-wrapper {
  margin-top: 60px;
  width: 100%;
  padding: 0 15vw 20px 15vw;
  position: relative;
  align-items: start;
}

/* DROPDOWN */

.nav-dropdown {
  position: absolute;
  top: 60px;
  display: none;
  left: -20px;
  flex-direction: column;

  background-color: var(--c-red-1);
  z-index: 15;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.nav-dropdown-item {
  text-transform: none;
  padding: 12px 20px;
  font-family: var(--f-futura-extra-bold);
  color: var(--c-white);
}

.nav-dropdown-item:hover {
  color: var();
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BANNER */

.banner {
  margin-top: 20px;
  position: relative;
  width: 70vw;
  height: 100%;
  overflow: hidden;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}

.banner-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.banner-bg-mob {
  display: none;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translate(0%, -50%);
  font-family: var(--f-futura-bold-obl);
  text-transform: uppercase;
}

.banner-content h1 {
  color: var(--c-white);
  font-size: 2.7vw;
}

.banner-content p:nth-child(2) {
  font-size: 1.9vw;
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content p:nth-child(2) span {
  font-size: 7.4vw;
  line-height: 6.5vw;
  font-family: var(--f-futura-extra-bold-obl);
}

.banner-content p:nth-child(3) {
  font-size: 2.7vw;
  font-family: var(--f-futura-extra-bold-obl);
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide-2-text {
  font-size: 5vw;
  line-height: 5vw;
  font-family: var(--f-futura-extra-bold-obl);
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.slide-2-text-sub {
  text-align: center;
  color: var(--c-white);
  font-size: 1.5vw;
  margin-top: 1vw;
}

.slide-3-text {
  font-size: 5vw;
  line-height: 4.5vw;
  font-family: var(--f-futura-extra-bold-obl);
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-3-text-sub {
  text-align: center;
  color: var(--c-white);
  font-size: 1.5vw;
  margin-top: 1vw;
}

.banner-btn {
  margin-top: 15px;
  /* min-height: 45px; */
  height: 4vw;
  font-family: var(--f-futura-extra-bold-obl);
  font-size: 1.8vw;
  text-transform: uppercase;
  background: var(--g-yellow);
  padding: 2vh 2.8vw;
  white-space: nowrap;
  border-radius: 28px;
}

.banner-btn:hover {
  background: var(--c-white);
}

/* SLIDER */
.slider-wrapper {
}

.slider {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  width: 70vw;
  margin-top: 20px;
}
.slider-content-1 {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translate(0%, -50%);
  font-family: var(--f-futura-bold-obl);
  text-transform: uppercase;
}

.slider-item-content {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translate(0%, -50%);
  font-family: var(--f-futura-bold-obl);
  text-transform: uppercase;
}
.slider-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.slider-img {
  display: inline-block;
}
.slider-mob-img {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: 30px; /* Adjust the top position as needed */
  width: 100%;
  list-style: none;
  text-align: center;
  padding: 0;

  margin: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 3px;
}

.slick-dots li button {
  background-color: white;
  border: none;
  width: 8px;
  cursor: pointer;
  color: #0000;
  height: 8px;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background: var(--g-yellow);
}

.block {
  margin: 30px 0px;
  display: flex;
  gap: 28px;
  flex-direction: column;
  /* gap: 25px; */
}
#block-10 {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.block p {
  font-family: var(--f-roboto-regular);
  color: var(--c-white);
}

.games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2vw;
}

.game {
  cursor: pointer;
  width: 16vw;
  height: fit-content;
  overflow: hidden;
  border-radius: 11px;
  position: relative;
  transition: transform 0.3s ease;
}
/* .game:hover {
  transform: scale(1.1);
} */
.game img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.game-hover {
  position: absolute;
  top: 0;
  z-index: 200;
  left: 0;
  width: 100%;
  height: calc(100% - 4px);
  background: var(--c-red-3);
  display: flex;
  align-items: center;
  border-radius: 8px;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.game-hover:hover {
  opacity: 1;
}
ul li {
  color: white;
}

/* FOOTER */

.footer {
  width: 100%;
}
.footer-1 {
  width: 100%;
  padding: 32px 0px;
  background-color: var(--c-red-1);
  gap: 30px;
}
.footer-1-row-1 {
  flex-wrap: wrap;
  justify-content: center;
}

.footer-1-row-1 a,
.footer-1-row-1 p {
  text-decoration: none;
  white-space: nowrap;
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  font-family: var(--f-futura-extra-bold);
  font-size: 18px;
  -webkit-text-fill-color: transparent;
}
.footer-1-row-1 a {
  cursor: pointer;
}
.footer-1-row-1 a:hover {
  background: var(--c-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-1-row-2 {
  color: var(--c-white);
  transform: scale(1.3);
  font-family: var(--f-futura-extra-bold);
}

.footer-1-row-3 {
  gap: 3.385vw;
  color: var(--c-white);
  font-size: 14px;
  font-family: var(--f-roboto-regular);
}

.footer-1-row-3 p span {
  cursor: pointer;
  background: var(--g-yellow-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-1-row-3 p span:hover {
  background: var(--c-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-1-row-4 {
  gap: 8px;
}
.footer-1-row-4 div {
  height: 34px;
  cursor: pointer;
  width: 34px;
  border-radius: 11px;
  background-color: var(--c-red-2);
  transition: all 0.3s ease;
}

.footer-1-row-4 div:hover {
  transform: translateY(-5px);
}

.footer-1-row-4 div img {
  height: 20px;
  object-fit: contain;
}

.footer-2 {
  padding: 23px 0px;
}

.footer-2 :hover {
  cursor: pointer;
}

.footer-3 {
  width: 100%;
  font-family: var(--f-roboto-regular);
  font-size: 12px;
  color: var(--c-white);
  background-color: var(--c-red-1);
  padding: 35px 0px;
}

.payments {
  display: block;
}

.payments-mob {
  display: none;
}
.splide__pagination__page.is-active {
  background: var(--g-yellow) !important;
}
.splide__pagination__page {
  background: var(--c-white) !important;
}
/* MEDIA */

@media (max-width: 1000px) {
  .header-left-item img {
    display: none;
  }

  .payments {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .pl {
    padding-left: 4vw;
  }
  header {
    padding: 0px 6vw;
  }
  .header-logo {
    width: 100%;
    min-width: unset;
    max-width: 180px;
  }
  .scroll-top {
    right: 6vw;
  }
  .header-left-item {
    display: none;
  }

  .header-right-lang a {
    display: none;
  }
  .header-right-lang img {
    display: block;
  }
  .content-wrapper {
    padding: 0 6vw 20px 6vw;
  }
  .banner {
    width: 90vw;
    margin-bottom: 20px;
  }
  .banner-bg {
    display: none;
  }
  .banner-bg-mob {
    display: block;
  }
  .banner-content h1 {
    font-size: 7vw;
  }
  .banner-btn {
    font-size: 4.7vw;
    height: 9vw;
    padding: 2vh 7vw;
    /* height: 6vh; */
  }

  .banner-content p:nth-child(2) {
    font-size: 5vw;
    gap: 0;
  }
  .banner-content p:nth-child(2) span {
    font-size: 18vw;
    line-height: 14vw;
  }
  .banner-content p:nth-child(3) {
    font-size: 7vw;
  }
  .slide-2-text {
    margin-top: 2vw;
    font-size: 12.5vw;
    line-height: 9.5vw;
  }
  .slide-2-text-sub {
    margin-top: 2vw;
    font-size: 4vw;
  }
  .slide-3-text {
    font-size: 12.5vw;
    line-height: 12.8vw;
  }
  .slide-3-text-sub {
    text-align: center;
    font-size: 4vw;
  }
  .games {
    gap: 3.2vw;
  }

  .game {
    width: 42.4vw;
    height: auto;
    overflow: hidden;
    border-radius: 11px;
    position: relative;
  }

  .block {
    margin: 25px 0px;
  }
  .footer-1-row-1 {
    flex-wrap: wrap;
    gap: 2vw;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 6vw;
  }
  .footer-1-row-1 p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-1-row-3 {
    flex-direction: column;
  }

  .payments {
    display: none;
  }
  .payments-mob {
    display: block;
  }
  .slider {
    width: 90vw;
  }

  .slider-img {
    display: none;
  }
  .slider-mob-img {
    display: inline-block;
  }
}

@media (max-width: 400px) {
  .header-logo {
    min-width: 110px;
  }
}
