:root {
  --gold: #f3bf4a;
  --gold-bright: #ffd875;
  --gold-deep: #bf7612;
  --blue: #58d8ff;
  --ink: #fff8ec;
  --muted: #b9ad9c;
  --bg: #060504;
  --surface: #0c0a08;
  --panel: #12100d;
  --panel-soft: #18130e;
  --line: rgba(243, 191, 74, 0.18);
  --line-strong: rgba(243, 191, 74, 0.42);
  --shell: 1220px;
  --radius: 18px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(243, 191, 74, 0.1), transparent 28rem),
    radial-gradient(circle at 92% 26%, rgba(88, 216, 255, 0.05), transparent 26rem),
    var(--bg);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 214, 103, 0.14) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 42%, rgba(255, 214, 103, 0.1) 0 1px, transparent 1.8px),
    radial-gradient(circle at 37% 77%, rgba(255, 214, 103, 0.08) 0 1px, transparent 1.8px);
  background-size: 86px 86px, 118px 118px, 152px 152px;
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1,
h2,
h3,
h4 {
  text-transform: capitalize;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #0a0703;
  background: var(--gold);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 5, 4, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 28px), 1520px);
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1vw, 18px);
}

.brand {
  display: inline-flex;
  width: clamp(154px, 11vw, 176px);
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.3vw, 24px);
  flex: 1 1 auto;
  color: #c4b8a7;
  font-size: clamp(0.68rem, 0.72vw, 0.75rem);
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav > a,
.nav-dropdown-trigger {
  position: relative;
  padding: 26px 0;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  right: 50%;
  bottom: 17px;
  left: 50%;
  height: 2px;
  border-radius: 10px;
  background: var(--gold);
  content: "";
  transition: inset 180ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active {
  color: var(--ink);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.is-active::after {
  right: 0;
  left: 0;
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown-trigger > span {
  color: var(--gold);
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 238px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  visibility: hidden;
  background: rgba(10, 8, 6, 0.98);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-trigger > span,
.nav-dropdown:focus-within .nav-dropdown-trigger > span {
  transform: rotate(180deg);
}

.nav-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  color: #b9ad9d;
  font-size: 0.78rem;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-submenu a > .game-tab-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: var(--gold);
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: var(--ink);
  background: rgba(243, 191, 74, 0.1);
}

.nav-dropdown-help .nav-submenu {
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}

.nav-dropdown-help .nav-submenu a {
  line-height: 1.35;
  white-space: normal;
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions {
  flex: 0 0 auto;
  gap: 8px;
  white-space: nowrap;
}

.header-actions .desktop-action {
  min-height: 40px;
  padding: 8px 15px;
  font-size: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #100b04;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 28px rgba(191, 118, 18, 0.2);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(191, 118, 18, 0.3);
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.04);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(243, 191, 74, 0.1);
}

.language-picker {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-flag {
  width: 20px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.language-menu .language-flag {
  width: 22px;
  height: 15px;
}

.chevron {
  color: var(--muted);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.language-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  max-height: min(520px, calc(100vh - 120px));
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(13, 10, 7, 0.98);
  box-shadow: var(--shadow);
}

.language-menu p {
  margin: 2px 8px 8px;
  color: #e7d8c2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.language-menu button,
.language-menu a {
  display: grid;
  width: 100%;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.is-current,
.language-menu a:hover,
.language-menu a.is-current {
  background: rgba(243, 191, 74, 0.1);
}

.language-menu small {
  color: #8f8374;
  font-size: 0.62rem;
}

.language-menu button.is-current small,
.language-menu a.is-current small {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 76px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  height: calc(100dvh - 76px);
  overflow-y: auto;
  padding: 30px 20px 120px;
  background: rgba(6, 5, 4, 0.99);
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu > a {
  display: block;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 760;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mobile-menu > a:hover,
.mobile-menu > a:focus-visible {
  color: var(--gold-bright);
  background: linear-gradient(90deg, rgba(243, 191, 74, 0.1), transparent 72%);
  outline: 0;
  transform: translateX(6px);
}

.mobile-menu > a:active {
  transform: translateX(4px) scale(0.99);
}

.mobile-nav-group {
  padding: 0 4px 15px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 13px;
  font-size: 1.3rem;
  font-weight: 760;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-nav-parent:hover,
.mobile-nav-parent:focus-visible {
  color: var(--gold-bright);
  outline: 0;
  transform: translateX(6px);
}

.mobile-nav-parent:active {
  transform: translateX(4px) scale(0.99);
}

.mobile-nav-parent > span {
  color: var(--gold);
}

.mobile-nav-parent.is-active,
.mobile-menu > a.is-active {
  color: var(--gold-bright);
}

.mobile-nav-submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.mobile-nav-submenu a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #a99d8e;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.76rem;
  font-weight: 720;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mobile-nav-submenu a > span {
  color: var(--gold);
}

.mobile-nav-submenu a.is-active {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(243, 191, 74, 0.08);
}

.mobile-nav-submenu a:hover,
.mobile-nav-submenu a:focus-visible {
  border-color: rgba(243, 191, 74, 0.72);
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(243, 191, 74, 0.08);
  outline: 0;
  transform: translateY(-2px);
}

.mobile-nav-submenu a:active {
  box-shadow: inset 0 0 0 1px rgba(243, 191, 74, 0.18);
  transform: scale(0.98);
}

.mobile-help-submenu {
  grid-template-columns: minmax(0, 1fr);
}

.mobile-menu > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.mobile-menu > .mobile-menu-actions {
  position: sticky;
  z-index: 2;
  top: -30px;
  margin: -30px -20px 12px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 5, 4, 0.985);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 70%, rgba(243, 191, 74, 0.09), transparent 32rem),
    #050403;
}

.hero-carousel {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-inline: auto;
  overflow: hidden;
  background: #020201;
  touch-action: pan-y;
}

.hero-track {
  position: relative;
  aspect-ratio: 2.08 / 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-link:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: -5px;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  background: linear-gradient(to top, rgba(5, 4, 3, 0.66), transparent);
  content: "";
  pointer-events: none;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.75);
}

.carousel-arrow-prev {
  left: 22px;
}

.carousel-arrow-next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 30px;
  background: var(--gold);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 80px;
  padding-top: 65px;
  padding-bottom: 75px;
}

.hero-copy h1 {
  max-width: 850px;
}

@media (min-width: 1101px) {
  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.8rem, 3.05vw, 3.45rem);
  }
}

.hero-summary {
  padding-bottom: 5px;
}

.hero-summary p {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 72px;
}

.hero-highlights article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(243, 191, 74, 0.055), transparent 70%),
    rgba(255, 255, 255, 0.018);
}

.hero-highlights article > span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-highlights h2 {
  margin-bottom: 6px;
  font-size: 0.93rem;
}

.hero-highlights p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-ribbon {
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  color: #130d04;
  background: linear-gradient(90deg, #bf7612, #f4c451 45%, #d79421);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: ribbon-scroll 58s linear infinite;
  will-change: transform;
}

.trust-set {
  display: flex;
  flex: none;
  align-items: center;
  gap: 42px;
  padding: 10px 21px;
}

.trust-set a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}

.trust-set a:hover,
.trust-set a:focus-visible {
  opacity: 0.62;
}

.trust-ribbon:hover .trust-track,
.trust-ribbon:focus-within .trust-track {
  animation-play-state: paused;
}

@keyframes ribbon-scroll {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
}

.catalogue-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}

.catalogue-overview-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.catalogue-overview-card > span {
  display: block;
  margin-bottom: 27px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.catalogue-overview-card h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.catalogue-overview-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.58;
}

.game-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

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

.game-tabs button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b8ac9c;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.game-tabs button:hover,
.game-tabs button.is-active {
  border-color: var(--gold);
  color: #120c04;
  background: var(--gold);
}

.game-tabs button:hover {
  transform: translateY(-1px);
}

.game-tab-icon {
  position: relative;
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  color: currentColor;
  line-height: 1;
  transition: transform 180ms ease;
}

.game-tabs button:hover .game-tab-icon {
  transform: scale(1.08);
}

.game-tab-icon-all::before {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: currentColor;
  box-shadow: 7px 0 currentColor, 0 7px currentColor, 7px 7px currentColor;
  content: "";
  transform: translate(-3.5px, -3.5px);
}

.game-tab-icon-slots {
  border: 1.5px solid currentColor;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 950;
}

.game-tab-icon-live-casino {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.14);
}

.game-tab-icon-live-casino::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.game-tab-icon-live-casino::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 -6px currentColor, 0 6px currentColor, 6px 0 currentColor, -6px 0 currentColor;
  content: "";
}

.game-tab-icon-fishing::before {
  position: absolute;
  right: 1px;
  width: 12px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 52% 60% 60% 52%;
  content: "";
}

.game-tab-icon-fishing::after {
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 6px solid currentColor;
  border-bottom: 5px solid transparent;
  content: "";
}

.game-tab-icon-sports {
  overflow: hidden;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.game-tab-icon-sports::before,
.game-tab-icon-sports::after {
  position: absolute;
  border-color: currentColor;
  border-style: solid;
  content: "";
}

.game-tab-icon-sports::before {
  width: 8px;
  height: 19px;
  border-width: 0 0 0 1px;
  border-radius: 50%;
  transform: rotate(30deg);
}

.game-tab-icon-sports::after {
  width: 19px;
  height: 8px;
  border-width: 1px 0 0;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.game-tab-icon-poker {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.game-tab-icon-lottery {
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.game-tab-icon-lottery::before {
  content: "4D";
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

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

.game-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: auto;
  align-self: start;
  flex-direction: column;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 35%, rgba(243, 191, 74, 0.11), transparent 46%),
    linear-gradient(145deg, #17130f, #0c0a08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.game-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
  transform: translateY(-4px);
}

.game-card-static {
  cursor: default;
}

.games-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.game-load-more-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.game-load-more-controls[hidden],
.game-load-more-controls button[hidden] {
  display: none;
}

.game-load-more-controls .button {
  min-width: 176px;
  gap: 11px;
}

.game-load-more-controls b {
  color: currentColor;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.game-load-more-button:hover b,
.game-load-more-button:focus-visible b {
  transform: translateY(3px);
}

.game-show-less-button:hover b,
.game-show-less-button:focus-visible b {
  transform: translateY(-3px);
}

.game-play-button {
  min-width: 190px;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(243, 191, 74, 0.15);
}

.game-play-button span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.game-play-button:hover span,
.game-play-button:focus-visible span {
  transform: translateX(4px);
}

.game-card[hidden] {
  display: none;
}

.game-card img {
  width: 100%;
  height: clamp(105px, 10vw, 150px);
  margin: 10px 0 12px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.34));
}

.game-card h2,
.game-card h3 {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 12px;
  padding: 4px 7px;
  border: 1px solid rgba(243, 191, 74, 0.28);
  border-radius: 6px;
  color: var(--gold-bright);
  background: rgba(5, 4, 3, 0.78);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promotions-section {
  background:
    linear-gradient(rgba(9, 7, 5, 0.92), rgba(9, 7, 5, 0.92)),
    radial-gradient(circle at 20% 30%, rgba(243, 191, 74, 0.2), transparent 25rem);
}

.promotion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promotions-section-cta,
.news-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.promotions-section-cta .button,
.news-section-cta .button {
  min-width: 210px;
  gap: 11px;
}

.promotions-section-cta .button span,
.news-section-cta .button span {
  transition: transform 180ms ease;
}

.promotions-section-cta .button:hover span,
.promotions-section-cta .button:focus-visible span,
.news-section-cta .button:hover span,
.news-section-cta .button:focus-visible span {
  transform: translateX(4px);
}

.promotion-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #100d0a;
  transition: border-color 200ms ease, transform 200ms ease;
}

.promotion-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.promotion-card-featured {
  grid-column: span 2;
}

.promotion-media {
  display: grid;
  aspect-ratio: 2.5 / 1;
  overflow: hidden;
  background: #020201;
  place-items: center;
}

.promotion-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease;
}

.promotion-card:hover .promotion-media img {
  transform: none;
}

.promotion-body {
  display: flex;
  min-height: 184px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
}

.promotion-body span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promotion-body h3 {
  margin: 7px 0 7px;
  font-size: 1.35rem;
}

.promotion-body p {
  max-width: 400px;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.promotion-card .text-link {
  padding: 10px 14px;
  border: 1px solid rgba(243, 191, 74, 0.3);
  border-radius: 999px;
  color: #f6d77c;
  background: rgba(243, 191, 74, 0.055);
  white-space: nowrap;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.promotion-card .text-link span {
  display: inline-block;
  color: inherit;
  transition: transform 200ms ease;
}

.promotion-card .text-link:focus-visible {
  border-color: var(--gold);
  color: #0b0702;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 191, 74, 0.16);
}

@media (hover: hover) {
  .promotion-card:hover .text-link {
    border-color: var(--gold-bright);
    color: #0b0702;
    background: var(--gold);
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.3),
      0 0 18px rgba(243, 191, 74, 0.2);
    transform: translateY(-2px);
  }

  .promotion-card:hover .text-link span {
    transform: translate(2px, -2px);
  }

  .promotion-card .text-link:hover {
    background: #ffd76a;
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.34),
      0 0 24px rgba(243, 191, 74, 0.34);
    transform: translateY(-3px) scale(1.025);
  }
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1rem;
}

.css-arrow-ne {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  color: currentColor;
  font-size: 0;
}

.css-arrow-ne::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
}

.css-arrow-ne::after {
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: left center;
}

.terms-note {
  margin: 20px auto 0;
  color: #807567;
  font-size: 0.72rem;
}

.news-section {
  overflow: hidden;
}

.news-carousel {
  position: relative;
}

.news-scroll-viewport {
  overflow-x: auto;
  padding: 8px 2px 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.news-scroll-viewport::-webkit-scrollbar {
  display: none;
}

.news-grid {
  display: grid;
  grid-auto-columns: minmax(285px, calc((100% - 28px) / 3));
  grid-auto-flow: column;
  gap: 14px;
}

.news-card {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0c09;
  scroll-snap-align: start;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(243, 191, 74, 0.62);
  background: #151006;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(243, 191, 74, 0.12),
    0 0 28px rgba(243, 191, 74, 0.13);
  transform: translateY(-7px);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 320ms ease, transform 600ms ease;
}

.news-card:hover img,
.news-card:focus-within img {
  filter: brightness(1.08) saturate(1.1);
  transform: none;
}

.news-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 2, 1, 0.95), rgba(3, 2, 1, 0.06) 70%);
  content: "";
  pointer-events: none;
  transition: box-shadow 260ms ease;
}

