@font-face {
  font-family: 'Gilroy';
  src: url('./fonts/Gilroy-ExtraBold.ttf') format('woff2');
  font-weight: 900;
  font-display: swap;
}

html,
body {
  --gutter-x: 3rem;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  font-size: 14px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin: 0;
  padding: 0;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 19, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 204, 36, 0.2);
  border-top-color: #ffcc24;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Game Section Styles */
.game-section {
  height: 100vh;
  height: 100dvh;
  background-color: #0a0a0a;
  color: #ffffff;
  padding-top: 6rem;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
  gap: 0;
}

.game-section .container {
  max-width: 700px;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.game-section .brand-header {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  z-index: 10;
}

.game-section .logo {
  font-weight: 800;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.game-section .logo span {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-section .logo-icon {
  width: 40px;
  height: 40px;
  fill: #8b5cf6;
}

.game-section .game-wrapper {
  background: #141414;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
}

.game-section .game-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.game-section .game-hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  background: #0f0f0f;
  padding: 15px 25px;
  border-radius: 12px;
  border: 1px solid #27272a;
}

.game-section .hud-box h3 {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.game-section .hud-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.game-section .hud-value span {
  color: #fbbf24;
  margin-left: 5px;
  font-weight: 600;
  font-size: 1rem;
}

.game-section .slot-window {
  background: #050505;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 25px;
  position: relative;
  border: 2px solid #27272a;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.game-section .win-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  border-top: 1px solid rgba(139, 92, 246, 0.5);
  border-bottom: 1px solid rgba(139, 92, 246, 0.5);
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-section .win-line::after {
  content: 'WIN ZONE';
  font-size: 10px;
  color: #8b5cf6;
  opacity: 0.8;
  letter-spacing: 2px;
  margin-top: 60px;
  font-weight: 700;
  background: #050505;
  padding: 2px 8px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
}

.game-section .reels-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  height: 400px;
  overflow: hidden;
}

.game-section .reel-col {
  background: #0a0a0a;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.game-section .reel-strip {
  position: relative;
  transition: transform 0s;
}

.game-section .symbol {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.game-section .symbol svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
  transition: transform 0.2s;
}

.game-section .sym-clover {
  fill: #10b981;
}

.game-section .sym-seven {
  fill: #8b5cf6;
}

.game-section .sym-diamond {
  fill: #06b6d4;
}

.game-section .sym-coin {
  fill: #fbbf24;
}

.game-section .sym-heart {
  fill: #ef4444;
}

.game-section .sym-crown {
  fill: #eab308;
}

.game-section .controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-section .status-bar {
  text-align: center;
  min-height: 24px;
  font-weight: 600;
  font-size: 1rem;
  color: #8b5cf6;
  font-family: 'Poppins', sans-serif;
}

.game-section .bet-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #111;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #333;
}

.game-section .bet-btn {
  width: 40px;
  height: 40px;
  background: #27272a;
  color: #ffffff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Poppins', sans-serif;
}

.game-section .bet-btn:hover {
  background: #8b5cf6;
}

.game-section .bet-display {
  font-size: 1rem;
  color: #aaa;
  width: 140px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.game-section .bet-display span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.game-section .spin-btn {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.game-section .spin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.game-section .spin-btn:active {
  transform: translateY(1px);
}

.game-section .spin-btn:disabled {
  background: #333;
  color: #666;
  box-shadow: none;
  cursor: not-allowed;
}

.game-section .bonus-row {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.game-section .bonus-btn {
  flex: 1;
  background: transparent;
  border: 1px solid #333;
  color: #9ca3af;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  font-family: 'Poppins', sans-serif;
}

.game-section .bonus-btn:hover:not(:disabled) {
  border-color: #8b5cf6;
  color: #fff;
  background: rgba(139, 92, 246, 0.1);
}

.game-section .bonus-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.game-section .bonus-btn.welcome {
  border-color: #fbbf24;
  color: #fbbf24;
}

.game-section .bonus-btn.welcome:hover:not(:disabled) {
  background: rgba(251, 191, 36, 0.1);
}

.game-section .mini-footer {
  margin-top: 2rem;
  text-align: center;
  color: #52525b;
  font-size: 0.75rem;
  max-width: 500px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 600px) {
  .game-section .game-wrapper {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 20px;
  }

  .game-section .brand-header {
    margin-bottom: 20px;
  }

  .game-section .reels-container {
    height: 350px;
  }

  .game-section .symbol {
    height: 70px;
  }

  .game-section .win-line {
    height: 70px;
  }

  .game-section .win-line::after {
    margin-top: 52px;
    font-size: 8px;
  }
}

/* Section fade-in animations */
section>.container>h1,
section>.container>h2,
section>.container>p,
section>.container>a.cta,
/* section>.container>picture, */
section>.providers>.container>h1,
section>.providers>.container>.providers-wrapper,
section>.providers>.container>.info,
section>footer>.container>p,
section>footer>.container>h2,
section>footer>.container>.footer-logo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.active>.container>h1,
section.active>.container>h2,
section.active>.container>p,
section.active>.container>a.cta,
/* section.active>.container>picture, */
section.active>.providers>.container>h1,
section.active>.providers>.container>.providers-wrapper,
section.active>.providers>.container>.info,
section.active>footer>.container>p,
section.active>footer>.container>h2,
section.active>footer>.container>.footer-logo {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for children */
section.active>.container>h1 {
  transition-delay: 0.1s;
}

section.active>.container>h2 {
  transition-delay: 0.2s;
}

section.active>.container>a.cta {
  transition-delay: 0.3s;
}

section.active>.container>p {
  transition-delay: 0.4s;
}

section.active>.container>picture {
  transition-delay: 0.5s;
}

section.active>.providers>.container>h1 {
  transition-delay: 0.1s;
}

section.active>.providers>.container>.providers-wrapper {
  transition-delay: 0.2s;
}

section.active>.providers>.container>.info {
  transition-delay: 0.3s;
}

section.active>footer>.container>p {
  transition-delay: 0.4s;
}

section.active>footer>.container>h2 {
  transition-delay: 0.5s;
}

section.active>footer>.container>.footer-logo {
  transition-delay: 0.6s;
}

@media (min-width: 1921px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 1920px) and (min-width: 1442px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1441px) and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1279px) and (min-width: 992px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  html {
    font-size: 9.5px;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  html {
    font-size: 9.5px;
  }
}

@media (max-width: 575px) {
  html {
    font-size: 10px;
    --gutter-x: 1.5em;
    overflow-x: hidden;
  }
}

section {
  scroll-snap-align: start;
}

a {
  text-decoration: none;
  user-select: none;
}

button {
  user-select: none;
}

button {
  background-color: transparent;
  border: none;
  display: block;
  padding: 0;
  margin: 0;
  align-items: normal;
}

@media (hover: hover) {
  a {
    cursor: pointer;
  }

  button {
    cursor: pointer;
  }
}

main {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
}

section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: 6.5rem;
  scroll-snap-align: start;
  overflow: hidden;
}

h1 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02rem;
  line-height: 90%;
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-family: 'Roboto', sans-serif;
  color: #fffbec;
  font-weight: 400;
  text-align: center;
  font-size: 2.25rem;
}

p {
  font-family: 'Roboto', sans-serif;
  color: #fffbec;
  font-weight: 400;
  text-align: center;
  font-size: 1.15rem;
}

nav {
  width: 100%;
  background-color: #111113;
  border-bottom: 1px solid #FFCC24;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: hidden;
}

nav .container {
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}

nav .container::before {
  content: '';
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: -8rem;
  left: 0;
  background: #FFCC24;
  filter: blur(58.8px);
  border-radius: 50%;
  z-index: 1;
}

nav img {
  width: 16rem;
  position: relative;
  z-index: 2;
}

nav .button-wrapper {
  display: flex;
  gap: 1rem;
}

nav .button-wrapper a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFCC24;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  background-color: #111113;
  transition: all 0.3s ease;
  text-transform: capitalize;
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  box-shadow: 0px 3.67347px 3.67347px rgba(0, 0, 0, 0.25), 0px 1.83673px 15.6122px rgba(73, 73, 73, 0.1);
}

nav .button-wrapper a.play-now-nav {
  color: black;
  background: #ffcc24;
}

nav .button-wrapper a.play-now-nav:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0px 3px 12px rgba(255, 204, 36, 0.5), 0px 3px 20px rgba(255, 204, 36, 0.3);
  background: #ffd84d;
}

nav .button-wrapper a:nth-of-type(2) {
  background: radial-gradient(40.24% 40.24% at 50% 93.9%, #66696D 18.5%, rgba(30, 31, 32, 0) 100%), linear-gradient(180deg, #29292C 0%, #353539 100%);
  color: white;
}

nav .button-wrapper a:nth-of-type(2):hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0px 3px 12px rgba(255, 204, 36, 0.3), 0px 3px 20px rgba(73, 73, 73, 0.2);
}

nav .button-wrapper a:nth-of-type(3) {
  color: black;
  background: #ffcc24;
}

nav .button-wrapper a:nth-of-type(3):hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0px 3px 12px rgba(255, 204, 36, 0.5), 0px 3px 20px rgba(255, 204, 36, 0.3);
  background: #ffd84d;
}

.container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  margin: 0 auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}

