:root {
  color-scheme: dark;
  --bg: #07110f;
  --panel: #0d1a17;
  --panel-soft: #13231f;
  --text: #f4f1e8;
  --muted: #b8c1b9;
  --line: rgba(244, 241, 232, 0.14);
  --gold: #d7a84a;
  --green: #28b47b;
  --red: #e15a57;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 17, 15, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 148px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.28));
}

.brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  gap: 10px;
}

.lang-switch,
.header-cta,
.button {
  min-height: 42px;
  border-radius: 8px;
}

.lang-switch,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
}

.lang-switch {
  min-width: 82px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  background: var(--text);
  color: #07110f;
  font-weight: 750;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  column-gap: clamp(28px, 5vw, 64px);
  row-gap: 22px;
  min-height: 640px;
  padding: clamp(38px, 6vw, 68px) clamp(18px, 6vw, 86px) 36px;
  background:
    radial-gradient(circle at 76% 18%, rgba(215, 168, 74, 0.2), transparent 28%),
    linear-gradient(145deg, #07110f 0%, #0a1915 48%, #101714 100%);
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  letter-spacing: 0;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.1rem;
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-provider-rail {
  display: flex;
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 0;
}

.hero-provider-rail > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-provider-rail div {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.hero-provider-rail img,
.hero-provider-rail strong {
  display: grid;
  flex: 0 0 auto;
  width: 92px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(215, 168, 74, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 241, 232, 0.12), rgba(215, 168, 74, 0.1)),
    #13231f;
  color: var(--text);
  object-fit: contain;
  padding: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(244, 241, 232, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  background: var(--gold);
  color: #07110f;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  min-width: 0;
}

.table-surface {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 34%),
    radial-gradient(circle at 30% 72%, rgba(40, 180, 123, 0.24), transparent 24%),
    #10221d;
  box-shadow: var(--shadow);
}

.table-surface::before {
  position: absolute;
  inset: 36px;
  content: "";
  border: 1px solid rgba(215, 168, 74, 0.36);
  border-radius: 999px;
}

.playing-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 122px;
  height: 174px;
  padding: 15px;
  border-radius: 12px;
  background: #faf7ed;
  color: #101714;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.playing-card span {
  font-size: 1.35rem;
  font-weight: 900;
}

.playing-card strong {
  align-self: center;
  font-size: 3.2rem;
  line-height: 1;
}

.card-one {
  top: 68px;
  left: 14%;
  transform: rotate(-13deg);
}

.card-two {
  top: 102px;
  left: 34%;
  color: var(--red);
  transform: rotate(5deg);
}

.card-three {
  top: 66px;
  right: 13%;
  color: var(--red);
  transform: rotate(16deg);
}

.token {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.18), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.token-gold {
  right: 18%;
  bottom: 104px;
  background: var(--gold);
}

.token-green {
  left: 17%;
  bottom: 90px;
  background: var(--green);
}

.board-grid {
  position: absolute;
  right: 11%;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(4, 34px);
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.2);
  border-radius: 8px;
  transform: rotate(-5deg);
}

.board-grid span {
  width: 34px;
  height: 34px;
  background: rgba(244, 241, 232, 0.1);
}

.board-grid span:nth-child(2n) {
  background: rgba(215, 168, 74, 0.55);
}

.provider-strip {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 22px;
  display: flex;
  gap: 10px;
}

.provider-strip span {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.62);
  color: var(--muted);
  text-align: center;
}

.section {
  padding: clamp(44px, 6vw, 72px) clamp(18px, 6vw, 86px);
}

.game-intro {
  padding-top: clamp(42px, 5.5vw, 64px);
  padding-bottom: clamp(42px, 5.5vw, 64px);
  background: #0b1714;
}