.news-card:hover::after,
.news-card:focus-within::after {
  box-shadow: inset 0 -90px 90px rgba(243, 191, 74, 0.045);
}

.card-link {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.card-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}

.news-card-overlay {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  transition: transform 260ms ease;
}

.news-card:hover .news-card-overlay,
.news-card:focus-within .news-card-overlay {
  transform: translateY(-5px);
}

.news-card-overlay span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-overlay time {
  display: block;
  margin-top: 6px;
  color: #a99e90;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-card-overlay h3 {
  margin: 7px 0 0;
  font-size: 1.25rem;
}

.news-card-featured .news-card-overlay h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.news-card-overlay p {
  margin: 10px 0 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.86rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-scroll-button {
  position: absolute;
  z-index: 4;
  top: calc(50% - 26px);
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.5);
  border-radius: 50%;
  color: #120d04;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.news-scroll-button:hover,
.news-scroll-button:focus-visible {
  background: #ffd76a;
  transform: scale(1.06);
}

.news-scroll-button:disabled {
  opacity: 0.28;
  cursor: default;
  transform: none;
}

.news-scroll-prev {
  left: -26px;
}

.news-scroll-next {
  right: -26px;
}

.news-scroll-progress {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
  color: #918575;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rewards-section {
  background:
    radial-gradient(circle at 75% 25%, rgba(243, 191, 74, 0.12), transparent 28rem),
    #080604;
}

.rewards-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
  align-items: start;
  gap: 65px;
}

.rewards-intro {
  position: sticky;
  top: 125px;
}

.rewards-intro > p:not(.eyebrow) {
  margin-bottom: 25px;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.reward-card {
  display: grid;
  min-height: 0;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.reward-diamond {
  grid-column: span 2;
  min-height: 0;
  grid-template-columns: 112px minmax(0, 1fr);
  background:
    radial-gradient(circle at 15% 50%, rgba(88, 216, 255, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.025);
}

.reward-card-identity {
  min-width: 0;
  text-align: center;
}

.reward-card-identity img {
  width: 76px;
  height: 76px;
  margin: 0 auto 8px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
  transition: transform 260ms ease, filter 260ms ease;
}

.reward-diamond .reward-card-identity img {
  width: 96px;
  height: 96px;
}

.reward-card h2,
.reward-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reward-table-wrap {
  min-width: 0;
  overflow: visible;
}

.reward-tier-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.reward-tier-table th,
.reward-tier-table td {
  padding: 7px 3px;
  border-bottom: 1px solid rgba(243, 191, 74, 0.14);
  text-align: center;
}

.reward-tier-table th {
  color: #d7c9b5;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: normal;
}

.reward-tier-table td {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.reward-tier-table th:first-child,
.reward-tier-table td:first-child {
  width: 18%;
}

.reward-tier-table th:nth-child(2),
.reward-tier-table td:nth-child(2) {
  width: 25%;
}

.reward-tier-table th:last-child,
.reward-tier-table td:last-child {
  width: 57%;
}

.reward-tier-table th:last-child,
.reward-tier-table td:last-child {
  text-align: right;
}

.reward-tier-table tbody tr:last-child td {
  border-bottom: 0;
}

@media (hover: hover) {
  .reward-card:hover {
    border-color: rgba(243, 191, 74, 0.5);
    background: rgba(243, 191, 74, 0.045);
    box-shadow:
      0 18px 38px rgba(0, 0, 0, 0.34),
      0 0 24px rgba(243, 191, 74, 0.09);
    transform: translateY(-4px);
  }

  .reward-card:hover .reward-card-identity img {
    filter:
      drop-shadow(0 14px 22px rgba(0, 0, 0, 0.44))
      drop-shadow(0 0 14px rgba(243, 191, 74, 0.2));
    transform: translateY(-3px) scale(1.04);
  }

  .reward-tier-table tbody tr:hover td {
    border-color: rgba(243, 191, 74, 0.34);
    color: #fff8e9;
    background: rgba(243, 191, 74, 0.1);
  }

  .reward-tier-table tbody tr:hover td:first-child {
    color: var(--gold-bright);
    box-shadow: inset 3px 0 0 var(--gold);
  }

  .reward-tier-table tbody tr:hover td:nth-child(2) {
    color: var(--gold-bright);
  }
}

.content-section {
  background: #090705;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: 95px;
}

.content-index {
  position: sticky;
  top: 125px;
  align-self: start;
}

.content-index nav {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.content-index nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #c3b8a8;
  font-size: 0.82rem;
}

.content-index nav a:hover {
  color: var(--gold);
}

.content-index nav span {
  color: #6f665a;
  font-size: 0.66rem;
}

.editorial-copy {
  display: grid;
  gap: 0;
}

.editorial-copy article {
  position: relative;
  padding: 0 0 48px 58px;
  border-left: 1px solid var(--line);
}

.editorial-copy article:last-child {
  padding-bottom: 0;
}

.editorial-copy article > span {
  position: absolute;
  top: 0;
  left: -18px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #0d0903;
  background: var(--gold);
  font-size: 0.64rem;
  font-weight: 900;
}

.editorial-copy h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.editorial-copy p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.82;
}

.faq-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(88, 216, 255, 0.05), transparent 20rem),
    var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 70px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 760;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 42px 24px 0;
  font-size: 0.9rem;
}

.seo-content-section {
  background:
    linear-gradient(rgba(9, 7, 5, 0.96), rgba(9, 7, 5, 0.96)),
    radial-gradient(circle at 88% 8%, rgba(243, 191, 74, 0.13), transparent 30rem);
}

.seo-content-shell {
  max-width: 1080px;
}

.seo-topic {
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.seo-topic:first-child {
  padding-top: 0;
}

.seo-topic-last {
  padding-bottom: 0;
  border-bottom: 0;
}

.seo-topic h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.seo-topic > p:not(.eyebrow) {
  max-width: 960px;
  margin-bottom: 18px;
  color: #b9ad9c;
  font-size: 0.98rem;
  line-height: 1.85;
}

.seo-topic strong {
  color: var(--ink);
}

.seo-topic .button-row {
  margin-top: 28px;
}

.seo-grid,
.seo-step-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.seo-game-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-game-grid .seo-card:nth-child(4),
.seo-game-grid .seo-card:nth-child(5) {
  grid-column: span 1;
}

.seo-trust-grid,
.seo-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card,
.seo-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.035), transparent 52%),
    rgba(255, 255, 255, 0.02);
}

.seo-card-wide {
  margin-top: 28px;
}

.seo-card h3,
.seo-step h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.seo-card p,
.seo-step p {
  margin-bottom: 16px;
  color: #a99e8f;
  font-size: 0.86rem;
  line-height: 1.75;
}

.seo-card p:last-child,
.seo-step p:last-child {
  margin-bottom: 0;
}

.seo-card ul {
  margin: 0;
  padding-left: 20px;
  color: #a99e8f;
  font-size: 0.86rem;
  line-height: 1.7;
}

.seo-card li + li {
  margin-top: 8px;
}

.seo-step > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.07);
  font-size: 0.68rem;
  font-weight: 900;
}

.seo-topic > .text-link {
  margin-top: 22px;
}

.page-support-grid {
  margin-top: 32px;
}

.member-access {
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(243, 191, 74, 0.08), rgba(88, 216, 255, 0.03)),
    #0c0906;
}

.member-access-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.member-access h2 {
  margin-bottom: 10px;
}

.member-access p:last-child {
  max-width: 730px;
  margin-bottom: 0;
}

.subpage-editorial-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(9, 7, 5, 0.96), rgba(9, 7, 5, 0.96)),
    radial-gradient(circle at 84% 12%, rgba(243, 191, 74, 0.14), transparent 28rem);
}

.subpage-editorial-shell {
  max-width: 1080px;
}

.subpage-editorial-shell > .eyebrow {
  margin-bottom: 20px;
}

.subpage-editorial-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
  gap: clamp(38px, 7vw, 88px);
}

.subpage-editorial-layout h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.subpage-editorial-copy {
  padding-left: 30px;
  border-left: 1px solid var(--line-strong);
}

.subpage-editorial-copy p {
  max-width: 700px;
  margin-bottom: 14px;
  color: #b9ad9c;
  font-size: 0.95rem;
  line-height: 1.82;
}

.subpage-editorial-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 68px 0 0;
  border-top: 2px solid var(--gold);
  background:
    radial-gradient(circle at 18% 10%, rgba(243, 191, 74, 0.055), transparent 24rem),
    #020201;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.15fr) minmax(150px, 0.72fr) minmax(250px, 1.2fr) minmax(210px, 0.9fr);
  align-items: start;
  gap: 46px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 360px;
  margin-bottom: 22px;
  font-size: 0.86rem;
  line-height: 1.75;
}

.age-mark {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(255, 80, 94, 0.42);
  border-radius: 6px;
  color: #ff8c96;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column,
.footer-information,
.footer-support nav {
  display: flex;
  flex-direction: column;
}

.footer-grid h2,
.footer-subnav h2 {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  color: #f4eee5;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-information > a,
.footer-support nav a {
  padding: 7px 0;
  color: #9e9384;
  font-size: 0.82rem;
  font-weight: 680;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-information > a:hover,
.footer-information > a.is-active,
.footer-support nav a:hover {
  color: var(--gold-bright);
  transform: translateX(3px);
}

.footer-payments > p,
.footer-support > p {
  margin: 14px 0 0;
  font-size: 0.73rem;
  line-height: 1.65;
}

.payment-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 56px);
  gap: 9px;
}

.payment-logo-grid a {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.payment-logo-grid a:hover,
.payment-logo-grid a:focus-visible {
  border-color: var(--gold);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.34),
    0 0 15px rgba(243, 191, 74, 0.16);
  transform: translateY(-3px);
}

.payment-logo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 20px 0 16px;
}

.footer-action-grid .button {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding-top: 18px;
}

.footer-social-link {
  --social-color: var(--gold);
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  flex-direction: column;
  padding: 0;
  border: 0;
  color: #9e9384;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  background: var(--social-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.footer-social-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-social-whatsapp .footer-social-icon {
  border-color: rgba(244, 205, 105, 0.42);
  background: #10251a;
}

.footer-social-link small {
  width: 100%;
  overflow: hidden;
  font-size: 0.56rem;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-social-facebook {
  --social-color: #1877f2;
}

.footer-social-instagram {
  --social-color: #d9468f;
}

.footer-social-whatsapp {
  --social-color: #20b85a;
}

.footer-social-telegram {
  --social-color: #229ed9;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--ink);
  outline: 0;
  transform: translateY(-3px);
}

.footer-social-link:hover .footer-social-icon,
.footer-social-link:focus-visible .footer-social-icon {
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.34), 0 0 0 4px rgba(243, 191, 74, 0.1);
  transform: scale(1.04);
}