.cta {
  text-transform: uppercase;
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  padding: 1.5rem 3.5rem;
  border-radius: 4rem;
  position: relative;
  background-color: rgba(17, 17, 19, 0.5);
}

.cta span {
  text-transform: uppercase;
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  position: relative;
  z-index: 2;
}

.cta::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px;
  border-radius: 4rem;
  background: linear-gradient(90deg,
      rgba(255, 204, 36, 1) 0%,
      rgba(71, 56, 105, 1) 40%,
      rgba(71, 56, 105, 1) 50%,
      rgba(71, 56, 105, 1) 60%,
      rgba(255, 204, 36, 1) 100%);

  background-size: 300% 300%;
  transition: background-position 0.6s ease;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.cta:hover::before {
  background-position: 100% 50%;
}

/* Section 1 */

.section1 {
  width: 100%;
  background-color: #111113;
}

.section1 .container {
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 1.65rem;
  position: relative;
}

.section1 p {
  margin-top: -1.25rem;
}

.hero-image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  mix-blend-mode: lighten;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0));
}

.section1.active .hero-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.section1 picture {
  opacity: 1;
  transform: unset;
}

.section1 h1,
.section1 h2,
.section1 .cta,
.section1 p {
  position: relative;
  z-index: 2;
}

/* Section 2 */