.game-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.game-intro .eyebrow {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.game-intro-text {
  max-width: 1120px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 650;
  line-height: 1.55;
}

.game-icon-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  height: clamp(460px, 54vw, 680px);
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.game-icon-column {
  min-width: 0;
  overflow: hidden;
}

.game-icon-column:nth-child(2) {
  transform: translateY(42px);
}

.game-icon-column:nth-child(3) {
  transform: translateY(18px);
}

.game-icon-column:nth-child(4) {
  transform: translateY(64px);
}

.game-icon-column:nth-child(5) {
  transform: translateY(28px);
}

.game-icon-column:nth-child(6) {
  transform: translateY(74px);
}

.game-icon-track {
  display: grid;
  gap: clamp(12px, 1.7vw, 20px);
  animation: gameIconRise 34s linear infinite;
  will-change: transform;
}

.game-icon-column:nth-child(2) .game-icon-track {
  animation-duration: 39s;
}

.game-icon-column:nth-child(3) .game-icon-track {
  animation-duration: 36s;
}

.game-icon-column:nth-child(4) .game-icon-track {
  animation-duration: 42s;
}

.game-icon-column:nth-child(5) .game-icon-track {
  animation-duration: 37s;
}

.game-icon-column:nth-child(6) .game-icon-track {
  animation-duration: 44s;
}

.game-icon-track img {
  display: block;
  width: 100%;
  aspect-ratio: 221 / 264;
  border: 1px solid rgba(215, 168, 74, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(244, 241, 232, 0.08), rgba(40, 180, 123, 0.08)), #13231f;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

@keyframes gameIconRise {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.game-card p,
.provider-copy p,
.feature-list p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(18px, 5vw, 70px);
  align-items: start;
  margin-bottom: 24px;
}

.game-grid,
.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.game-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: visible;
}

.game-carousel-dots {
  display: none;
  justify-content: center;
  gap: clamp(22px, 4vw, 48px);
  margin-top: 28px;
}

.game-carousel-dots button {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 2px solid #d42456;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.game-carousel-dots button.active {
  border-color: transparent;
}

.game-carousel-dots button.active::before,
.game-carousel-dots button.active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.game-carousel-dots button.active::before {
  width: 15px;
  height: 15px;
  border: 2px solid #d42456;
}

.game-carousel-dots button.active::after {
  width: 9px;
  height: 9px;
  background: #d42456;
}

.game-card,
.feature-list article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.game-symbol,
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
}

.game-card.global-reach-card,
.game-card.feature-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 251px;
  padding: 20px 18px;
  border: 2px solid #d42456;
  border-radius: 24px;
  background: #171819;
}