.footer-subnav {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  margin-top: 42px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-subnav h2 {
  flex: 0 0 auto;
  margin: 0;
  border-bottom: 0;
}

.footer-subnav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-subnav a {
  color: #8f8578;
  font-size: 0.74rem;
  transition: color 180ms ease;
}

.footer-subnav a:hover {
  color: var(--gold-bright);
}

.footer-bottom-band {
  background: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding: 9px 0;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #0a0702;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.015em;
}

.mobile-bottom-nav {
  display: none;
}

.floating-action-stack {
  position: fixed;
  z-index: 80;
  right: 10px;
  bottom: 32px;
  display: grid;
  width: 146px;
  justify-items: center;
}

.aladdin-referral-helper {
  display: block;
  width: 146px;
  height: 146px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
  transition: filter 180ms ease, transform 180ms ease;
}

.aladdin-referral-helper picture,
.aladdin-referral-helper img {
  display: block;
  width: 100%;
  height: 100%;
}

.aladdin-referral-helper img {
  object-fit: contain;
}

.aladdin-referral-helper:hover,
.aladdin-referral-helper:focus-visible {
  filter:
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 12px rgba(243, 191, 74, 0.18));
  transform: translateY(-4px) scale(1.02);
}

.aladdin-referral-helper:focus-visible {
  border-radius: 24px;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 234px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  background: #16110c;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(470px, 35vw, 560px);
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #080604;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.95) 0%, rgba(8, 6, 4, 0.84) 30%, rgba(8, 6, 4, 0.52) 52%, rgba(8, 6, 4, 0.12) 78%, rgba(8, 6, 4, 0.03) 100%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.68), transparent 44%, rgba(5, 4, 3, 0.1));
  content: "";
  pointer-events: none;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -6%;
  bottom: -95%;
  width: min(54vw, 880px);
  height: min(54vw, 880px);
  border: 1px solid rgba(243, 191, 74, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero > .shell {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 56px), var(--shell));
  flex-direction: column;
  justify-content: center;
  padding-top: 54px;
  padding-bottom: 66px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #8f8374;
  font-size: 0.72rem;
  font-weight: 760;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs span[aria-hidden="true"] {
  color: #5f5549;
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.page-hero-copy {
  width: min(57%, 790px);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.68);
}

.page-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.page-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  background: #050403;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.page-hero-lottery .page-hero-media {
  background:
    radial-gradient(circle at 80% 48%, rgba(255, 203, 77, 0.22), transparent 26rem),
    linear-gradient(112deg, #080604 4%, #100b04 58%, #211505 100%);
}

.lottery-page-hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lottery-page-hero-art::before {
  position: absolute;
  top: 50%;
  right: clamp(70px, 14vw, 250px);
  width: clamp(300px, 32vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 205, 87, 0.22), rgba(191, 118, 18, 0.055) 50%, transparent 72%);
  content: "";
  filter: blur(2px);
  transform: translateY(-50%);
}

.lottery-page-hero-art img {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.48));
  transform: none;
}

.lottery-page-hero-orbit {
  position: absolute;
  top: 50%;
  right: clamp(26px, 9vw, 150px);
  width: clamp(360px, 39vw, 650px);
  height: clamp(230px, 25vw, 390px);
  border: 1px solid rgba(243, 191, 74, 0.2);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-12deg);
}

.lottery-page-hero-orbit-two {
  right: clamp(120px, 17vw, 290px);
  width: clamp(240px, 26vw, 420px);
  height: clamp(360px, 35vw, 550px);
  border-color: rgba(243, 191, 74, 0.11);
  transform: translateY(-50%) rotate(30deg);
}

.lottery-page-hero-art .lottery-page-hero-coin {
  top: 50%;
  right: clamp(155px, 20vw, 340px);
  width: clamp(165px, 16vw, 260px);
  transform: translateY(-52%) rotate(-7deg);
}

.lottery-page-hero-art .lottery-page-hero-main {
  top: 50%;
  right: clamp(92px, 14vw, 245px);
  width: clamp(126px, 12vw, 196px);
  transform: translateY(-24%);
}

.lottery-page-hero-art .lottery-page-hero-item,
.lottery-page-hero-art .lottery-page-hero-ace {
  width: clamp(62px, 5.6vw, 94px);
}

.lottery-page-hero-2d {
  top: 11%;
  right: 36%;
}

.lottery-page-hero-3d {
  right: 42%;
  bottom: 10%;
}

.lottery-page-hero-5d {
  top: 10%;
  right: 7%;
}

.lottery-page-hero-6d {
  right: 5%;
  bottom: 10%;
}

.lottery-page-hero-art .lottery-page-hero-ace {
  right: 27%;
  bottom: 4%;
}

.page-hero-contain {
  background:
    radial-gradient(circle at 78% 48%, rgba(243, 191, 74, 0.13), transparent 31rem),
    #080604;
}

.page-hero-media.contain-media {
  inset: 0 0 0 auto;
  width: min(54vw, 900px);
  background:
    radial-gradient(circle at center, rgba(243, 191, 74, 0.12), rgba(7, 5, 3, 0.3) 43%, transparent 72%);
}

.page-hero-media.contain-media img {
  padding: clamp(70px, 8vw, 128px);
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.52));
  transform: none;
}

.page-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.page-section-soft {
  background: rgba(255, 255, 255, 0.018);
}

.page-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.page-section-heading h2 {
  margin-bottom: 0;
}

.page-section-heading > p {
  max-width: 580px;
  margin-bottom: 4px;
}

.category-grid,
.story-grid,
.locale-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card,
.story-card,
.info-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #17130f, #0c0a08);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.category-card:hover,
.story-card:hover,
.info-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.category-card {
  min-height: 280px;
  padding: 28px;
}

.category-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(243, 191, 74, 0.13);
  border-radius: 50%;
  content: "";
}

.category-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.08);
  font-size: 1.55rem;
}

.category-card h2,
.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.category-card p {
  margin-bottom: 24px;
  font-size: 0.87rem;
}

.category-count {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.catalog-grid .game-card {
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.catalog-grid .game-card img {
  min-height: 0;
}

.game-library-jump {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 4, 0.96);
}

.game-library-jump-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 22px;
}

.game-library-jump-copy {
  max-width: 760px;
  margin: 20px auto 0;
  color: #c8bcaa;
  font-size: 0.86rem;
  line-height: 1.7;
  text-align: center;
}

.game-library-jump-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.game-library-jump-links a:hover,
.game-library-jump-links a:focus-visible {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(243, 191, 74, 0.08);
  transform: translateY(-2px);
}

.game-library-jump-links .game-tab-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  font-size: 0.82rem;
}

.game-library-category {
  scroll-margin-top: 96px;
}

.game-library-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(340px, 1.3fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 34px;
}

.game-library-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.game-library-heading > p {
  max-width: 760px;
  margin: 0 0 4px;
  font-size: 1rem;
}

.game-library-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: stretch;
  gap: 28px;
  margin-bottom: 34px;
}

.game-library-overview {
  margin: 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #d8cebf;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.06), transparent 62%),
    rgba(255, 255, 255, 0.018);
  font-size: 0.91rem;
  line-height: 1.85;
}

.game-library-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.game-library-facts article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
}

.game-library-facts h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-library-facts p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.library-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.library-game-card {
  align-items: center;
  padding: 12px;
  text-align: center;
}

.library-game-card img {
  height: clamp(96px, 8vw, 128px);
  margin: 4px 0 10px;
}

.library-game-card h3 {
  width: 100%;
  font-size: 0.82rem;
}

.library-category-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.library-category-cta .button {
  min-width: 210px;
}

.library-category-cta .button span {
  transition: transform 180ms ease;
}

.library-category-cta .button:hover span,
.library-category-cta .button:focus-visible span {
  transform: translateX(4px);
}

.game-library-guide {
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 191, 74, 0.09), transparent 30rem),
    #080705;
}

.game-library-guide-heading {
  margin-bottom: 32px;
}

.game-library-guide-heading > p {
  max-width: 720px;
}

.game-library-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.game-library-guide-grid .seo-card {
  min-height: 220px;
}

.game-library-cta {
  border-top: 1px solid var(--line);
}

.story-card-media {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #030302;
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms ease;
}

.story-card:hover .story-card-media img {
  transform: none;
}

.story-card-media-promotion {
  aspect-ratio: 2.5 / 1;
}

.story-card-media-news {
  aspect-ratio: 1230 / 1700;
}

.story-card-body,
.info-card {
  padding: 24px;
}

.story-card-body > span,
.info-card > span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card-body time {
  display: block;
  margin-top: 7px;
  color: #9f9384;
  font-size: 0.7rem;
  font-weight: 700;
}

.story-card-body h2,
.story-card-body h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
}

.story-card-body p {
  margin-bottom: 18px;
  font-size: 0.86rem;
}

.promotion-catalogue-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(243, 191, 74, 0.07), transparent 26rem),
    #070604;
}

.promotion-catalogue-heading {
  margin-bottom: 42px;
}

.promotion-catalogue-section .story-card-body {
  display: flex;
  min-height: 275px;
  flex-direction: column;
}

.promotion-catalogue-section .story-card-body .text-link {
  margin-top: auto;
}

.free-credit-status-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(243, 191, 74, 0.08), transparent 28rem),
    #070604;
}

.free-credit-status-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.free-credit-status-media {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #050403;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
}

.free-credit-status-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.5 / 1;
  object-fit: contain;
}

.free-credit-status-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.free-credit-status-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.free-credit-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.free-credit-fact-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

.free-credit-fact-grid span {
  display: block;
  margin-bottom: 7px;
  color: #a99d8d;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.free-credit-fact-grid strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1.35;
}

.free-credit-section-heading {
  margin-bottom: 40px;
}

.free-credit-steps-section {
  background:
    radial-gradient(circle at 86% 15%, rgba(243, 191, 74, 0.06), transparent 28rem),
    #0a0806;
}

.free-credit-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.free-credit-step-card {
  min-width: 0;
  min-height: 275px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.055), transparent 58%),
    #0d0a07;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.free-credit-step-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.free-credit-step-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.free-credit-step-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.free-credit-step-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.free-credit-trouble-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 191, 74, 0.06), transparent 28rem),
    #070604;
}

.free-credit-trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.free-credit-trouble-card {
  display: grid;
  min-width: 0;
  min-height: 170px;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0d0a07;
}

.free-credit-trouble-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.36);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
}

.free-credit-trouble-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.free-credit-trouble-card p {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.68;
}

.free-credit-related-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.065), transparent 30rem),
    #0a0806;
}

.free-credit-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.free-credit-related-grid .story-card-body {
  display: flex;
  min-height: 285px;
  flex-direction: column;
}

.free-credit-related-grid .story-card-body .text-link {
  margin-top: auto;
}

.free-credit-related-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.free-credit-faq-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(243, 191, 74, 0.065), transparent 28rem),
    #070604;
}

.free-credit-final-cta {
  border-top: 1px solid var(--line);
}

.news-section-index {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 35%, rgba(243, 191, 74, 0.07), transparent 24rem),
    #080705;
}

.news-section-index-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 58px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.news-section-index-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.news-section-index-inner p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  font-size: 0.86rem;
}

.news-section-index-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-section-index-links a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #d8cdbd;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.news-section-index-links a span {
  color: var(--gold);
  transition: transform 180ms ease;
}

.news-section-index-links a:hover,
.news-section-index-links a:focus-visible {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(243, 191, 74, 0.08);
  transform: translateY(-2px);
}

.news-section-index-links a:hover span,
.news-section-index-links a:focus-visible span {
  transform: translateY(3px);
}

.news-group-section {
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 88% 14%, rgba(243, 191, 74, 0.055), transparent 28rem),
    #070604;
}

.news-group-section.page-section-soft {
  background:
    radial-gradient(circle at 10% 18%, rgba(243, 191, 74, 0.06), transparent 28rem),
    #0a0806;
}

.news-group-heading {
  margin-bottom: 40px;
}

.news-story-grid .story-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.news-story-grid .story-card-body {
  display: flex;
  min-height: 255px;
  flex: 1;
  flex-direction: column;
}

.news-story-grid .story-card-body .text-link {
  margin-top: auto;
}

.news-guide-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 191, 74, 0.08), transparent 32rem),
    #080705;
}

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

.news-guide-card {
  min-width: 0;
  min-height: 226px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.055), transparent 62%),
    #0e0b08;
}

.news-guide-card > span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.news-guide-card h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.news-guide-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.news-final-cta {
  border-top: 1px solid var(--line);
}

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

.promotion-check-card {
  min-width: 0;
  min-height: 235px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.055), transparent 60%),
    #0e0b08;
}

.promotion-check-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.promotion-check-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.promotion-check-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.72;
}

.promotion-final-cta {
  border-top: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 85% 25%, rgba(243, 191, 74, 0.12), transparent 25rem),
    #090704;
}

.treasure-map-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(74, 161, 243, 0.07), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.1), transparent 26rem),
    #090704;
}

