@font-face {
  font-family: "Arima";
  src: url(fonts/Arima-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Arima";
}

body {
  height: 100%;
  margin: 0;
  background-color: var(--dark-gray);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  padding-top: 60px;
}

.heading {
  margin: 0;
  margin-bottom: 30px;
  font-size: 30px;
}

.text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
}


/* header */
header {
  width: 100%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: #000;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header__container1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header__btn {
  padding: 3px 30px;
  border-radius: 10px;
  background-color: var(--dark-yellow);
  color: var(--white);
  transition: .3s ease;
}

.header__btn:hover {
  background-color: var(--white);
  color: var(--dark-gray);
}

.header__btn:last-child {
  background-color: var(--white);
  color: var(--dark-gray);
}

.header__btn:last-child:hover {
  background-color: var(--dark-yellow);
  color: var(--white);
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 25px;
  color: var(--dark-yellow);

  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--white);
}

.nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.nav__list {
  font-size: 20px;
  color: var(--white);

  transition: color 0.3s ease;
}

.nav__list:hover {
  color: var(--dark-yellow);
}

:root {
  --dark-yellow: #d4a000;
  --dark-gray: #333333;
  --white: #ffffff;
  --light-gray: #cccccc;
}

/* hero */
.hero {
  position: relative;
}

.hero__container {
  position: relative;
  height: 90vh;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  opacity: 0;
  transition: 0.8s ease;
}

.hero__slide--active {
  opacity: 1;
}

.hero__img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background: #000000;
  opacity: 0.7;
}

.hero__overlay::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(25deg);
  animation: streak 6s linear infinite;
}

@keyframes streak {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 900px;
}

/* halo blur */
.hero__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--dark-yellow) 0%, transparent 70%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  opacity: 0.5;
  animation: haloPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes haloPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.9;
  }
}

.hero__heading {
  color: var(--dark-yellow);
  font-size: 55px;
  margin-bottom: 20px;
  animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {

  0%,
  100% {
    text-shadow: 0 0 10px var(--dark-yellow);
  }

  50% {
    text-shadow: 0 0 20px var(--dark-yellow);
  }
}

.hero__text {
  color: var(--white);
  font-size: 25px;
  margin: 0;
}

.hero__cta {
  display: inline-block;
  margin-top: 20px;
  border-radius: 10px;
  padding: 18px 48px;
  background: var(--dark-yellow);
  color: var(--white);
  font-size: 22px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero__cta:hover {
  background: var(--white);
  color: var(--dark-gray);
}

/* updates */
.updates__container {
  display: grid;
  row-gap: 20px;
}

.updates__heading {
  color: var(--dark-yellow);
  font-size: 38px;
  margin: 0;
}

.updates__text {
  color: var(--white);
  font-size: 20px;
  margin: 0;
}

/* marquee */
.updates__marquee {
  position: relative;
  width: 100%;
  height: 46px;
  border: 2px solid var(--dark-yellow);
  border-radius: 28px;
  overflow: hidden;
}

.updates__marquee-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-size: 20px;
  line-height: 42px;
  animation: marquee 12s linear infinite;
  color: var(--white);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* grid */
.updates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

/* slider */
.updates__slider {
  position: relative;
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
}

.updates__slides {
  position: relative;
  width: 100%;
  height: 260px;
}

.updates__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: 0;
  transition: 0.8s ease;
}

.updates__slide--active {
  opacity: 1;
}

/* dots */
.updates__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  column-gap: 8px;
}

.updates__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  transition: 0.3s ease;
}

.updates__dot--active {
  background: var(--dark-yellow);
}

/* wins */
.updates__wins {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 24px 20px;
  height: 260px;
  overflow: hidden;
}

.updates__wins-list {
  display: grid;
  padding-left: 0;
  row-gap: 18px;
}

.updates__win {
  display: grid;
  grid-template-columns: 48px auto auto auto;
  column-gap: 12px;
  align-items: center;
  font-size: 18px;
  color: var(--white);
}

.updates__win-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.updates__win-user {
  color: var(--light-gray);
}