.global-reach-card h3,
.feature-showcase-card h3 {
  color: #f8f8fb;
  font-size: clamp(0.92rem, 1.12vw, 1.26rem);
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.rewards-heading {
  display: grid;
  grid-template-columns: auto 2px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 11px;
}

.rewards-heading h3 {
  font-size: clamp(1.55rem, 2.35vw, 2.5rem);
}

.rewards-heading span {
  width: 2px;
  height: 38px;
  background: #ef285b;
}

.rewards-heading strong {
  color: #d7d4da;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  line-height: 1.28;
  letter-spacing: 0.08em;
}

.global-reach-rule {
  display: block;
  width: 84px;
  height: 3px;
  margin: 8px 0 13px;
  background: #ef285b;
}

.global-reach-card p,
.feature-showcase-card p {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: 0;
  color: #c6c3ca;
  font-size: clamp(0.9rem, 1.12vw, 1.1rem);
  line-height: 1.42;
  letter-spacing: 0;
}

.global-reach-body {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.global-reach-pie {
  position: relative;
  width: 66px;
  aspect-ratio: 1;
  margin-left: 0;
  border-radius: 50%;
  animation: pieMorph 4.8s ease-in-out infinite;
  background: conic-gradient(
    #d12451 0 39%,
    #f4e650 39% 70%,
    #38aee1 70% 88%,
    #9438d0 88% 100%
  );
}

.global-reach-pie::after {
  position: absolute;
  inset: 18%;
  content: "";
  border-radius: 50%;
  background: #171819;
  animation: pieHoleMorph 4.8s ease-in-out infinite;
}

.global-reach-legend {
  display: grid;
  gap: 6px;
  margin: 0;
}

.global-reach-legend div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 6px;
  align-items: center;
}

.global-reach-legend dt,
.global-reach-legend dd {
  margin: 0;
  color: #d7d4da;
  font-size: clamp(0.58rem, 0.78vw, 0.78rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.global-reach-legend dt {
  display: flex;
  gap: 7px;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
}

.global-reach-legend dd {
  justify-self: end;
}

.legend-swatch {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  animation: swatchBlink 2.6s ease-in-out infinite;
}

.legend-swatch.south-asia {
  background: #d12451;
}

.legend-swatch.southeast-asia {
  background: #f4e650;
}

.legend-swatch.south-america {
  background: #38aee1;
}

.legend-swatch.other-regions {
  background: #9438d0;
}

.feature-showcase-card .feature-art {
  position: absolute;
  z-index: 1;
  right: -6px;
  bottom: -12px;
  width: min(62%, 160px);
  aspect-ratio: 1;
  transform-origin: 50% 70%;
}

.certified-card p,
.support-card p {
  max-width: 58%;
}

.analytics-card p {
  max-width: 94%;
}

.rewards-card p {
  max-width: 100%;
  font-size: clamp(0.82rem, 1vw, 1rem);
}

.medal-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  width: 42%;
  height: 48%;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(90deg, #6b161d, #bd3034 56%, #541417);
  transform: translateX(-12%) rotate(4deg);
  box-shadow: inset -18px 0 24px rgba(0, 0, 0, 0.2);
  animation: ribbonSway 3.2s ease-in-out infinite;
}

.medal-ring {
  position: absolute;
  top: 36%;
  left: 47%;
  width: 34%;
  aspect-ratio: 1.3;
  border: 5px solid #f5ce67;
  border-radius: 999px;
  transform: translateX(-50%);
}

.medal-face {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 78%;
  aspect-ratio: 1;
  place-items: center;
  border: 8px solid #d29a32;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 13%),
    radial-gradient(circle at 48% 42%, #ffe89b, #d39224 68%, #6a2b17 100%);
  color: rgba(143, 80, 24, 0.72);
  font-size: clamp(1rem, 2.2vw, 2.1rem);
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255, 243, 164, 0.45), 0 22px 32px rgba(0, 0, 0, 0.32);
  animation: medalGlow 3.2s ease-in-out infinite;
}

.analytics-art {
  left: 50%;
  right: auto;
  bottom: -6px;
  width: min(52%, 138px);
  transform: translateX(-50%) rotate(-10deg);
  animation: analyticsFloat 3.5s ease-in-out infinite;
}

.chart-board {
  position: absolute;
  inset: 12% 4% 4% 18%;
  display: flex;
  gap: 9%;
  align-items: end;
  justify-content: center;
  padding: 20% 14% 18%;
  border: 6px solid #d29435;
  border-radius: 20%;
  background: linear-gradient(145deg, #a5222b, #e0b05a);
  box-shadow: inset 0 0 0 6px rgba(255, 229, 137, 0.5), 0 24px 36px rgba(0, 0, 0, 0.34);
}

.chart-board::before,
.chart-board::after {
  position: absolute;
  top: -13%;
  width: 13%;
  height: 24%;
  content: "";
  border: 5px solid #ca8127;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.chart-board::before {
  left: 30%;
}

.chart-board::after {
  right: 28%;
}

.chart-board i {
  display: block;
  width: 18%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(#fff4b7, #f0b63e);
}

.chart-board i:nth-child(1) {
  height: 34%;
  animation: barRise 1.8s ease-in-out infinite;
}

.chart-board i:nth-child(2) {
  height: 54%;
  animation: barRise 1.8s 0.18s ease-in-out infinite;
}

.chart-board i:nth-child(3) {
  height: 78%;
  animation: barRise 1.8s 0.36s ease-in-out infinite;
}

.magnifier {
  position: absolute;
  left: 0;
  bottom: 18%;
  width: 39%;
  aspect-ratio: 1;
  border: 8px solid #f6dc9b;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.82), rgba(98, 27, 28, 0.9));
  animation: magnifierScan 2.8s ease-in-out infinite;
}

.magnifier::after {
  position: absolute;
  right: -38%;
  bottom: -25%;
  width: 15%;
  height: 55%;
  content: "";
  border-radius: 999px;
  background: #f2d176;
  transform: rotate(-38deg);
}

.support-art {
  right: 4px;
  bottom: -8px;
  width: min(60%, 154px);
  animation: supportNod 3.8s ease-in-out infinite;
}

.headset-face {
  position: absolute;
  right: 4%;
  bottom: 14%;
  width: 78%;
  aspect-ratio: 1;
  border: 6px solid #a7602b;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 40%, #ffe2a8 0 5%, transparent 6%),
    radial-gradient(circle at 66% 40%, #ffe2a8 0 5%, transparent 6%),
    radial-gradient(circle at 50% 36%, #d63b3c, #7e151c 76%);
  box-shadow: inset -20px -24px 34px rgba(0, 0, 0, 0.3), 0 28px 34px rgba(0, 0, 0, 0.34);
}

.headset-face::after {
  position: absolute;
  left: 37%;
  bottom: 26%;
  width: 26%;
  height: 7%;
  content: "";
  border-radius: 0 0 999px 999px;
  background: #d39a57;
}

.headset-band {
  position: absolute;
  right: 0;
  bottom: 35%;
  width: 92%;
  height: 34%;
  border: 8px solid #f4d9aa;
  border-top-color: transparent;
  border-radius: 0 0 999px 999px;
}

.headset-band::before,
.headset-band::after {
  position: absolute;
  top: 36%;
  width: 19%;
  height: 34%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #5f1c19, #e7d1b0);
}

.headset-band::before {
  left: -11%;
}

.headset-band::after {
  right: -11%;
}

.headset-mic {
  position: absolute;
  right: 0;
  bottom: 29%;
  width: 27%;
  height: 6%;
  border-radius: 999px;
  background: #1e1717;
}

.headset-mic::after {
  position: absolute;
  right: -9%;
  top: -60%;
  width: 34%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: #0b0909;
  animation: micPulse 1.6s ease-in-out infinite;
}

.rewards-art {
  right: 18px;
  bottom: -8px;
  width: min(74%, 190px);
  animation: rewardsFloat 3.8s ease-in-out infinite;
}

.dollar-mark {
  position: absolute;
  left: 0;
  bottom: 6%;
  z-index: 3;
  color: #ffd86a;
  font-size: clamp(4.8rem, 7vw, 6.6rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 8px 7px 0 #9a5f22, 0 0 16px rgba(255, 216, 106, 0.38);
  animation: dollarShine 2.6s ease-in-out infinite;
}

.cash-stack {
  position: absolute;
  right: 10%;
  width: 62%;
  height: 18%;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 44%, #d4a13b 44% 52%, transparent 52%),
    repeating-linear-gradient(0deg, #d7d9d7 0 5px, #7f8888 5px 8px);
  box-shadow: 0 9px 0 #646b6b, 0 16px 18px rgba(0, 0, 0, 0.36);
  transform: skewY(-7deg);
}

.stack-one {
  bottom: 37%;
}

.stack-two {
  right: 2%;
  bottom: 27%;
  transform: skewY(-7deg) translateX(8px);
}

.cash-bill {
  position: absolute;
  right: 6%;
  bottom: 5%;
  width: 32%;
  height: 25%;
  border: 3px solid #d8d5c9;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 50%, #a8d1c6 0 20%, transparent 21%),
    linear-gradient(90deg, #eff0e8, #bfc5bc);
  box-shadow: 0 12px 14px rgba(0, 0, 0, 0.26);
}

.bill-one {
  transform: rotate(-8deg);
}

.bill-two {
  right: 24%;
  bottom: 9%;
  transform: rotate(8deg);
  animation: billWave 2.8s ease-in-out infinite;
}

@keyframes pieMorph {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 0 rgba(212, 36, 86, 0));
  }

  50% {
    transform: rotate(12deg) scale(1.06);
    filter: drop-shadow(0 0 10px rgba(212, 36, 86, 0.34));
  }
}

@keyframes pieHoleMorph {
  0%,
  42% {
    transform: scale(0);
    opacity: 0;
  }

  56%,
  88% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes swatchBlink {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes ribbonSway {
  0%,
  100% {
    transform: translateX(-12%) rotate(2deg);
  }

  50% {
    transform: translateX(-12%) rotate(7deg);
  }
}

@keyframes medalGlow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 0 0 5px rgba(255, 243, 164, 0.45), 0 22px 32px rgba(0, 0, 0, 0.32);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: inset 0 0 0 5px rgba(255, 243, 164, 0.65), 0 22px 36px rgba(212, 154, 50, 0.34);
  }
}

@keyframes analyticsFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-10deg);
  }

  50% {
    transform: translateX(-50%) translateY(-7px) rotate(-7deg);
  }
}

@keyframes barRise {
  0%,
  100% {
    transform: scaleY(0.82);
    transform-origin: bottom;
  }

  50% {
    transform: scaleY(1.12);
    transform-origin: bottom;
  }
}

@keyframes magnifierScan {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(8%, -8%);
  }
}

@keyframes supportNod {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

@keyframes micPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 36, 86, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(212, 36, 86, 0.28);
  }
}

@keyframes rewardsFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes dollarShine {
  0%,
  100% {
    filter: brightness(1);
    transform: translateY(0);
  }

  50% {
    filter: brightness(1.18);
    transform: translateY(-3px);
  }
}

@keyframes billWave {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-reach-pie,
  .global-reach-pie::after,
  .legend-swatch,
  .medal-ribbon,
  .medal-face,
  .analytics-art,
  .chart-board i,
  .magnifier,
  .support-art,
  .headset-mic::after,
  .rewards-art,
  .dollar-mark,
  .bill-two {
    animation: none;
  }

  [data-reveal-section] [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.game-card.teen .game-symbol,
.game-card.ludo .game-symbol {
  color: var(--red);
}

.earn-money {
  display: grid;
  grid-template-columns: 557px minmax(680px, 1fr);
  gap: clamp(42px, 5vw, 90px);
  align-items: center;
  min-height: 500px;
  background: #151515;
}

.earn-money-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.earn-money h2 {
  color: #df2857;
  font-size: 30px;
  font-weight: 850;
  letter-spacing: 0;
}

.earn-money-copy > p {
  max-width: 557px;
  margin: 22px 0 0;
  color: #bebbc2;
  font-size: 16px;
  line-height: 1.22;
}

.earn-money-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  color: #ef285b;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.earn-money-link span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #ef285b;
}

.partner-list {
  display: grid;
  flex: 0 0 auto;
  gap: 14px;
  align-content: start;
  width: 557px;
  margin-top: 24px;
}

.partner-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: 557px;
  height: 80px;
  min-height: 80px;
  padding: 8px 16px;
  border: 2px solid rgba(214, 214, 214, 0.58);
  border-radius: 14px;
  background: #151515;
}

.partner-card h3 {
  color: #f5f2f7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.partner-card p {
  margin: 6px 0 0;
  color: #bebbc2;
  font-size: 12px;
  line-height: 1.14;
}

.partner-icon {
  position: relative;
  display: block;
  width: 56px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 25%, #fff3a1, #e09a27 56%, #784014 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 235, 120, 0.46), 0 14px 18px rgba(0, 0, 0, 0.28);
}

.partner-icon::before {
  position: absolute;
  inset: 18%;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 243, 174, 0.34);
  color: #9f6223;
  font-size: 1.1rem;
  font-weight: 900;
}

.franchise-icon::before {
  content: "\1F91D";
}

.agent-icon {
  background:
    radial-gradient(circle at 50% 42%, #f8fbff 0 33%, transparent 34%),
    radial-gradient(circle at 38% 25%, #ffffff, #d8e5ff 56%, #7d89b7 100%);
}

.agent-icon::before {
  content: "\25D4";
  color: #6d79a7;
}

.individual-icon::before {
  content: "\25CF";
  color: #b37328;
}

.earn-money-visual {
  display: flex;
  align-items: center;
  width: min(100%, 760px);
  aspect-ratio: 3 / 2;
  justify-self: center;
  min-width: 0;
}

.earn-money-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-us {
  overflow: hidden;
  padding-inline: 0;
  background: #151515;
}

.about-us > h2 {
  margin: 0 0 32px;
  color: #df2857;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.about-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 1008px);
  height: 520px;
  min-height: 520px;
  margin-inline: auto;
}

.about-frame::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 2px;
  content: "";
  background: #df2857;
  transform: skewX(-10deg) translateX(-50%);
}

.about-frame::after {
  position: absolute;
  top: -1px;
  left: calc(50% - 24px);
  z-index: 5;
  width: 64px;
  height: 42px;
  content: "";
  background: #df2857;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.about-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-top: 1px solid #df2857;
  border-bottom: 1px solid #df2857;
}

.about-panel::before,
.about-panel::after {
  position: absolute;
  inset: 0;
  content: "";
}

.about-panel::before {
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.45);
  opacity: 0.34;
}

.about-panel::after {
  z-index: 1;
  background: rgba(10, 12, 12, 0.78);
}

.about-panel-left::before {
  background-image: url("../img/games/banner/JILI.png");
}

.about-panel-right::before {
  background-image: url("../img/earn-money-hero.png");
  background-position: center right;
}

.about-panel-left {
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.about-panel-right {
  margin-left: -8%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
  color: #d8d6d9;
  font-style: italic;
}

.about-panel-left .about-copy {
  padding: 116px 78px 54px 64px;
}

.about-panel-right .about-copy {
  padding: 118px 44px 54px 150px;
}

.about-copy h3 {
  color: #f4f1f4;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.about-copy > span {
  display: block;
  width: 130px;
  height: 3px;
  margin: 22px 0 16px;
  background: #ef285b;
}

.about-copy p {
  margin: 0;
  color: #c7c4c8;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

.about-copy p + p {
  margin-top: 24px;
}

[data-reveal-section] [data-reveal-item] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal-section].is-visible > h2 {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-section].is-visible .about-frame {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

[data-reveal-section].is-visible .about-panel-left {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.28s;
}

[data-reveal-section].is-visible .about-panel-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.48s;
}

[data-reveal-section] .about-panel-left {
  transform: translateX(-44px);
}

[data-reveal-section] .about-panel-right {
  transform: translateX(44px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .earn-money {
    grid-template-columns: 1fr;
  }

  .earn-money {
    align-items: start;
  }

  .earn-money-visual {
    height: auto;
    min-height: 0;
  }

  .earn-money-visual img {
    max-height: none;
  }

  .about-us > h2 {
    margin-bottom: 28px;
  }

  .about-frame {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .about-frame::before,
  .about-frame::after {
    display: none;
  }

  .about-panel,
  .about-panel-left,
  .about-panel-right {
    min-height: auto;
    margin-left: 0;
    clip-path: none;
  }

  .about-panel + .about-panel {
    border-top: 0;
  }

  .about-panel-left .about-copy,
  .about-panel-right .about-copy {
    max-width: none;
    padding: 56px clamp(24px, 8vw, 72px);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 18px;
    justify-content: flex-start;
    padding-bottom: 2px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-provider-rail {
    gap: 12px;
  }

  .hero-provider-rail img,
  .hero-provider-rail strong {
    width: 82px;
    height: 46px;
  }

  .game-icon-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 560px;
    gap: 12px;
  }

  .game-icon-column:nth-child(3),
  .game-icon-column:nth-child(4),
  .game-icon-column:nth-child(5),
  .game-icon-column:nth-child(6) {
    display: none;
  }

  .table-surface {
    min-height: 360px;
  }

  .playing-card {
    width: 112px;
    height: 162px;
    padding: 14px;
  }

  .playing-card strong {
    font-size: 3rem;
  }

  .card-one {
    left: 10%;
  }

  .card-two {
    left: 36%;
  }

  .card-three {
    right: 7%;
  }

  .token {
    width: 54px;
    height: 54px;
  }

  .provider-strip {
    left: 18px;
    right: 18px;
    overflow-x: auto;
  }

  .provider-strip span {
    min-width: 110px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .earn-money {
    gap: 28px;
    min-height: auto;
  }

  .earn-money-visual {
    height: auto;
  }

  .partner-list,
  .partner-card {
    width: 100%;
  }

  .earn-money h2 {
    font-size: 30px;
  }

  .about-us > h2 {
    font-size: 3rem;
  }

  .about-copy h3 {
    font-size: 1.9rem;
  }

  .about-copy > span {
    width: 150px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .earn-money-copy > p {
    margin-top: 22px;
  }

  .partner-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    min-height: 124px;
    padding: 14px;
  }

  .partner-icon {
    width: 74px;
  }

  .partner-icon::before {
    font-size: 1.45rem;
  }

  .game-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .game-grid::-webkit-scrollbar {
    display: none;
  }

  .game-grid .game-card {
    flex: 0 0 min(82vw, 420px);
    scroll-snap-align: start;
  }

  .game-carousel-dots {
    display: flex;
  }

  .global-reach-legend div {
    grid-template-columns: minmax(0, 1fr) 38px;
  }

}

@media (max-width: 420px) {
  h1 {
    font-size: 2.42rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .lang-switch {
    min-width: 74px;
    padding: 0 10px;
  }

  .global-reach-legend dt,
  .global-reach-legend dd {
    font-size: 0.58rem;
  }

  .global-reach-legend dt {
    gap: 7px;
  }

  .game-grid .game-card {
    flex-basis: 84vw;
  }
}