.treasure-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.treasure-map-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), transparent 40%),
    #0f0c09;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.treasure-map-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.treasure-map-card-media {
  display: grid;
  overflow: hidden;
  aspect-ratio: 322 / 363;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 221, 128, 0.11), transparent 52%),
    #090806;
}

.treasure-map-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
}

.treasure-map-card:hover .treasure-map-card-media img {
  transform: scale(1.025);
}

.treasure-map-card-copy {
  padding: 20px;
}

.treasure-map-card-copy h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
}

.treasure-map-card-copy p {
  min-height: 62px;
  margin-bottom: 17px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.treasure-map-card-copy .text-link {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 820;
}

.treasure-hunters-detail {
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 85% 8%, rgba(243, 191, 74, 0.13), transparent 30rem),
    linear-gradient(180deg, #0c0906, #070604);
}

.treasure-campaign-banner {
  display: grid;
  overflow: hidden;
  aspect-ratio: 2.5 / 1;
  margin-bottom: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #020201;
}

.treasure-campaign-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.treasure-campaign-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 32px;
}

.treasure-campaign-heading h2 {
  margin-bottom: 0;
}

.treasure-campaign-heading > div:last-child {
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
}

.treasure-campaign-heading p {
  margin-bottom: 10px;
}

.treasure-campaign-heading small {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 780;
}

.treasure-campaign-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.treasure-campaign-facts article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.treasure-campaign-facts span {
  color: #877b6e;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treasure-campaign-facts strong {
  color: #f5eadc;
  font-size: 1.05rem;
}

.treasure-prize-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 36px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(243, 191, 74, 0.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.15), transparent 24rem),
    rgba(243, 191, 74, 0.035);
}

.treasure-prize-panel h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.treasure-prize-panel p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 0.87rem;
}

.treasure-prize-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.treasure-prize-values strong {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: #140d03;
  background: linear-gradient(145deg, #ffe6a1, var(--gold));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  font-size: clamp(0.78rem, 1.4vw, 1.08rem);
}

.treasure-campaign-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: start;
  gap: 22px;
  margin-top: 56px;
}

.treasure-how-panel,
.treasure-turnover-panel,
.treasure-terms {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.018);
}

.treasure-how-panel h3,
.treasure-turnover-panel h3,
.treasure-terms h3 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.treasure-step-list,
.treasure-terms ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treasure-step-list li,
.treasure-terms li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
}

.treasure-step-list li > span,
.treasure-terms li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--gold);
  background: rgba(243, 191, 74, 0.07);
  font-size: 0.67rem;
  font-weight: 900;
}

.treasure-step-list p,
.treasure-terms li p {
  margin: 2px 0 0;
  font-size: 0.81rem;
  line-height: 1.67;
}

.treasure-turnover-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(243, 191, 74, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.018);
}

.treasure-example-label {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.treasure-turnover-panel > p {
  margin-bottom: 20px;
  font-size: 0.82rem;
}

.treasure-turnover-stats {
  display: grid;
  gap: 10px;
}

.treasure-turnover-stats article {
  display: grid;
  gap: 5px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.treasure-turnover-stats small {
  color: #8b7f72;
  font-size: 0.64rem;
}

.treasure-turnover-stats strong {
  color: #f4eadf;
  font-size: 1.6rem;
}

.treasure-turnover-stats span {
  color: #8bdba5;
  font-size: 0.68rem;
  font-weight: 820;
}

.treasure-turnover-panel ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding-left: 18px;
  color: #94887a;
  font-size: 0.72rem;
  line-height: 1.55;
}

.treasure-terms {
  margin-top: 22px;
}

.treasure-terms-heading {
  margin-bottom: 22px;
}

.treasure-terms ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  min-height: 220px;
  cursor: default;
}

.resource-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(243, 191, 74, 0.065);
  font-size: 0.7rem;
}

.resource-card h3 {
  margin: 18px 0 11px;
  font-size: 1.28rem;
}

.resource-card p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.resources-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.resources-cta .button {
  min-width: 180px;
  gap: 11px;
}

.resources-cta .button span {
  transition: transform 180ms ease;
}

.resources-cta .button:hover span {
  transform: translateX(4px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.3fr);
  align-items: start;
  gap: 70px;
}

.article-content {
  min-width: 0;
}

.article-content > img {
  width: 100%;
  max-height: 620px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #030302;
  object-fit: contain;
}

.article-content h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.article-content li + li {
  margin-top: 9px;
}

.article-aside {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.article-aside h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.article-aside a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: #a99d8e;
  font-size: 0.8rem;
}

.article-aside a:hover {
  color: var(--gold);
}

.notice-panel,
.rules-panel,
.page-cta {
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(243, 191, 74, 0.08), rgba(88, 216, 255, 0.025)),
    #0c0906;
}

.notice-panel h2,
.notice-panel h3,
.rules-panel h2,
.rules-panel h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.notice-panel p:last-child,
.rules-panel p:last-child {
  margin-bottom: 0;
}

.currency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.currency-card {
  position: relative;
  display: flex;
  min-height: 286px;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  padding: 25px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(243, 191, 74, 0.13), transparent 9rem),
    #0e0b08;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.currency-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 191, 74, 0.8), transparent);
  content: "";
  opacity: 0.48;
}

.currency-card:hover,
.currency-card:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32), 0 0 28px rgba(243, 191, 74, 0.06);
  transform: translateY(-4px);
}

.currency-orb {
  display: block;
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 17px 22px rgba(0, 0, 0, 0.42));
  transition: transform 220ms ease, filter 220ms ease;
}

.currency-orb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.currency-card:hover .currency-orb,
.currency-card:focus-visible .currency-orb {
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.52));
  transform: translateY(-3px) scale(1.035);
}

.currency-card-meta {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.currency-card h2,
.currency-card h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.currency-card p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.currency-card .text-link {
  justify-content: center;
  margin-top: auto;
  padding-top: 16px;
}

.transaction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.transaction-card {
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(243, 191, 74, 0.1), transparent 15rem),
    #0d0a07;
}

.transaction-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.transaction-card-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(243, 191, 74, 0.09);
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
}

.transaction-card-heading > .transaction-card-official-icon {
  overflow: hidden;
  padding: 8px;
  border-color: rgba(243, 191, 74, 0.34);
  background: #0d0a06;
}

.transaction-card-official-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.transaction-card-heading .eyebrow {
  margin-bottom: 4px;
}

.transaction-card-heading h3 {
  margin: 0;
  font-size: 1.3rem;
}

.transaction-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: topup-step;
}

.transaction-steps li {
  position: relative;
  min-height: 56px;
  padding: 0 0 20px 52px;
  color: #c0b5a8;
  font-size: 0.88rem;
  line-height: 1.65;
  counter-increment: topup-step;
}

.transaction-steps li:not(:last-child)::after {
  position: absolute;
  top: 33px;
  bottom: 3px;
  left: 17px;
  width: 1px;
  background: linear-gradient(var(--line-strong), transparent);
  content: "";
}

.transaction-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #161007;
  color: var(--gold);
  content: counter(topup-step, decimal-leading-zero);
  font-size: 0.63rem;
  font-weight: 900;
}

.transaction-steps li:last-child {
  min-height: 34px;
  padding-bottom: 0;
}

.topup-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.topup-check-card {
  min-height: 205px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.018);
}

.topup-check-card > span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.topup-check-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.topup-check-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
}

.topup-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(243, 191, 74, 0.24);
  border-radius: 16px;
  background: rgba(243, 191, 74, 0.055);
}

.topup-note > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #130d03;
  font-size: 0.76rem;
  font-weight: 950;
}

.topup-note p {
  margin: 2px 0 0;
  color: #cfc3b4;
  font-size: 0.83rem;
  line-height: 1.68;
}

.currency-country-section {
  scroll-margin-top: 88px;
}

.currency-country-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 38px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.currency-country-heading > img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.42));
}

.currency-country-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.currency-country-heading p:last-child {
  max-width: 880px;
  margin-bottom: 0;
}

.currency-country-section .currency-methods-section {
  margin-bottom: 26px;
}

.currency-country-section .section-heading-compact h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
}

.currency-country-section .section-heading-compact > p:last-child {
  max-width: 820px;
}

.currency-country-notes {
  margin-top: 24px;
}

.currency-channel-pending {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(243, 191, 74, 0.08), transparent 52%),
    #0d0a07;
}

.currency-channel-pending > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.currency-channel-pending h3 {
  margin-bottom: 6px;
}

.currency-channel-pending p {
  max-width: 880px;
  margin: 0;
  font-size: 0.8rem;
}

.currency-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: start;
  gap: 28px;
}

.currency-detail-main {
  min-width: 0;
}

.currency-summary {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 54px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 12% 50%, rgba(243, 191, 74, 0.11), transparent 15rem),
    #0d0a07;
}

.currency-summary > img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.45));
}

.currency-summary h2,
.section-heading-compact h2 {
  margin-bottom: 12px;
}

.currency-summary p:not(.eyebrow) {
  max-width: 660px;
}

.currency-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.currency-facts span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.currency-facts small {
  color: #877c70;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.currency-facts strong {
  overflow: hidden;
  color: #eee5da;
  font-size: 0.79rem;
  text-overflow: ellipsis;
}

.currency-methods-section {
  margin-bottom: 54px;
}

.currency-methods-section .section-heading-compact > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
}

.currency-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.currency-provider-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.06), transparent 55%),
    #0d0a07;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.currency-provider-card:hover {
  border-color: rgba(243, 191, 74, 0.45);
  transform: translateY(-3px);
}

.currency-provider-logo {
  display: grid;
  min-height: 82px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: #f5f5f3;
}

.currency-provider-logo img {
  display: block;
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.currency-provider-card .eyebrow {
  margin-bottom: 4px;
  font-size: 0.55rem;
}

.currency-provider-card h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.currency-provider-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.currency-provider-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.currency-provider-card dt {
  color: #8f8376;
  font-size: 0.65rem;
}

.currency-provider-card dd {
  margin: 0;
  color: #f3e7d6;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.currency-transaction-section,
.currency-check-section {
  padding-top: 4px;
}

.currency-check-section {
  margin-top: 58px;
}

.section-heading-compact {
  margin-bottom: 24px;
}

.currency-switcher {
  padding: 20px;
}

.currency-switcher a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
}

.currency-switcher a img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 8px rgba(0, 0, 0, 0.32));
}

.currency-switcher a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.currency-switcher a strong {
  color: #eee5da;
  font-size: 0.76rem;
}

.currency-switcher a small {
  overflow: hidden;
  color: #877c70;
  font-size: 0.64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currency-switcher a b {
  color: var(--gold);
  font-size: 0.8rem;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.detail-info-grid article {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.detail-info-grid article > span {
  color: var(--gold);
  font-size: 1.3rem;
}

.detail-info-grid h3 {
  margin-bottom: 7px;
  font-size: 0.94rem;
}

.detail-info-grid p {
  margin: 0;
  font-size: 0.77rem;
  line-height: 1.6;
}

.guide-centre-grid .info-card {
  min-height: 250px;
}

.guide-centre-grid .info-card h2 {
  margin: 16px 0 12px;
  font-size: 1.45rem;
}

.rules-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
  counter-reset: rule;
}

.rules-list li {
  position: relative;
  min-height: 105px;
  padding: 20px 20px 20px 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  counter-increment: rule;
  font-size: 0.86rem;
}

.rules-list li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #0b0702;
  background: var(--gold);
  content: counter(rule);
  font-size: 0.7rem;
  font-weight: 900;
}

.policy-content {
  max-width: 880px;
}

.policy-content h2 {
  margin-top: 48px;
  font-size: 1.7rem;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.82;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
}

.page-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.page-cta p {
  margin-bottom: 0;
}

.locale-home-hero {
  padding-top: 42px;
}

.locale-home-hero .page-hero-media {
  min-height: 360px;
}

.locale-home-hero .page-hero-media img {
  min-height: 360px;
}

.lottery-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 46%, rgba(243, 191, 74, 0.2), transparent 27rem),
    radial-gradient(circle at 88% 32%, rgba(88, 216, 255, 0.06), transparent 18rem),
    linear-gradient(112deg, #060504 4%, #0b0804 58%, #171005 100%);
}

.lottery-hero::before,
.lottery-hero::after {
  position: absolute;
  border: 1px solid rgba(243, 191, 74, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lottery-hero::before {
  top: -340px;
  right: -190px;
  width: 760px;
  height: 760px;
}

.lottery-hero::after {
  right: 18%;
  bottom: -430px;
  width: 680px;
  height: 680px;
}

.lottery-hero > .shell {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 62px;
}

.lottery-hero .breadcrumbs {
  margin-bottom: 28px;
}

.lottery-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.lottery-hero-copy {
  max-width: 690px;
}

.lottery-hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

.lottery-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.lottery-hero-copy .button span {
  margin-left: 6px;
  color: var(--gold);
}

.lottery-hero-stage {
  position: relative;
  min-height: 410px;
  isolation: isolate;
}

.lottery-hero-stage::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 205, 87, 0.2), rgba(191, 118, 18, 0.06) 48%, transparent 70%);
  filter: blur(3px);
  content: "";
  transform: translate(-50%, -50%);
}