.section2 {
  width: 100%;
  background-color: #111113;
}

.section2 .container {
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 1.65rem;
  position: relative;
}

.section2 p {
  margin-top: -1.25rem;
}

.section2 .card-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 2rem;
}

.section2 .card-wrapper .card-container {
  width: 100%;
  height: 100%;
  max-height: 600px;
  padding: 0.5rem;
}

.section2 .card-wrapper .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  border-radius: 8px;
  padding: 2.5rem 1rem;
}

.section2 .card-wrapper .card-container:nth-of-type(1) .card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section2 .card-wrapper .card-container:nth-of-type(2) .card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section2 .card-wrapper .card-container:nth-of-type(3) .card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.webp-supported .section2 .card-wrapper .card-container:nth-of-type(1) .card {
  background-image: url('./images/card1.webp');
}

body.webp-supported .section2 .card-wrapper .card-container:nth-of-type(2) .card {
  background-image: url('./images/card2.webp');
}

body.webp-supported .section2 .card-wrapper .card-container:nth-of-type(3) .card {
  background-image: url('./images/card3.webp');
}

body.webp-not-supported .section2 .card-wrapper .card-container:nth-of-type(1) .card {
  background-image: url('./images/card1.jpg');
}

body.webp-not-supported .section2 .card-wrapper .card-container:nth-of-type(2) .card {
  background-image: url('./images/card2.jpg');
}