.updates__win-amount {
  color: var(--dark-yellow);
  justify-self: end;
}

.updates__win-game {
  color: var(--light-gray);
  text-align: right;
}

/* jackpot */
.jackpot__container {
  text-align: center;
}

.jackpot__heading {
  color: var(--dark-yellow);
  font-size: 50px;
  margin-bottom: 22px;
  text-shadow: 0 0 16px var(--dark-yellow);
}

.jackpot__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.jackpot__emoji {
  font-size: 96px;
  line-height: 1;
}

.jackpot__board {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 16px;
  background: repeating-linear-gradient(45deg,
      #ff2847 0 20px,
      #ffffff 20px 40px);
}

.jackpot__digit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 78px;
  margin: 0 3px;
  font-size: 48px;
  font-weight: 700;
  color: #222222;
  background: linear-gradient(180deg, #ffe680 0%, #ffcf00 100%);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.jackpot__digit--symbol {
  width: 30px;
  background: transparent;
  font-size: 52px;
  color: var(--dark-yellow);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

/* games */
.games__heading {
  color: var(--dark-yellow);
  font-size: 42px;
  margin-bottom: 18px;
}

.games__text {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 32px;
}

.games__tabs {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #000;
  display: flex;
  column-gap: 16px;
  margin-bottom: 28px;
}

.games__tab {
  flex: 0 0 auto;
  padding: 14px 32px;
  font-size: 20px;
  background: #2b2b2b;
  color: var(--white);
  border: 2px solid #2b2b2b;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.games__tab:hover {
  border-color: var(--white);
}

.games__tab--active {
  border-color: var(--dark-yellow);
  background: var(--dark-yellow);
  color: #1a1a1a;
}

.games__pane {
  display: none;
}

.games__pane--active {
  display: block;
}

.games__grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.games__card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--dark-yellow);
  border-radius: 20px;
}

.games__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.games__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.games__btn {
  padding: 12px 28px;
  background: var(--dark-yellow);
  color: var(--white);
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.games__card:hover .games__overlay {
  opacity: 0.8;
}

.games__card:hover .games__img {
  transform: scale(1.05);
}

.games__card:hover .games__btn {
  transform: scale(1.05);
}

/* app */
.app__container {
  position: relative;
}

.app__banner {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
}

.app__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.app__content {
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
  max-width: 480px;
  text-align: center;
  padding: 0 20px;
}

.app__heading {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 18px;
}

.app__logo {
  color: var(--dark-yellow);
}

.app__text {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 36px;
}

.app__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.app__btn {
  padding: 18px 0;
  font-size: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.app__btn--ios {
  background: var(--dark-yellow);
  color: var(--white);
}

.app__btn--android {
  background: var(--white);
  color: var(--dark-gray);
}

.app__btn:hover {
  transform: scale(1.05);
}

/* footer */
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer__heading {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__link {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--light-gray);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer__link:hover {
  color: var(--dark-yellow);
}

/* partners */
.partners {
  padding: 30px 0;
  background-color: #000;
}

.partners__container {
  display: grid;
  row-gap: 24px;
}

.partners__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  justify-items: center;
  align-items: center;
}

.partners__logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.partners__text {
  text-align: center;
  color: var(--light-gray);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.partners__copyright {
  color: var(--light-gray);
  font-size: 14px;
  text-align: center;
  margin: 0;
}

/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 70px;
  width: 100%;
  position: absolute;
  z-index: 99;

  display: none;
  flex-direction: column;

  background-color: #000;
}

.nav__burger .nav__list {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
}

.active {
  display: flex;
}

.overflow {
  overflow: hidden;
}

.burger-checkbox {
  position: absolute;
  visibility: hidden;
  right: 0;
}

.burger {
  cursor: pointer;
  display: none;
  color: #fff;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 23px;
  z-index: 100;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #fff;
}

.burger::before {
  top: 0px;
  box-shadow: 0 11px 0 #fff;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked+.burger::before {
  top: 12px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 transparent;
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked+.burger::after {
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

/* end burger */