.lottery-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(243, 191, 74, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.lottery-orbit-one {
  width: 430px;
  height: 250px;
}

.lottery-orbit-two {
  width: 310px;
  height: 380px;
  border-color: rgba(243, 191, 74, 0.12);
  transform: translate(-50%, -50%) rotate(34deg);
}

.lottery-coin {
  position: absolute;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 2px solid rgba(255, 224, 148, 0.68);
  border-radius: 50%;
  color: #ffe3a2;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(145deg, #17120b, #070604 72%);
  box-shadow:
    inset 0 0 0 5px rgba(243, 191, 74, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(243, 191, 74, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.lottery-coin-2d {
  top: 10px;
  left: 13%;
}

.lottery-coin-3d {
  bottom: 14px;
  left: 4%;
}

.lottery-coin-5d {
  top: 16px;
  right: 8%;
}

.lottery-coin-6d {
  right: 0;
  bottom: 18px;
}

.lottery-coin-main {
  top: 50%;
  left: 50%;
  width: 218px;
  height: 218px;
  grid-template-rows: auto auto auto;
  align-content: center;
  gap: 0;
  border-width: 3px;
  color: #140b01;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.9), transparent 12%),
    radial-gradient(circle at 52% 44%, #ffeaa4, #f4bf45 46%, #a95f0a 100%);
  box-shadow:
    inset 0 0 0 7px rgba(83, 38, 0, 0.22),
    inset 0 0 34px rgba(92, 43, 0, 0.38),
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(243, 191, 74, 0.22);
  transform: translate(-50%, -50%);
}

.lottery-coin-main small,
.lottery-coin-main em {
  font-family: Inter, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.lottery-coin-main small {
  margin-bottom: -8px;
  font-size: 0.58rem;
}

.lottery-coin-main strong {
  font-size: 5.1rem;
  line-height: 1;
}

.lottery-coin-main em {
  margin-top: -2px;
  font-size: 0.62rem;
}

.lottery-official-coin,
.lottery-ace-logo {
  position: absolute;
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(243, 191, 74, 0.1));
}

.lottery-coin-main {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 238px;
  height: 238px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
}

.lottery-gold-coin {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 170px;
  height: 195px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.48));
  transform: translate(-50%, -50%) rotate(-7deg);
}

.lottery-main-format {
  position: absolute;
  right: 1px;
  bottom: 5px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.48));
}

.lottery-ace-logo {
  right: 17%;
  bottom: -2px;
  width: 78px;
  height: 78px;
}

.lottery-section-heading {
  margin-bottom: 34px;
}

.lottery-embed-shell {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #101318;
  box-shadow: var(--shadow);
}

.lottery-embed-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #18140e, #0b0907);
}

.lottery-embed-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  padding: 5px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.28);
  border-radius: 10px;
  background: #090704;
}

.lottery-embed-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lottery-live-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #65d691;
  box-shadow: 0 0 0 5px rgba(101, 214, 145, 0.12);
}

.lottery-embed-bar strong {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.lottery-embed-bar a {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
}

.lottery-embed-bar a:hover {
  color: var(--gold-bright);
}

.lottery-embed-shell iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #111419;
}

.lottery-source-note,
.lottery-prize-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #928678;
  font-size: 0.76rem;
  line-height: 1.65;
}

.lottery-source-note {
  max-width: 900px;
  margin: 17px auto 0;
  text-align: center;
  justify-content: center;
}

.lottery-source-note > span,
.lottery-prize-note > span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
}

.lottery-prize-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lottery-prize-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 191, 74, 0.08), transparent 18rem),
    #0d0b09;
}

.lottery-prize-card-wide {
  grid-column: 1 / -1;
}

.lottery-prize-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 19px 21px;
  border-bottom: 1px solid var(--line);
}

.lottery-prize-heading strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lottery-prize-heading span {
  color: #8f8374;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lottery-prize-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.lottery-prize-table th,
.lottery-prize-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(243, 191, 74, 0.1);
  text-align: left;
  vertical-align: middle;
}

.lottery-prize-table thead th {
  color: #160d02;
  background: linear-gradient(135deg, #ffd875, #e7a82c);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lottery-prize-table tbody th {
  color: #f2eadf;
  font-size: 0.82rem;
}

.lottery-prize-table tbody td {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 840;
  font-variant-numeric: tabular-nums;
}

.lottery-prize-table tbody td.is-empty {
  color: #5f554a;
}

.lottery-prize-table tbody tr:last-child > * {
  border-bottom: 0;
}

.lottery-prize-card-descriptive .lottery-prize-table th:first-child {
  width: 22%;
}

.lottery-prize-card-descriptive .lottery-prize-table th:nth-child(2):not(:last-child) {
  width: 54%;
}

.lottery-prize-note {
  margin: 0;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  background: rgba(243, 191, 74, 0.025);
}

.lottery-prize-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.lottery-prize-cta .button {
  min-width: 190px;
}

.tutorial-library-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 191, 74, 0.075), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(123, 73, 28, 0.11), transparent 30rem),
    #070604;
}

.tutorial-grid {
  display: grid;
  width: min(100%, 1120px);
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  margin: 0 auto;
}

.tutorial-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(243, 191, 74, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), transparent 36%),
    #100d09;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.tutorial-card:hover,
.tutorial-card:focus-within {
  border-color: rgba(255, 210, 99, 0.62);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(243, 191, 74, 0.08);
  transform: translateY(-4px);
}

.tutorial-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #020201;
}

.tutorial-video-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.tutorial-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #020201;
}

.tutorial-duration {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 216, 117, 0.4);
  border-radius: 999px;
  color: #fff4cf;
  background: rgba(4, 3, 2, 0.82);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  font-size: 0.7rem;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.tutorial-card-copy {
  min-height: 112px;
  padding: 19px 20px 22px;
}

.tutorial-card-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tutorial-card-copy h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.28;
}

.tutorial-faq-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(243, 191, 74, 0.035), transparent 36%),
    #090704;
}

.tutorial-faq-section .faq-layout > div:first-child {
  position: sticky;
  top: 118px;
  align-self: start;
}

.tutorial-hub-card {
  border-color: rgba(243, 191, 74, 0.38);
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 191, 74, 0.16), transparent 40%),
    rgba(243, 191, 74, 0.045);
}

.tutorial-feature-guide-section,
.feature-guide-hub-section,
.feature-guide-related-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(74, 161, 243, 0.06), transparent 25rem),
    #090704;
}

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

.feature-guide-card {
  min-height: 340px;
}

.feature-guide-card-visual {
  display: grid;
  width: 72px;
  height: 72px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.34);
  border-radius: 20px;
  color: var(--gold-bright);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 235, 173, 0.2), transparent 38%),
    #151008;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.feature-guide-card-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-guide-card-visual > span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.feature-guide-card-icon {
  border-color: rgba(243, 191, 74, 0.42);
}

.feature-hub-card {
  border-color: rgba(116, 185, 255, 0.28);
  background:
    radial-gradient(circle at 80% 16%, rgba(74, 161, 243, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.feature-guide-source-note {
  margin-top: 34px;
}

.feature-guide-detail-section {
  background:
    radial-gradient(circle at 10% 14%, rgba(243, 191, 74, 0.07), transparent 26rem),
    #070604;
}

.app-icon-options-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.app-icon-option {
  min-width: 0;
  padding: 14px 14px 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.app-icon-option:hover {
  border-color: var(--line-strong);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.app-icon-option-media {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 13px;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.11), transparent 42%),
    #16120d;
}

.app-icon-option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-icon-option-media > span {
  display: grid;
  width: 64%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 22%;
  color: #d94b46;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

.app-icon-option h3 {
  margin: 0;
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-icon-option small {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.64rem;
}

.app-icon-option.is-pending {
  border-style: dashed;
}

.feature-guide-instruction-layout,
.feature-guide-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: start;
  gap: 28px;
}

.feature-guide-instructions {
  min-width: 0;
}

.feature-guide-instructions > h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.8vw, 3.3rem);
}

.feature-guide-instructions > p:not(.eyebrow) {
  max-width: 760px;
}

.feature-step-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-step-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.022);
}

.feature-step-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(243, 191, 74, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-step-list p {
  margin: 3px 0 0;
  color: #c2b6a8;
  line-height: 1.7;
}

.feature-demo-panel {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), transparent 38%),
    #12100e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.feature-demo-heading,
.downline-default-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.feature-demo-official-icon {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(243, 191, 74, 0.3);
  border-radius: 15px;
  background: #090704;
  object-fit: contain;
}

.feature-demo-heading > div {
  display: grid;
  gap: 4px;
}

.feature-demo-heading small,
.downline-default-setting > span {
  color: #b9ac9c;
  font-size: 0.78rem;
  font-weight: 760;
}

.feature-demo-heading strong,
.downline-default-setting > strong {
  color: var(--gold-bright);
  font-size: 1.7rem;
}

.feature-demo-heading > span,
.downline-default-setting > b {
  padding: 9px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(243, 191, 74, 0.06);
  font-size: 0.72rem;
}

.bet-adjustment-options {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 8px;
  padding-top: 22px;
}

.bet-adjustment-options span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #9d9182;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 820;
}

.bet-adjustment-options span.is-selected {
  border-color: var(--gold);
  color: #120c04;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 22px rgba(191, 118, 18, 0.22);
}

.feature-guide-content-heading {
  margin-top: 54px;
}

.bet-calculation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
}

.bet-calculation-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
}

.bet-calculation-grid article.is-adjusted {
  border-color: rgba(243, 191, 74, 0.5);
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.15), transparent 48%),
    rgba(243, 191, 74, 0.035);
}

.bet-calculation-grid article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bet-calculation-grid article > strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.bet-calculation-grid article > p {
  margin: 6px 0 0;
  color: var(--gold);
  font-weight: 760;
}

.bet-calculation-arrow {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 2rem;
}

.downline-demo {
  padding: 22px;
}

.downline-default-setting {
  align-items: flex-start;
  flex-wrap: wrap;
}

.downline-default-setting > span {
  flex: 1 1 180px;
}

.downline-demo-list {
  padding-top: 18px;
}

.downline-demo-label {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.downline-demo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px 34px;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.downline-demo-row > span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.downline-demo-row strong {
  color: var(--ink);
}

.downline-demo-row small {
  color: #756b60;
}

.downline-demo-row > b {
  color: var(--gold-bright);
  text-align: right;
}

.downline-demo-row > .downline-demo-action {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #ffd978;
  border-radius: 50%;
  color: #171006;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(145deg, #ffe8a1 0%, #f8be37 46%, #a96708 100%);
  box-shadow:
    0 0 0 3px rgba(248, 190, 55, 0.1),
    0 7px 16px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.downline-demo-row > .downline-demo-action::after {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(59, 35, 3, 0.36);
  border-radius: inherit;
  content: "";
}

.notice-centre-demo {
  max-width: 820px;
  margin-inline: auto;
}

.notice-demo-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.notice-demo-heading > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(243, 191, 74, 0.08);
  font-size: 1.15rem;
  font-weight: 950;
}

.notice-demo-heading > .feature-demo-official-icon {
  width: 48px;
  height: 48px;
}

.notice-demo-heading > div {
  display: grid;
  gap: 3px;
}

.notice-demo-heading small {
  color: #7d7266;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.notice-demo-heading strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.notice-demo-list {
  display: grid;
  gap: 12px;
  padding-top: 20px;
}

.notice-demo-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.notice-demo-row img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: cover;
}

.notice-demo-row > span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.notice-demo-row strong {
  overflow: hidden;
  color: #f0e8dd;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-demo-row small,
.notice-record-card > span {
  font-size: 0.71rem;
  font-weight: 850;
}

.notice-demo-row .is-credit,
.notice-record-card > .is-credit {
  color: var(--gold-bright);
}

.notice-demo-row .is-debit,
.notice-record-card > .is-debit {
  color: #dca244;
}

.notice-record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.notice-record-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(243, 191, 74, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.018);
}

.notice-record-card h3 {
  margin: 13px 0 9px;
  font-size: 1rem;
}

.notice-record-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
}

.notice-guide-instructions {
  margin-top: 48px;
}

.exchange-rate-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.exchange-rate-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0e0b08;
}

.exchange-rate-panel-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 191, 74, 0.045);
}