body.webp-not-supported .section2 .card-wrapper .card-container:nth-of-type(3) .card {
  background-image: url('./images/card3.jpg');
}

.card-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section2.active .card-container {
  opacity: 1;
  transform: translateY(0);
}

.section2.active .card-container:nth-of-type(1) {
  transition-delay: 0.5s;
}

.section2.active .card-container:nth-of-type(2) {
  transition-delay: 0.6s;
}

.section2.active .card-container:nth-of-type(3) {
  transition-delay: 0.7s;
}

.card-mobile-navigation {
  display: none;
}

.card h3 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  text-transform: uppercase;
  text-align: center;
  color: white;
  letter-spacing: -0.02rem;
  line-height: 90%;
}

.card h4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  text-align: center;
  color: #FFCC24;
  text-transform: uppercase;
}

/* Section 3 */

.section3 {
  width: 100%;
  background: linear-gradient(262.33deg, #1A181B 0%, #0F0F0F 100%);
}

.section3 .container {
  width: 100%;
  height: 100%;
  max-width: 1600px;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0rem !important;
  gap: 1.65rem;
  position: relative;
}

.section3 p {
  margin-top: -1.25rem;
}

.games-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
  margin: auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 2.5%, rgb(0, 0, 0) 97.5%, rgba(0, 0, 0, 0));
}

.marquee-row {
  width: 9999px;
  height: 50%;
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: contents;
  gap: 0.5rem;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

.marquee-right {
  transform: translateX(-6669px);
  animation: marquee-right 60s linear infinite;
  -webkit-animation: marquee-right 60s linear infinite;
}

.marquee-left {
  transform: translateX(0px);
  animation: marquee-left 60s linear infinite;
  -webkit-animation: marquee-left 60s linear infinite;
}

.marquee-row picture {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.marquee-row img {
  /* width: 20rem; */
  width: 20vh;
  width: 20dvh;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

.marquee-left {
  margin-top: 0.5rem;
}


@keyframes marquee-right {
  0% {
    transform: translateX(-6669px);
  }

  100% {
    transform: translateX(0px);
  }
}

@-webkit-keyframes marquee-right {
  0% {
    transform: translateX(-6669px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-6669px);
  }
}

@-webkit-keyframes marquee-left {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-6669px);
  }
}

@media (max-height: 1240px) and (min-width: 992px) {
  .marquee-right {
    transform: translateX(-558.3vh);
    transform: translateX(-558.3dvh);
    animation: marquee-right 60s linear infinite;
    -webkit-animation: marquee-right 60s linear infinite;
  }
  
  .marquee-left {
    transform: translateX(0vh);
    transform: translateX(0dvh);
    animation: marquee-left 60s linear infinite;
    -webkit-animation: marquee-left 60s linear infinite;
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-558.3vh);
      transform: translateX(-558.3dvh);
    }
  
    100% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  }
  
  @-webkit-keyframes marquee-right {
    0% {
      transform: translateX(-558.3vh);
      transform: translateX(-558.3dvh);
    }
  
    100% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  }
  
  @keyframes marquee-left {
    0% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  
    100% {
      transform: translateX(-558.3vh);
      transform: translateX(-558.3dvh);
    }
  }
  
  @-webkit-keyframes marquee-left {
    0% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  
    100% {
      transform: translateX(-558.3vh);
      transform: translateX(-558.3dvh);
    }
  }

  @media (max-height: 850px) {
    
  @keyframes marquee-right {
    0% {
      transform: translateX(-475.3vh);
      transform: translateX(-475.3dvh);
    }
  
    100% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  }
  
  @-webkit-keyframes marquee-right {
    0% {
      transform: translateX(-475.3vh);
      transform: translateX(-475.3dvh);
    }
  
    100% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  }
  
  @keyframes marquee-left {
    0% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  
    100% {
      transform: translateX(-475.3vh);
      transform: translateX(-475.3dvh);
    }
  }
  
  @-webkit-keyframes marquee-left {
    0% {
      transform: translateX(0vh);
      transform: translateX(0dvh);
    }
  
    100% {
      transform: translateX(-475.3vh);
      transform: translateX(-475.3dvh);
    }
  }

    .marquee-row img {
      width: 17vh;
      width: 17dvh;
    }
    .marquee-right {
      transform: translateX(-475.3dvh);
      transform: translateX(-475.3dvh);
      animation: marquee-right 60s linear infinite;
      -webkit-animation: marquee-right 60s linear infinite;
    }
    
    .marquee-left {
      transform: translateX(0vh);
      transform: translateX(0dvh);
      animation: marquee-left 60s linear infinite;
      -webkit-animation: marquee-left 60s linear infinite;
    }
  }
}

