@font-face {
  font-family: Kanit;
  src: url(fonts/Kanit-Regular.ttf);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Kanit;
}

body {
  height: 100%;
  margin: 0;
  background-color: #133a25;
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 30px 0;
}

main {
  padding-top: 85px;
}

.padding__main {
  padding: 150px 0 50px 0;
}

.padding__main a {
  font-size: 24px;
}



/* burger */
.burger {
  display: none;
  height: 100%;
}

.nav__burger {
  top: 0;
  right: 0;
  padding: 50px 100px;
  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 */

.heading {
  margin: 0;
  margin-bottom: 30px;
  font-size: 30px;
}

.text {
  margin: 0;
  margin-bottom: 20px;
  font-size: 25px;
}

.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* header */
header {
  width: 100%;
  position: fixed;
  padding: 10px 0;
  z-index: 99;
  background-color: #000;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header__container1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.header__btn {
  padding: 3px 30px;
  border-radius: 10px;
  background-color: var(--lime);
  color: var(--black);
  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(--lime);
  color: var(--black);
}

.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;

  font-size: 25px;
  color: var(--yellow);

  transition: color 0.3s ease;
}

.header__logo:hover {
  color: var(--lime);
}

.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(--lime);
}

/* hero */
:root {
  --yellow: #FFD700;
  --lime: #32CD32;
  --white: #FFFFFF;
  --black: #000000;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/hero__bg.webp) center/cover no-repeat;
}

.hero__container {
  position: relative;
}

.hero__slider {
  position: relative;
  height: 400px;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}


.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  height: 100%;
  align-items: center;
  gap: 20px;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  object-fit: cover;
  animation: floatY 6s ease-in-out infinite;
}

.hero__content {
  color: var(--white);
  text-align: left;
}

.hero__heading {
  color: var(--yellow);
  font-size: 50px;
  margin-bottom: 12px;
  animation: glow 1s ease-in-out infinite;
}

.hero__text {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 20px;
}

.hero__btn {
  border-radius: 10px;
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  animation: pulse 3s ease-in-out infinite;
}

.hero__btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero__dot--active,
.hero__dot:hover {
  background: var(--yellow);
}

/* keyframes */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 4px var(--yellow);
  }

  50% {
    text-shadow: 0 0 8px var(--yellow);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes spinCoin {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* features */

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.features__item {
  background: var(--lime);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease;
}

.features__item:hover {
  background: var(--yellow);
}

.features__icon {
  width: 60px;
  height: 60px;

  animation: spinCoin 5s linear infinite;
}

.features__heading {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 8px;
}

.features__text {
  color: var(--black);
  font-size: 16px;
}

/* jackpot */
.jackpot__box {
  border: 4px solid var(--lime);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.jackpot__side {
  position: absolute;
  top: 0;
  width: 220px;
  object-fit: cover;
  z-index: 1;
}

.jackpot__side--left {
  left: 0;
}

.jackpot__side--right {
  right: 0;
}

.jackpot__heading {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 64px;
  color: var(--yellow);
  margin: 20px 0 0;
  animation: glow 4s ease-in-out infinite;
}

.jackpot__amount {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: var(--yellow);
  margin: 0px 0 30px;
}

.jackpot__carousel {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.jackpot__card {
  width: 140px;
  text-align: center;
  color: var(--white);
}

.jackpot__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border: 2px solid var(--lime);
  border-radius: 20px;
  margin-bottom: 6px;
}

.jackpot__sum {
  font-weight: 700;
  color: var(--yellow);
}

.jackpot__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0 30px;
}

.jackpot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--white);
  transition: 0.3s ease;
  cursor: pointer;
}

.jackpot__dot--active,
.jackpot__dot:hover {
  background: var(--yellow);
}

/* categories */
.categories__container {

  max-width: 1200px;
}

.categories__heading {
  color: var(--yellow);
  text-align: center;
  margin-bottom: 10px;
}

.categories__text {
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.categories__card {
  position: relative;
  border: 4px solid var(--lime);
  border-radius: 10px;
  overflow: hidden;
}

.categories__card--wide {
  grid-column: span 2;
}

.categories__label {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 6px 12px;
  margin: 0;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  border-radius: 6px;
  font-size: 20px;
  z-index: 2;
}

.categories__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.categories__btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  padding: 14px 30px;
  border-radius: 32px;
  font-weight: 700;
  transition: 0.3s ease;
}

.categories__btn:hover {
  background: var(--lime);
}

/* pgslots */
.pgslots__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pgslots__logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.pgslots__heading {
  color: var(--white);
  margin-right: auto;
  margin-bottom: 0;
}

.pgslots__more {
  background: var(--lime);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.pgslots__more:hover {
  background: var(--yellow);
}

.pgslots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.pgslots__card {
  position: relative;
  border: 4px solid var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.pgslots__card--active,
.pgslots__card:hover {
  border-color: var(--lime);
}

.pgslots__img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.pgslots__title {
  color: var(--white);
  background: var(--black);
  text-align: center;
  margin: 0;
  padding: 10px 4px;
  font-size: 16px;
}

.pgslots__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.pgslots__card:hover .pgslots__play {
  opacity: 1;
}

.pgslots__card:hover .pgslots__img {
  opacity: 0.7;
}

.pgslots__play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 16px solid var(--black);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* app */
.app__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.app__heading {
  color: var(--lime);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.app__text {
  color: var(--white);
  max-width: 520px;
  margin-bottom: 32px;
}

.app__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.app__box {
  border: 4px solid var(--lime);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: 0.3s ease;
}

.app__box:hover {
  border-color: var(--yellow);
}

.app__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: var(--yellow);
}

.app__label {
  color: var(--white);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.app__btn {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s ease;
}

.app__btn:hover {
  background: var(--lime);
}

.app__media {
  display: flex;
  justify-content: center;
}

.app__img {
  width: 100%;
  max-width: 450px;
  object-fit: cover;
  border-radius: 20px;
}

/* 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;
}

/* footer */
.footer {
  padding: 30px 0;
  border-top: 2px solid var(--lime);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.footer__text {
  color: var(--white);
  max-width: 260px;
  font-size: 20px;
  margin: 0;
}

.footer__badges {
  display: flex;
  color: var(--white);
  font-size: 30px;
}

.footer__badge {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__title {
  color: var(--lime);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
}

.footer__list {
  display: flex;
  padding: 0;
  list-style-type: none;
  flex-direction: column;
  margin: 0;
  gap: 10px;
}

.footer__link {
  color: var(--white);
  position: relative;
  padding-left: 14px;
  transition: 0.3s ease;
}

.footer__link::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.footer__link:hover {
  color: var(--yellow);
}

.footer__bottom {
  text-align: center;
  margin-top: 30px;
  padding: 20px 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--lime);
}

.footer__copyright {
  color: var(--white);
  margin-bottom: 0;
  font-size: 14px;
}