.exchange-rate-panel-heading > span,
.exchange-rate-panel-heading > img {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 6px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--gold);
  background: #090704;
  object-fit: contain;
}

.exchange-rate-panel-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}

.exchange-rate-panel > div:last-child {
  display: grid;
  gap: 0;
  padding: 0 18px;
}

.exchange-rate-placeholder {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 30px minmax(118px, auto);
  align-items: center;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.exchange-rate-placeholder:last-child {
  border-bottom: 0;
}

.exchange-rate-placeholder img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

.exchange-rate-placeholder > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.exchange-rate-placeholder strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.exchange-rate-placeholder small {
  overflow: hidden;
  color: #786d61;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exchange-rate-placeholder > b {
  color: var(--gold);
  text-align: center;
}

.exchange-rate-placeholder > em {
  justify-self: end;
  padding: 6px 9px;
  border: 1px dashed rgba(243, 191, 74, 0.35);
  border-radius: 999px;
  color: #aa9e8d;
  font-size: 0.6rem;
  font-style: normal;
  text-align: center;
}

.member-portal-section,
.support-channel-section,
.about-story-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 191, 74, 0.08), transparent 28rem),
    #070604;
}

.member-portal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
}

.member-portal-copy h2,
.about-story-layout h2 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.member-portal-copy > p:not(.eyebrow) {
  max-width: 580px;
}

.portal-security-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid rgba(243, 191, 74, 0.19);
  border-radius: 14px;
  background: rgba(243, 191, 74, 0.045);
}

.portal-security-note > span {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.78rem;
}

.portal-security-note p {
  margin: 0;
  color: #c3b7a6;
  font-size: 0.76rem;
  line-height: 1.65;
}

.member-portal-frame-shell {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 38%),
    #0d0a07;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.member-portal-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #0a0806;
}

.member-portal-placeholder {
  display: flex;
  min-height: 590px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.member-portal-placeholder::before {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(243, 191, 74, 0.18);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.member-portal-placeholder-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(243, 191, 74, 0.08);
  box-shadow: 0 0 44px rgba(243, 191, 74, 0.12);
  font-size: 2rem;
}

.register-qr-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 290px);
  margin-bottom: 24px;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.register-qr-frame {
  display: grid;
  padding: 12px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.52);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(243, 191, 74, 0.1);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.register-qr-frame img {
  display: block;
  width: min(260px, 48vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.register-qr-caption {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.register-qr-link:hover,
.register-qr-link:focus-visible {
  color: var(--gold-bright);
  transform: translateY(-3px);
}

.register-qr-link:hover .register-qr-frame,
.register-qr-link:focus-visible .register-qr-frame {
  border-color: var(--gold-bright);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(243, 191, 74, 0.2);
}

.register-qr-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 6px;
  border-radius: 18px;
}

.member-portal-placeholder h2 {
  max-width: 520px;
  margin: 2px auto 15px;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

.member-portal-placeholder > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 26px;
  font-size: 0.86rem;
}

.register-portal-section {
  scroll-margin-top: 88px;
}

.register-guide-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(243, 191, 74, 0.07), transparent 30rem),
    #070604;
}

.register-section-heading {
  margin-bottom: 42px;
}

.register-step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.register-step-grid::before {
  position: absolute;
  top: 34px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 191, 74, 0.6) 12%, rgba(243, 191, 74, 0.6) 88%, transparent);
  content: "";
}

.register-step-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.055), transparent 58%),
    #0d0a07;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.register-step-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.register-step-number {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.5);
  border-radius: 50%;
  color: #171006;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 0 9px #0d0a07;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.register-step-card h3 {
  margin-bottom: 11px;
  font-size: 1.08rem;
}

.register-step-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.register-prep-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 191, 74, 0.06), transparent 27rem),
    #0a0806;
}

.register-tutorial-link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.register-tutorial-link .button {
  min-width: 250px;
}

.register-tutorial-link .button span {
  transition: transform 180ms ease;
}

.register-tutorial-link .button:hover span,
.register-tutorial-link .button:focus-visible span {
  transform: translateX(4px);
}

.register-faq-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(243, 191, 74, 0.065), transparent 28rem),
    #070604;
}

.register-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: start;
  gap: clamp(46px, 7vw, 104px);
}

.register-faq-layout > div:first-child {
  position: sticky;
  top: 110px;
}

.register-faq-layout h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.register-faq-layout > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
}

.register-final-cta {
  border-top: 1px solid var(--line);
}

.login-portal-section {
  scroll-margin-top: 88px;
}

.login-offer-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.07), transparent 30rem),
    #070604;
}

.login-section-heading {
  margin-bottom: 40px;
}

.login-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.login-offer-card {
  position: relative;
  min-width: 0;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%),
    #0c0907;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.login-offer-card::after {
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(243, 191, 74, 0.12);
  border-radius: 50%;
  content: "";
}

.login-offer-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.login-offer-card > span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.login-offer-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.login-offer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.72;
}

.login-experience-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(243, 191, 74, 0.07), transparent 28rem),
    #0a0806;
}

.login-experience-panel {
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.06), transparent 58%),
    #0d0a07;
}

.login-experience-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
}

.login-experience-panel > div > p {
  max-width: 760px;
}

.login-experience-panel .login-experience-lead {
  color: var(--cream);
  font-size: 1.02rem;
  font-weight: 700;
}

.login-experience-panel .button {
  margin-top: 8px;
}

.login-experience-panel .button span {
  transition: transform 180ms ease;
}

.login-experience-panel .button:hover span,
.login-experience-panel .button:focus-visible span {
  transform: translateX(4px);
}

.login-experience-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.login-experience-panel li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}

.login-experience-panel li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
}

.login-experience-panel li p {
  margin: 0;
  color: #c9bdae;
  font-size: 0.78rem;
  line-height: 1.62;
}

.login-prep-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(243, 191, 74, 0.06), transparent 28rem),
    #070604;
}

.login-faq-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 16%, rgba(243, 191, 74, 0.065), transparent 28rem),
    #080705;
}

.login-final-cta {
  border-top: 1px solid var(--line);
}

.access-info-grid,
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 34px;
}

.access-info-card,
.about-value-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 48%),
    #0c0907;
}

.access-info-card > span,
.about-value-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.access-info-card h3,
.about-value-card h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.access-info-card p,
.about-value-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.68;
}

.support-section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.65fr);
  gap: 60px;
}

.support-section-heading > p {
  max-width: 620px;
  margin: 0;
}

.support-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 38px;
}

.support-channel-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 280px;
  grid-template-columns: 60px minmax(0, 1fr) 24px;
  align-content: end;
  align-items: end;
  gap: 16px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  background: #0c0907;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.support-channel-card::before {
  position: absolute;
  top: -90px;
  left: -56px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--channel-color);
  content: "";
  filter: blur(20px);
  opacity: 0.15;
}

.support-channel-card:hover,
.support-channel-card:focus-visible {
  border-color: var(--channel-color);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  outline: 0;
  transform: translateY(-4px);
}

.support-channel-facebook {
  --channel-color: #4d82e8;
}

.support-channel-whatsapp {
  --channel-color: #31cb73;
}

.support-channel-instagram {
  --channel-color: #e65d98;
}

.support-channel-service {
  --channel-color: var(--gold-deep);
}

.support-channel-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--channel-color);
}

.support-channel-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.support-channel-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.support-channel-whatsapp .support-channel-icon {
  border: 1px solid rgba(244, 205, 105, 0.42);
  background: #10251a;
}

.support-service-symbol {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.support-channel-copy {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 8px;
}

.support-channel-copy strong {
  font-size: 1rem;
}

.support-channel-copy small {
  color: #a89d8f;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.55;
}

.support-channel-arrow {
  position: relative;
  align-self: start;
  color: var(--channel-color);
  font-size: 1.1rem;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-story-copy p {
  margin: 0;
  color: #c9bdae;
  font-size: 1rem;
  line-height: 1.85;
}

.about-vision-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 191, 74, 0.07), transparent 28rem),
    #0a0806;
}

.about-vision-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(243, 191, 74, 0.065), transparent 55%),
    #0d0a07;
}

.about-vision-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
}

.about-vision-panel > div:last-child {
  display: grid;
  gap: 18px;
}

.about-vision-panel p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.85;
}

.about-vision-panel .about-vision-lead {
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 700;
}

.about-universe-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(243, 191, 74, 0.065), transparent 30rem),
    #070604;
}

.about-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 36px;
}

.about-offer-card {
  position: relative;
  min-width: 0;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 50%),
    #0c0907;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-offer-card::after {
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(243, 191, 74, 0.12);
  border-radius: 50%;
  content: "";
}

.about-offer-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.about-offer-card > span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.about-offer-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.about-offer-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.72;
}

.about-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.about-section-cta .button {
  min-width: 220px;
}

.about-section-cta .button span {
  transition: transform 180ms ease;
}

.about-section-cta .button:hover span,
.about-section-cta .button:focus-visible span {
  transform: translateX(4px);
}

.about-commitment-section .about-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-commitment-section .about-value-card {
  min-height: 275px;
}

.about-mobile-section {
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 8% 50%, rgba(243, 191, 74, 0.08), transparent 24rem),
    #070604;
}

.about-mobile-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 7% 50%, rgba(243, 191, 74, 0.12), transparent 19rem),
    #0c0907;
}

.about-mobile-panel img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.38));
}

.about-mobile-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
}

.about-mobile-panel > div > p:not(.eyebrow) {
  max-width: 900px;
  margin-bottom: 22px;
}

.about-mobile-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-mobile-panel li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.about-mobile-panel li span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid rgba(243, 191, 74, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
}

.about-mobile-panel li p {
  margin: 0;
  color: #c9bdae;
  font-size: 0.8rem;
  line-height: 1.6;
}

.about-final-cta {
  border-top: 1px solid var(--line);
}

.about-future-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.about-future-panel {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 6% 50%, rgba(243, 191, 74, 0.11), transparent 20rem),
    #0c0907;
}

.about-future-panel img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
}

.about-future-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.about-future-panel p:last-child {
  max-width: 900px;
  margin: 0;
}