.section3.active .games-container {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Responsive adjustments for marquee */
/* @media (max-width: 576px) {
  .marquee-row picture {
    aspect-ratio: 152/202;
  }
} */

/* Section 4 */
.section4 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

body.webp-not-supported .section4 {
  background-image: url('./images/section4_bg.jpg');
}

body.webp-supported .section4 {
  background-image: url('./images/section4_bg.webp');
}

.section4 .container {
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 7.5rem;
  position: relative;
}

.section4 h1 {
  white-space: nowrap;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
  line-height: 110%;
}

.section4 p {
  margin-top: -7rem;
}

h1 b {
  font-family: inherit;
  color: #786187;
  font-weight: 800;
}

/* Section 5 */

.section5 {
  padding-top: 0;
}

.section5 .container {
  flex-direction: column;
}

.section5 .providers {
  width: 100%;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
  background: linear-gradient(262.33deg, #1A181B 0%, #0F0F0F 100%);
  position: relative;
}

.providers .container {
  gap: 5rem;
}

.providers-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.provider-item {
  width: 100%;
  padding: 1.5rem 0rem;
  background-color: rgba(16, 16, 18, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transform: scale(1);
  animation: scaleInLoop 5s ease-in-out infinite;
}

/* Staggered animation delays for sequential effect */
.provider-item:nth-child(1) {
  animation-delay: 0s;
}

.provider-item:nth-child(2) {
  animation-delay: 0.5s;
}

.provider-item:nth-child(3) {
  animation-delay: 1s;
}

.provider-item:nth-child(4) {
  animation-delay: 1.5s;
}

.provider-item:nth-child(5) {
  animation-delay: 2s;
}

.provider-item:nth-child(6) {
  animation-delay: 2.5s;
}

@keyframes scaleInLoop {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

.info {
  width: 100%;
  position: absolute;
  bottom: 3rem;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;

}

.info a,
.info p {
  font-size: 1.25rem;
  color: #FFFBEC;
  font-weight: 500;
  text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
  font-weight: 400;
}

.info a svg {
  width: 0.9rem;
  fill: #FFFBEC;
}

footer {
  width: 100%;
  height: 40%;
  background-color: rgba(0, 0, 0, 1);
}

footer .container {
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

footer p {
  position: absolute;
  top: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-18 {
  width: 2.5rem;
  height: 2.5rem;
}

.footer-logo {
  width: 45rem;
  position: relative;
  z-index: 2;
}

/* Typing animation */
.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite;
  font-weight: 100;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

footer .container::before {
  content: "";
  width: 34rem;
  height: 34rem;
  bottom: -32rem;
  position: absolute;
  background: #FFCC24;
  filter: blur(16.78rem);
  z-index: 1;
}

@media (max-width: 992px) {
  .section4 h1 br.mobile-br {
    display: block;
  }

  .providers-wrapper {
    flex-wrap: wrap;
  }

  .provider-item {
    width: calc(33% - 2rem);
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 9vw;
    white-space: nowrap;
  }

  h2 {
    font-size: 1.6rem;
  }

  .cta span {
    font-size: 1.45rem;
  }

  /* Section 1 */

  nav .container {
    align-items: center;
    justify-content: center;
  }

  nav .container::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .button-wrapper {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1rem 0px;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 19, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #FFCC24;
    overflow: hidden;
  }

  .button-wrapper::before {
    content: '';
    width: 60%;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: -225%;
    background: #FFCC24;
    filter: blur(58.8px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.4;
  }

  nav .button-wrapper a {
    font-size: 2rem;
    position: relative;
    z-index: 2;
  }

  .section1 {
    background: linear-gradient(262.33deg, #1A181B 0%, #0F0F0F 100%);
    background-color: unset;
  }

  .hero-image {
    width: 100%;
    position: absolute;
    bottom: -15%;
    left: 0;
    z-index: 1;
    mix-blend-mode: lighten;
    mask-image: unset;
  }

  @media only screen and (max-height: 750px) {
    .hero-image {
      bottom: -40%;
    }
  }

  /* Section 2 */
  .section2 {
    padding-bottom: 6rem;
  }

  .section2 h2 br {
    display: none;
  }

  .section2 p {
    margin-top: -0.5rem;
  }

  .section2 .container {
    max-width: unset;
    padding-left: 0px;
    padding-right: 0px;
    gap: 1.5vh;
    gap: 1.5dvh;
  }

  .section2 .card-wrapper {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    align-items: center;
    justify-content: start;
    scrollbar-width: none;
  }

  .section2 .card-wrapper .card-container {
    width: 85%;
    height: 50vh;
    height: 50dvh;
    max-height: unset;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 1rem;
  }

  .card-mobile-navigation {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0px 0px 1px #000);
  }

  @media only screen and (max-height: 750px) {
    .card-mobile-navigation {
      bottom: 4rem;
    }
  }

  .card-mobile-navigation button {
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    background-color: rgba(17, 17, 19, 0.5);
  }

  .card-mobile-navigation button::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255, 204, 36, 1), rgba(71, 56, 105, 1), rgba(255, 204, 36, 1));
    background-size: 300% 300%;
    transition: background-position 0.6s ease;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }

  .card-mobile-navigation button.active {
    background-color: rgba(255, 255, 255, 0.25);
  }

  .card-mobile-navigation button.active::before {
    background-position: 100% 50%;
  }

  /* Section 3 */

  .section3 {
    padding-bottom: 6rem;
  }

  .section3 .container {
    gap: 1.5vh;
    gap: 1.5dvh;
  }

  .section3 h2 br {
    display: none;
  }

  .section3 p {
    margin-top: -0.5rem;
  }

  .marquee-right {
    transform: translateX(-185vh);
    transform: translateX(-185dvh);
  }

  @keyframes marquee-right {
    0% {
      transform: translateX(-185vh);
      transform: translateX(-185dvh);
    }

    100% {
      transform: translateX(0rem);
    }
  }

  @-webkit-keyframes marquee-right {
    0% {
      transform: translateX(-185vh);
      transform: translateX(-185dvh);
    }

    100% {
      transform: translateX(0rem);
    }
  }

  .marquee-left {
    transform: translateX(0vh);
    transform: translateX(0dvh);
  }

  @keyframes marquee-left {
    0% {
      transform: translateX(0rem);
    }

    100% {
      transform: translateX(-185vh);
      transform: translateX(-185dvh);
    }
  }

  @-webkit-keyframes marquee-left {
    0% {
      transform: translateX(0rem);
    }

    100% {
      transform: translateX(-185vh);
      transform: translateX(-185dvh);
    }
  }

  .marquee-row img {
    width: 20vh;
    width: 20dvh;
    height: auto;
    object-fit: contain;
  }

  @media only screen and (max-height: 750px) {
    .marquee-right {
      transform: translateX(-173.3vh);
      transform: translateX(-173.3dvh);
    }

    @keyframes marquee-right {
      0% {
        transform: translateX(-173.3vh);
        transform: translateX(-173.3dvh);
      }

      100% {
        transform: translateX(0rem);
      }
    }

    @-webkit-keyframes marquee-right {
      0% {
        transform: translateX(-173.3vh);
        transform: translateX(-173.3dvh);
      }

      100% {
        transform: translateX(0rem);
      }
    }

    @keyframes marquee-left {
      0% {
        transform: translateX(0rem);
      }

      100% {
        transform: translateX(-173.3vh);
        transform: translateX(-173.3dvh);
      }
    }

    @-webkit-keyframes marquee-left {
      0% {
        transform: translateX(0rem);
      }

      100% {
        transform: translateX(-173.3vh);
        transform: translateX(-173.3dvh);
      }
    }

    .marquee-row img {
      width: 18.5vh;
      width: 18.5dvh;
    }
  }

  /* Section 4 */
  body.webp-not-supported .section4 {
    background-image: url('./images/section4_bg_mobile.jpg');
  }

  body.webp-supported .section4 {
    background-image: url('./images/section4_bg_mobile.webp');
  }


  .section4 h1 {
    line-height: 120%;
  }

  .game-section {
    padding-bottom: 6rem;
  }

  .game-section .game-wrapper {
    padding: 1.5vh;
    padding: 1.5dvh;
  }

  .game-section .game-hud {
    margin-bottom: 1vh;
    margin-bottom: 1dvh;
    padding: 1.75vh 3.5vh;
    padding: 1.75dvh 3.5dvh;
  }

  .game-section .slot-window {
    margin-bottom: 1vh;
    margin-bottom: 1dvh;
  }

  .game-section .status-bar {
    height: 1.5vh;
    height: 1.5dvh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .game-section .bet-control {
    padding: 1vh;
    padding: 1dvh;
    justify-content: space-between;
  }

  .game-section .win-line {
    height: 45px;
  }

  .game-section .reels-container {
    height: 225px;
  }

  .game-section .symbol {
    height: 45px;
  }

  .game-section .controls {
    gap: 1vh;
    gap: 1dvh;
  }

  .game-section .bet-btn {
    width: 4vh;
    width: 4dvh;
    height: 4vh;
    height: 4dvh;
  }

  .game-section .spin-btn {
    font-size: 1.75vh;
    font-size: 1.75dvh;
    padding: 1.75vh;
    padding: 1.75dvh;
  }


  @media only screen and (max-height: 750px) {
    .game-section .brand-header {
      display: none;
    }

    .game-section .reels-container {
      height: 175px;
    }

    .game-section .symbol {
      height: 35px;
    }

    .game-section .win-line {
      height: 35px;
    }

    .game-section .symbol svg {
      transform: scale(1.5);
    }
  }

  /* Section 5 */
  .section5 {}

  .section5 .providers {
    height: 65%;
    padding-top: 5rem;
  }

  .providers-wrapper {
    gap: 1vh;
    gap: 1dvh;
  }

  .providers .container {
    height: 100%;
    justify-content: center;
    gap: 2.5vh;
    gap: 2.5dvh;
    padding-bottom: 2vh;
    padding-bottom: 2dvh;
  }

  footer {
    height: 35%;
    padding-bottom: 6rem;
  }

  .provider-item {
    width: calc(50% - 1vh);
    width: calc(50% - 1dvh);
  }

  .footer-logo {
    width: 75vw;
  }
}

@media (min-width: 992px) {
  @media (max-height:1200px) {
    .game-wrapper {
      transform: scale(0.9);
      margin: -5rem 0;
    }
  }

  @media (max-height:1010px) {
    .game-wrapper {
      transform: scale(0.8);
      margin: -9rem 0;
    }
  }

  @media (max-height:860px) {
    .game-wrapper {
      transform: scale(0.75);
      margin: -11rem 0;
    }
  }

  @media (max-height:800px) {
    .game-wrapper {
      transform: scale(0.65);
      margin: -14rem 0;
    }
  }

  @media (max-height:725px) {
    .game-wrapper {
      transform: scale(0.6);
      margin: -16rem 0;
    }
  }
}