@media (max-width: 1340px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

@media (min-width: 1341px) and (max-width: 1500px) {
  .desktop-nav {
    gap: clamp(12px, 1vw, 16px);
  }

  .header-actions .desktop-action {
    padding-inline: 13px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

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

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

  .promotion-card-featured {
    grid-column: span 2;
  }

  .news-grid {
    grid-auto-columns: minmax(280px, calc((100% - 14px) / 2));
  }

  .catalog-grid,
  .library-preview-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .catalogue-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .currency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tutorial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .app-icon-options-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bet-adjustment-options {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 82px;
  }

  .header-inner {
    width: min(calc(100% - 16px), 1520px);
    min-height: 70px;
    gap: 6px;
  }

  .brand {
    width: clamp(126px, 28vw, 176px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .desktop-action {
    display: inline-flex;
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.65rem;
  }

  .language-trigger {
    min-height: 36px;
    padding: 6px 8px;
  }

  .mobile-menu {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
  }

  .hero-copy,
  .section-heading,
  .rewards-layout,
  .content-layout,
  .faq-layout,
  .page-hero-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 30px;
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .currency-country-heading {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 24px;
  }

  .currency-country-heading > img {
    width: 116px;
    height: 116px;
  }

  .hero-highlights {
    padding-bottom: 54px;
  }

  .section-heading {
    gap: 18px;
  }

  .rewards-layout,
  .content-layout,
  .faq-layout {
    gap: 46px;
  }

  .rewards-intro,
  .content-index {
    position: static;
  }

  .content-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

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

  .member-access-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .page-hero-layout {
    gap: 42px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 6, 4, 0.95) 0%, rgba(8, 6, 4, 0.82) 48%, rgba(8, 6, 4, 0.42) 100%),
      linear-gradient(0deg, rgba(5, 4, 3, 0.78), transparent 58%, rgba(5, 4, 3, 0.24));
  }

  .page-hero > .shell {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .page-hero-copy {
    width: min(82%, 700px);
  }

  .page-hero-media {
    width: 100%;
    min-height: 100%;
    opacity: 0.8;
  }

  .page-hero-media > img {
    min-height: 100%;
    object-position: 62% center;
  }

  .lottery-page-hero-art img {
    min-height: 0;
    object-position: center;
  }

  .page-hero-media.contain-media {
    width: 72%;
    opacity: 0.52;
  }

  .page-hero-media.contain-media > img {
    padding: 68px 42px;
  }

  .lottery-hero {
    min-height: 760px;
  }

  .lottery-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lottery-hero-copy {
    max-width: 700px;
  }

  .lottery-hero-stage {
    width: min(100%, 520px);
    min-height: 350px;
    margin: 0 auto;
  }

  .lottery-prize-grid {
    grid-template-columns: 1fr;
  }

  .lottery-prize-card-wide {
    grid-column: auto;
  }

  .lottery-embed-shell iframe {
    height: 840px;
  }

  .category-grid,
  .story-grid,
  .locale-home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .subpage-editorial-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .subpage-editorial-copy {
    padding: 22px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .catalog-grid,
  .library-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-library-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .game-library-heading > p {
    max-width: 680px;
  }

  .game-library-jump {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .game-library-jump-links {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
  }

  .article-aside {
    position: static;
  }

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

  .feature-guide-instruction-layout,
  .feature-guide-two-column,
  .exchange-rate-sections {
    grid-template-columns: 1fr;
  }

  .currency-detail-layout {
    grid-template-columns: 1fr;
  }

  .currency-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .currency-switcher h2 {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    width: min(calc(100% - 10px), 1520px);
    gap: 4px;
  }

  .brand {
    width: clamp(104px, 26vw, 116px);
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .desktop-action {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.65rem;
  }

  .language-trigger {
    min-height: 38px;
    gap: 4px;
    padding: 7px;
    font-size: 0.65rem;
  }

  .language-trigger .chevron {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .section {
    padding: 76px 0;
  }

  .page-hero {
    min-height: 500px;
  }

  .currency-country-heading {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .currency-country-heading > img {
    width: 78px;
    height: 78px;
  }

  .currency-country-heading h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .currency-channel-pending {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .currency-channel-pending > span {
    width: 60px;
    height: 60px;
  }

  .page-hero > .shell {
    width: min(calc(100% - 28px), var(--shell));
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .page-hero-copy {
    width: 100%;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.65rem);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.7rem);
  }

  .page-hero-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  .page-hero-media {
    opacity: 0.8;
  }

  .lottery-page-hero-art img {
    min-height: 0;
    object-position: center;
  }

  .page-hero-lottery .page-hero-media {
    opacity: 0.88;
  }

  .lottery-page-hero-art::before {
    right: -60px;
    width: 330px;
  }

  .lottery-page-hero-orbit {
    right: -138px;
    width: 370px;
    height: 240px;
  }

  .lottery-page-hero-orbit-two {
    right: -44px;
    width: 230px;
    height: 350px;
  }

  .lottery-page-hero-art .lottery-page-hero-coin {
    right: 6px;
    width: 140px;
    opacity: 0.82;
  }

  .lottery-page-hero-art .lottery-page-hero-main {
    right: -24px;
    width: 112px;
    opacity: 0.96;
  }

  .lottery-page-hero-art .lottery-page-hero-item,
  .lottery-page-hero-art .lottery-page-hero-ace {
    width: 58px;
  }

  .lottery-page-hero-2d {
    top: 7%;
    right: 11%;
  }

  .lottery-page-hero-art .lottery-page-hero-3d,
  .lottery-page-hero-art .lottery-page-hero-ace {
    display: none;
  }

  .lottery-page-hero-5d {
    top: 17%;
    right: -2%;
  }

  .lottery-page-hero-6d {
    right: -1%;
    bottom: 7%;
  }

  .page-hero-media.contain-media {
    width: 88%;
    opacity: 0.34;
  }

  .lottery-hero {
    min-height: 720px;
  }

  .lottery-hero > .shell {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .lottery-hero-copy h1 {
    font-size: clamp(1.9rem, 8.4vw, 2.65rem);
  }

  .lottery-hero-copy > p:not(.eyebrow) {
    margin-bottom: 24px;
    font-size: 0.92rem;
  }

  .lottery-hero-stage {
    min-height: 305px;
  }

  .lottery-orbit-one {
    width: 310px;
    height: 190px;
  }

  .lottery-orbit-two {
    width: 220px;
    height: 285px;
  }

  .lottery-coin {
    width: 64px;
    height: 64px;
    font-size: 1.16rem;
  }

  .lottery-coin-main {
    width: 164px;
    height: 164px;
  }

  .lottery-coin-main small {
    margin-bottom: -4px;
    font-size: 0.46rem;
  }

  .lottery-coin-main strong {
    font-size: 3.7rem;
  }

  .lottery-coin-main em {
    font-size: 0.48rem;
  }

  .lottery-coin-2d {
    left: 8%;
  }

  .lottery-coin-3d {
    left: 1%;
  }

  .lottery-coin-5d {
    right: 7%;
  }

  .lottery-embed-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .lottery-embed-bar a {
    width: 100%;
    margin-left: 19px;
  }

  .lottery-embed-shell iframe {
    height: 980px;
  }

  .lottery-source-note {
    text-align: left;
    justify-content: flex-start;
  }

  .lottery-prize-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .lottery-prize-table,
  .lottery-prize-table tbody,
  .lottery-prize-table tr {
    display: block;
    width: 100%;
  }

  .lottery-prize-table thead {
    display: none;
  }

  .lottery-prize-table tbody tr {
    padding: 11px 16px;
    border-bottom: 1px solid rgba(243, 191, 74, 0.12);
  }

  .lottery-prize-table tbody tr:last-child {
    border-bottom: 0;
  }

  .lottery-prize-table tbody th,
  .lottery-prize-table tbody td {
    display: grid;
    grid-template-columns: minmax(92px, 0.72fr) minmax(0, 1.28fr);
    gap: 14px;
    padding: 7px 0;
    border: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .lottery-prize-table tbody th::before,
  .lottery-prize-table tbody td::before {
    color: #837668;
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
  }

  .page-section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .tutorial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tutorial-card-copy {
    min-height: 0;
  }

  .tutorial-faq-section .faq-layout > div:first-child {
    position: static;
  }

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

  .feature-guide-card {
    min-height: 0;
  }

  .app-icon-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-demo-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .bet-adjustment-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bet-calculation-grid {
    grid-template-columns: 1fr;
  }

  .notice-record-grid {
    grid-template-columns: 1fr;
  }

  .bet-calculation-arrow {
    min-height: 34px;
    transform: rotate(90deg);
  }

  .exchange-rate-panel > div:last-child {
    padding: 0 13px;
  }

  .exchange-rate-placeholder {
    grid-template-columns: 38px minmax(0, 1fr) minmax(102px, auto);
  }

  .exchange-rate-placeholder img {
    width: 38px;
    height: 38px;
  }

  .exchange-rate-placeholder > b {
    display: none;
  }

  .feature-step-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .feature-step-list li > span {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 4px;
  }

  .language-trigger {
    min-height: 34px;
    padding: 5px 6px;
  }

  .language-menu {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .hero-track {
    aspect-ratio: 1.78 / 1;
  }

  .hero-slide img {
    object-position: center;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .hero-copy {
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    padding-bottom: 46px;
  }

  .hero-highlights article {
    min-height: 0;
  }

  .catalogue-overview-grid {
    grid-template-columns: 1fr;
  }

  .button-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
  }

  .button-row .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 9px 8px;
    justify-content: center;
    font-size: clamp(0.64rem, 2.75vw, 0.74rem);
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .button-row .button:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .page-section-heading,
  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-set {
    gap: 28px;
    padding: 9px 14px;
  }

  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .game-card {
    padding: 8px;
    border-radius: 12px;
  }

  .game-card img {
    height: 82px;
    margin: 8px 0;
  }

  .game-card h2,
  .game-card h3 {
    font-size: 0.73rem;
  }

  .game-load-more-controls {
    align-items: stretch;
    flex-direction: column;
    margin-top: 22px;
  }

  .game-load-more-controls .button {
    width: 100%;
    min-width: 0;
  }

  .game-badge {
    top: 7px;
    left: 7px;
    padding: 3px 5px;
    font-size: 0.46rem;
  }

  .promotion-grid,
  .reward-grid,
  .category-grid,
  .story-grid,
  .locale-home-grid,
  .currency-grid,
  .rules-list,
  .seo-grid-two,
  .seo-game-grid,
  .seo-trust-grid,
  .seo-step-grid {
    grid-template-columns: 1fr;
  }

  .currency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .currency-card {
    min-height: 236px;
    padding: 18px 10px 16px;
    border-radius: 15px;
  }

  .currency-orb {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }

  .currency-card-meta {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .currency-card h2,
  .currency-card h3 {
    font-size: 1.08rem;
  }

  .currency-card p {
    font-size: 0.68rem;
  }

  .currency-card .text-link {
    font-size: 0.64rem;
  }

  .transaction-grid,
  .topup-check-grid,
  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .transaction-card {
    padding: 22px 18px;
  }

  .transaction-steps li {
    padding-left: 46px;
    font-size: 0.82rem;
  }

  .currency-summary {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 42px;
    padding: 20px 16px;
  }

  .currency-summary h2 {
    font-size: 1.5rem;
  }

  .currency-summary p:not(.eyebrow) {
    font-size: 0.82rem;
  }

  .currency-facts {
    grid-template-columns: 1fr;
  }

  .currency-provider-grid {
    grid-template-columns: 1fr;
  }

  .currency-provider-card {
    padding: 16px;
  }

  .currency-switcher {
    grid-template-columns: 1fr;
  }

  .seo-topic {
    padding: 46px 0;
  }

  .seo-card,
  .seo-step {
    padding: 20px;
  }

  .catalog-grid,
  .library-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .game-library-jump-links {
    padding: 14px 0;
  }

  .game-library-jump-links a {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .library-game-card {
    padding: 8px;
  }

  .library-game-card img {
    height: 78px;
    margin-block: 3px 8px;
  }

  .category-card {
    min-height: 245px;
  }

  .category-icon {
    margin-bottom: 36px;
  }

  .article-content > img {
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .promotion-card-featured,
  .reward-diamond {
    grid-column: auto;
  }

  .promotion-body {
    min-height: 170px;
    align-items: flex-start;
    flex-direction: column;
  }

  .news-grid {
    grid-auto-columns: minmax(260px, 84vw);
    gap: 10px;
  }

  .news-card {
    min-height: 430px;
  }

  .news-scroll-button {
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .news-scroll-prev {
    left: 6px;
  }

  .news-scroll-next {
    right: 6px;
  }

  .reward-card,
  .reward-diamond {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .reward-card-identity img,
  .reward-diamond .reward-card-identity img {
    width: 52px;
    height: 52px;
  }

  .reward-card h2,
  .reward-card h3 {
    font-size: 0.72rem;
  }

  .reward-tier-table {
    min-width: 0;
  }

  .reward-tier-table th {
    font-size: 0.5rem;
  }

  .reward-tier-table td {
    padding: 6px 2px;
    font-size: 0.61rem;
  }

  .content-index nav {
    grid-template-columns: 1fr;
  }

  .editorial-copy article {
    padding: 0 0 40px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-subnav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .footer-bottom-band {
    padding-bottom: 100px;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 90;
    right: max(4px, env(safe-area-inset-right));
    bottom: max(4px, env(safe-area-inset-bottom));
    left: max(4px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) 76px repeat(2, minmax(0, 1fr));
    min-height: 74px;
    overflow: visible;
    padding: 5px 6px;
    border: 1px solid rgba(243, 191, 74, 0.46);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(243, 191, 74, 0.035), transparent 42%),
      rgba(7, 6, 4, 0.97);
    box-shadow:
      0 -12px 38px rgba(0, 0, 0, 0.46),
      inset 0 1px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    padding: 7px 3px 6px;
    border-radius: 14px;
    color: #8b8174;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .mobile-bottom-nav small {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 0.58rem;
    font-weight: 780;
    line-height: 1.1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-nav-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    color: #b0a595;
    line-height: 1;
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-nav-icon-login {
    background: linear-gradient(currentColor, currentColor) 9px 11px / 12px 1.5px no-repeat;
  }

  .mobile-nav-icon-login::before {
    position: absolute;
    top: 3px;
    left: 2px;
    width: 10px;
    height: 18px;
    border: 1.5px solid currentColor;
    border-right: 0;
    border-radius: 3px 0 0 3px;
    content: "";
  }

  .mobile-nav-icon-login::after {
    position: absolute;
    top: 8px;
    right: 2px;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .mobile-nav-icon-register {
    background:
      linear-gradient(currentColor, currentColor) 16px 7px / 8px 1.5px no-repeat,
      linear-gradient(currentColor, currentColor) 19.25px 3.75px / 1.5px 8px no-repeat;
  }

  .mobile-nav-icon-register::before {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 7px;
    height: 7px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    content: "";
  }

  .mobile-nav-icon-register::after {
    position: absolute;
    bottom: 2px;
    left: 2px;
    width: 13px;
    height: 9px;
    border: 1.5px solid currentColor;
    border-radius: 8px 8px 3px 3px;
    content: "";
  }

  .mobile-nav-icon-download::before {
    position: absolute;
    top: 2px;
    left: 6px;
    width: 12px;
    height: 14px;
    background: currentColor;
    clip-path: polygon(40% 0, 60% 0, 60% 54%, 100% 54%, 50% 100%, 0 54%, 40% 54%);
    content: "";
  }

  .mobile-nav-icon-download::after {
    position: absolute;
    right: 3px;
    bottom: 2px;
    left: 3px;
    height: 7px;
    border: 1.5px solid currentColor;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    content: "";
  }

  .mobile-nav-icon-contact::before {
    position: absolute;
    top: 3px;
    left: 2px;
    width: 20px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 8px;
    content: "";
  }

  .mobile-nav-icon-contact::after {
    position: absolute;
    bottom: 1px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-bottom: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    background: #080704;
    content: "";
    transform: skewY(-34deg);
  }

  .mobile-bottom-nav .mobile-nav-home {
    min-height: 62px;
    overflow: visible;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav-logo {
    position: absolute;
    top: -25px;
    left: 50%;
    display: grid;
    width: 68px;
    height: 68px;
    padding: 3px;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: #080603;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.5),
      0 0 0 4px rgba(7, 6, 4, 0.94),
      0 0 20px rgba(243, 191, 74, 0.2);
    transform: translateX(-50%);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .mobile-nav-logo::before {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(243, 191, 74, 0.58);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(243, 191, 74, 0.2);
    content: "";
    pointer-events: none;
    animation: mobile-nav-halo-pulse 3.6s ease-in-out infinite;
  }

  .mobile-nav-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform-origin: center;
    animation: mobile-nav-logo-float 3.6s ease-in-out infinite;
  }

  .mobile-bottom-nav a:not(.mobile-nav-home):hover,
  .mobile-bottom-nav button:hover {
    color: var(--gold-bright);
    background:
      linear-gradient(180deg, rgba(243, 191, 74, 0.14), rgba(243, 191, 74, 0.065));
    box-shadow: inset 0 1px rgba(255, 216, 117, 0.16);
  }

  .mobile-bottom-nav a:not(.mobile-nav-home):hover .mobile-nav-icon,
  .mobile-bottom-nav button:hover .mobile-nav-icon {
    color: var(--gold-bright);
    transform: translateY(-1px);
  }

  .mobile-nav-home:hover .mobile-nav-logo,
  .mobile-nav-home.is-active .mobile-nav-logo {
    border-color: var(--gold-bright);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.55),
      0 0 0 4px rgba(7, 6, 4, 0.96),
      0 0 26px rgba(243, 191, 74, 0.36);
    transform: translateX(-50%) translateY(-2px) scale(1.04);
  }

  @keyframes mobile-nav-logo-float {
    0%,
    100% {
      filter: brightness(1) saturate(1);
      transform: translateY(0) scale(1);
    }

    50% {
      filter: brightness(1.08) saturate(1.08);
      transform: translateY(-3px) scale(1.035);
    }
  }

  @keyframes mobile-nav-halo-pulse {
    0%,
    100% {
      opacity: 0.22;
      transform: scale(0.94);
    }

    50% {
      opacity: 0.72;
      transform: scale(1.08);
    }
  }

  .floating-action-stack {
    right: 5px;
    bottom: 118px;
    width: 106px;
  }

  .aladdin-referral-helper {
    width: 106px;
    height: 106px;
  }

  .toast {
    right: 14px;
    bottom: 272px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .brand {
    width: clamp(88px, 24vw, 100px);
  }
}

@media (max-width: 900px) {
  .treasure-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treasure-campaign-heading,
  .treasure-prize-panel,
  .treasure-campaign-layout {
    grid-template-columns: 1fr;
  }

  .treasure-campaign-heading {
    gap: 22px;
  }

  .treasure-campaign-heading > div:last-child {
    padding: 20px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .treasure-campaign-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treasure-prize-values {
    max-width: 600px;
  }

  .treasure-terms ol {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .treasure-map-grid {
    gap: 10px;
  }

  .treasure-map-card {
    border-radius: 16px;
  }

  .treasure-map-card-copy {
    padding: 14px 12px 15px;
  }

  .treasure-map-card-copy h3 {
    font-size: 0.9rem;
  }

  .treasure-map-card-copy p {
    min-height: 0;
    font-size: 0.68rem;
  }

  .treasure-map-card-copy .text-link {
    font-size: 0.59rem;
  }

  .treasure-campaign-banner {
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .treasure-campaign-facts {
    gap: 9px;
  }

  .treasure-campaign-facts article {
    padding: 15px;
  }

  .treasure-campaign-facts strong {
    font-size: 0.86rem;
  }

  .treasure-prize-panel,
  .treasure-how-panel,
  .treasure-turnover-panel,
  .treasure-terms {
    padding: 19px 16px;
    border-radius: 17px;
  }

  .treasure-prize-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treasure-prize-values strong {
    min-height: 58px;
  }

  .treasure-campaign-layout {
    margin-top: 40px;
  }

  .treasure-step-list li,
  .treasure-terms li {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 13px 12px;
  }

  .treasure-step-list li > span,
  .treasure-terms li > span {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 900px) {
  .member-portal-layout,
  .about-story-layout {
    grid-template-columns: 1fr;
  }

  .member-portal-frame-shell,
  .member-portal-placeholder {
    min-height: 520px;
  }

  .support-section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-channel-grid {
    grid-template-columns: 1fr;
  }

  .support-channel-card {
    min-height: 210px;
  }

  .access-info-grid,
  .about-value-grid {
    grid-template-columns: 1fr;
  }

  .access-info-card,
  .about-value-card {
    min-height: 0;
  }

  .access-info-card > span,
  .about-value-card > span {
    margin-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .member-portal-layout {
    gap: 34px;
  }

  .member-portal-frame-shell,
  .member-portal-placeholder {
    min-height: 450px;
  }

  .member-portal-frame-shell {
    border-radius: 18px;
  }

  .member-portal-placeholder {
    padding: 30px 24px;
  }

  .register-qr-link {
    width: min(100%, 240px);
    margin-bottom: 20px;
  }

  .register-qr-frame {
    padding: 10px;
    border-radius: 17px;
  }

  .register-qr-frame img {
    width: min(220px, 58vw);
  }

  .member-portal-placeholder::before {
    inset: 12px;
    border-radius: 13px;
  }

  .support-channel-card {
    min-height: 190px;
    grid-template-columns: 52px minmax(0, 1fr) 20px;
    padding: 20px;
  }

  .support-channel-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .about-future-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-future-panel img {
    width: 112px;
    height: 112px;
    margin: 0 auto;
  }

  .access-info-card,
  .about-value-card {
    padding: 23px;
    border-radius: 16px;
  }
}

@media (max-width: 1000px) {
  .game-library-editorial {
    grid-template-columns: 1fr;
  }

  .free-credit-status-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .free-credit-step-grid,
  .free-credit-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .register-step-grid::before {
    display: none;
  }

  .register-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .register-faq-layout > div:first-child {
    position: static;
  }

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

  .login-experience-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-vision-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .about-commitment-section .about-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-section-index-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .game-library-guide-grid {
    grid-template-columns: 1fr;
  }

  .game-library-guide-grid .seo-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .free-credit-status-layout {
    gap: 24px;
  }

  .free-credit-status-media {
    border-radius: 16px;
  }

  .free-credit-fact-grid {
    grid-template-columns: 1fr;
  }

  .free-credit-section-heading {
    margin-bottom: 28px;
  }

  .free-credit-step-grid,
  .free-credit-trouble-grid,
  .free-credit-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .free-credit-step-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .free-credit-step-card > span {
    margin-bottom: 28px;
  }

  .free-credit-trouble-card {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
  }

  .free-credit-trouble-card > span {
    width: 44px;
    height: 44px;
  }

  .free-credit-related-grid .story-card-body {
    min-height: 0;
  }

  .register-section-heading {
    margin-bottom: 28px;
  }

  .register-step-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .register-step-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 20px;
    border-radius: 16px;
  }

  .register-step-number {
    width: 54px;
    height: 54px;
    margin: 0;
    box-shadow: none;
  }

  .register-faq-layout {
    gap: 24px;
  }

  .login-section-heading {
    margin-bottom: 28px;
  }

  .login-offer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .login-offer-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .login-offer-card > span {
    margin-bottom: 30px;
  }

  .login-experience-panel {
    gap: 24px;
    padding: 22px;
    border-radius: 18px;
  }

  .login-experience-panel li {
    padding: 15px;
  }

  .about-vision-panel {
    gap: 22px;
    padding: 22px;
    border-radius: 18px;
  }

  .about-vision-panel .about-vision-lead {
    font-size: 0.94rem;
  }

  .about-offer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .about-offer-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .about-offer-card > span {
    margin-bottom: 30px;
  }

  .about-commitment-section .about-value-grid {
    grid-template-columns: 1fr;
  }

  .about-commitment-section .about-value-card {
    min-height: 0;
  }

  .about-mobile-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 18px;
    text-align: left;
  }

  .about-mobile-panel img {
    width: 128px;
    height: 128px;
    margin: 0 auto;
  }

  .news-section-index-inner {
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .news-section-index-links {
    grid-template-columns: 1fr;
  }

  .news-section-index-links a {
    min-height: 50px;
    padding: 12px 15px;
  }

  .news-group-heading {
    margin-bottom: 26px;
  }

  .news-story-grid .story-card-body {
    min-height: 0;
  }

  .news-guide-grid {
    grid-template-columns: 1fr;
  }

  .news-guide-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .news-guide-card > span {
    margin-bottom: 24px;
  }

  .promotion-catalogue-section .story-card-body {
    min-height: 0;
  }

  .promotion-check-grid {
    grid-template-columns: 1fr;
  }

  .promotion-check-card {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .promotion-check-card > span {
    margin-bottom: 24px;
  }

  .game-library-jump-copy {
    margin-top: 16px;
    font-size: 0.76rem;
    text-align: left;
  }

  .game-library-jump-links {
    padding-bottom: 16px;
  }

  .game-library-heading h2 {
    font-size: clamp(1.8rem, 10vw, 2.7rem);
  }

  .game-library-editorial {
    gap: 12px;
  }

  .game-library-overview {
    padding: 19px;
    border-radius: 15px;
    font-size: 0.8rem;
  }

  .game-library-facts {
    grid-template-columns: 1fr;
  }

  .game-library-facts article {
    padding: 18px;
    border-radius: 15px;
  }

  .lottery-official-coin {
    width: 66px;
    height: 66px;
  }

  .lottery-coin-main {
    width: 176px;
    height: 176px;
  }

  .lottery-gold-coin {
    width: 126px;
    height: 144px;
  }

  .lottery-main-format {
    width: 82px;
    height: 82px;
  }

  .lottery-ace-logo {
    right: 16%;
    width: 60px;
    height: 60px;
  }

  .feature-demo-heading {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .feature-demo-heading > span {
    margin-left: auto;
  }
}

.mobile-nav-icon-image::before,
.mobile-nav-icon-image::after {
  display: none !important;
}

.mobile-nav-icon-image img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@media (max-width: 640px) {
  h1,
  h2,
  h3 {
    line-height: 1.12;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  h3 {
    font-size: clamp(1.02rem, 4.6vw, 1.25rem);
  }

  .page-hero-copy h1,
  .hero-copy h1,
  .lottery-hero-copy h1 {
    font-size: clamp(1.75rem, 7.4vw, 2.2rem);
  }

  .section-heading h2,
  .page-section-heading h2,
  .seo-topic h2,
  .subpage-editorial-layout h2,
  .game-library-heading h2,
  .free-credit-status-copy h2,
  .news-section-index-inner h2,
  .currency-country-heading h2,
  .section-heading-compact h2,
  .feature-guide-instructions > h2,
  .member-portal-copy h2,
  .about-story-layout h2,
  .member-portal-placeholder h2,
  .register-faq-layout h2,
  .login-experience-panel h2,
  .about-vision-panel h2,
  .about-mobile-panel h2,
  .about-future-panel h2,
  .page-cta h2,
  .member-access h2,
  .article-content h2,
  .policy-content h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  .editorial-copy h3,
  .news-card-featured .news-card-overlay h3,
  .currency-country-section .section-heading-compact h3 {
    font-size: clamp(1.12rem, 5vw, 1.4rem);
  }

  .hero-track {
    aspect-ratio: 2.03 / 1;
  }

  .hero-slide img {
    object-fit: contain;
    object-position: center;
  }

  .page-hero {
    display: grid;
    min-height: 0;
    align-items: initial;
    grid-template-rows: auto auto;
  }

  .page-hero > .shell {
    z-index: 2;
    grid-row: 1;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .page-hero-media,
  .page-hero-media.contain-media {
    position: relative;
    z-index: 1;
    inset: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    grid-row: 2;
    border-top: 1px solid rgba(243, 191, 74, 0.14);
    opacity: 1;
  }

  .page-hero-media > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .page-hero-media.contain-media > img {
    padding: clamp(28px, 9vw, 48px);
  }

  .page-hero::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
