:root {
  --page-width: 1220px;
  --topbar: #110e22;
  --topbar-border: #30254d;
  --nav-start: #250743;
  --nav-end: #50062f;
  --panel: #0b0817;
  --pink: #e11389;
  --purple: #8425e6;
  --blue: #04a9ec;
  --text: #ffffff;
  --muted: #c9c3da;
}

@font-face {
  font-family: "LatoWeb";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GilroyBold";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open24DisplaySt";
  src: url("../fonts/Open24DisplaySt.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #090611;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #090611;
  font-family: "LatoWeb", Arial, Helvetica, sans-serif;
}

#top {
  display: flex;
  flex-direction: column;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 50;
}

.utility-bar {
  position: relative;
  z-index: 700;
  height: 50px;
  border-bottom: 1px solid var(--topbar-border);
  background: var(--topbar);
}

.utility-inner,
.nav-inner,
.announcement-inner {
  width: min(var(--page-width), calc(100% - 28px));
  margin: 0 auto;
}

.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-actions,
.account-actions {
  display: flex;
  align-items: center;
}

.utility-actions {
  height: 100%;
  gap: 0;
}

.telegram-button {
  height: 30px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  background: linear-gradient(#12b7ee, #047bb8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 25%);
  margin-right: 8px;
}

.telegram-button img,
.icon-button img {
  display: block;
  filter: brightness(0) invert(1);
  transform: translateY(0);
  will-change: transform;
}

.utility-separator {
  width: 1px;
  height: 26px;
  margin: 0 5px;
  background: #5f5872;
}

.icon-button,
.language-trigger {
  width: 31px;
  height: 31px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-left: 1px dotted #706982;
  background: transparent;
  color: #fff;
  line-height: 0;
  cursor: pointer;
}

.icon-button img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.icon-button:hover,
.icon-button:focus-visible,
.language-trigger:hover,
.language-trigger:focus-visible {
  background: rgb(255 255 255 / 7%);
  outline: none;
}

.language-control {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}

.language-trigger {
  width: 49px;
  gap: 7px;
}

.caret {
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid #fff;
  transition: transform 160ms ease;
}

.language-control.is-open .caret {
  transform: rotate(180deg);
}

.flag {
  width: 16px;
  height: 11px;
  display: inline-block;
  flex: 0 0 16px;
  background-image: url("../img/flags.png");
  background-repeat: no-repeat;
}

.flag[data-language="en"] { background-position: -176px -44px; }
.flag[data-language="id"] { background-position: -64px -66px; }
.flag[data-language="kr"] { background-position: -144px -77px; }
.flag[data-language="cn"] { background-position: -208px -22px; }
.flag[data-language="jp"] { background-position: -16px -77px; }
.flag[data-language="th"] { background-position: -160px -143px; }
.flag[data-language="my"] { background-position: -16px -99px; }
.flag[data-language="kh"] { background-position: -64px -77px; }
.flag[data-language="hi"],
.flag[data-language="ta"],
.flag[data-language="te"] { background-position: -128px -66px; }
.flag[data-language="vi"] { background-position: -16px -165px; }
.flag[data-language="bn"] { background-position: -32px -11px; }
.flag[data-language="pt"] { background-position: -112px -121px; }

.language-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 600;
  width: 172px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #393052;
  border-top: 3px solid var(--pink);
  border-radius: 0 0 4px 4px;
  background: #0d0a1b;
  box-shadow: 0 18px 35px rgb(0 0 0 / 55%);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transform-origin: top left;
  transition:
    max-height 340ms cubic-bezier(.2, .8, .2, 1),
    opacity 170ms ease,
    transform 250ms ease,
    visibility 0s linear 340ms;
}

.language-control.is-open .language-menu {
  max-height: min(710px, calc(100vh - 70px));
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    max-height 420ms cubic-bezier(.2, .8, .2, 1),
    opacity 150ms ease,
    transform 220ms ease,
    visibility 0s;
}

.language-menu li + li {
  border-top: 1px solid #28213d;
}

.language-menu button {
  width: 100%;
  min-height: 47px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: #121024;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: #c41773;
  outline: none;
}

.language-menu span {
  display: grid;
  gap: 3px;
}

.language-menu b {
  font-size: 13px;
}

.language-menu small {
  color: #d7d1e4;
  font-size: 10px;
}

.account-actions {
  gap: 10px;
}

.account-button {
  min-width: 90px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.login-button {
  background: #362f62;
}

.register-button {
  background: linear-gradient(90deg, #e31aa4, #cc1265);
}

.account-button:hover,
.account-button:focus-visible {
  filter: brightness(1.18);
  outline: 2px solid rgb(255 255 255 / 50%);
  outline-offset: 2px;
}

.nav-stage {
  position: relative;
  height: 112px;
  background: #141414;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.brand {
  width: 190px;
  min-width: 190px;
  display: grid;
  place-items: center;
}

.brand img {
  width: 175px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgb(0 0 0 / 45%));
}

.main-navigation {
  min-width: 0;
  flex: 1;
  height: 100%;
  overflow: visible;
  scrollbar-width: none;
}

.main-navigation::-webkit-scrollbar {
  display: none;
}

.menu-list {
  height: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(68px, 1fr));
  list-style: none;
}

.menu-item {
  min-width: 0;
}

.menu-link {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 13px 3px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #b7b7b7;
  cursor: pointer;
}

.menu-link img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
  opacity: .92;
  transition: transform 160ms ease, filter 160ms ease;
}

.menu-link span {
  max-width: 78px;
  min-height: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.menu-item:hover .menu-link,
.menu-item:focus-within .menu-link,
.menu-item.is-open .menu-link,
.menu-item.is-current .menu-link {
  color: #02d9ec;
  background: rgb(255 255 255 / 1.5%);
  outline: none;
}

.menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #02d9ec;
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity 150ms ease, transform 150ms ease;
}

.menu-item:hover .menu-link::after,
.menu-item:focus-within .menu-link::after,
.menu-item.is-open .menu-link::after,
.menu-item.is-current .menu-link::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-item:hover .menu-link img,
.menu-item:focus-within .menu-link img,
.menu-item.is-open .menu-link img,
.menu-item.is-current .menu-link img {
  transform: translateY(-1px);
  filter: brightness(0) saturate(100%) invert(68%) sepia(88%) saturate(2477%) hue-rotate(136deg) brightness(98%) contrast(103%);
}

.menu-arrow {
  width: 23px;
  min-width: 23px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.menu-arrow:hover,
.menu-arrow:focus-visible {
  color: #ff38bd;
  outline: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 500;
  width: min(1170px, calc(100vw - 24px));
  max-height: 430px;
  padding: 18px 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 0 0 6px 6px;
  background: rgb(7 7 7 / 96.5%);
  box-shadow: 0 20px 45px rgb(0 0 0 / 58%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.menu-item:hover .mega-menu,
.menu-item:focus-within .mega-menu,
.menu-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 18px;
}

.provider-card {
  position: relative;
  min-width: 0;
  height: 104px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgb(38 42 162 / 52%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(3 3 3 / 6%), rgb(42 40 137 / 82%)), #111;
  cursor: pointer;
  transition: border-color 150ms ease, filter 150ms ease, transform 150ms ease;
}

.provider-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
  pointer-events: none;
}

.provider-card:hover,
.provider-card:focus-visible {
  z-index: 1;
  border-color: rgb(66 81 255 / 96%);
  outline: none;
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.provider-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mega-menu::-webkit-scrollbar {
  width: 8px;
}

.mega-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #383838;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 5;
  min-height: 250px;
  overflow: hidden;
  background: #130918;
}

.slides,
.slide,
.slide img {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.slide-dots {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.slide-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slide-dot.is-active {
  background: #fff;
}

.announcement {
  height: 40px;
  background: #211b3e;
}

.announcement-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.announcement time {
  font-size: 12px;
  font-weight: 800;
}

.ticker {
  height: 25px;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #080611;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-track {
  height: 100%;
  display: flex;
  align-items: center;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ticker-track.is-running {
  animation: ticker-scroll var(--ticker-duration, 24s) linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: none;
  gap: 48px;
  padding-right: 48px;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--ticker-offset), 0, 0);
  }
}

.jackpot-stage {
  min-height: 290px;
  padding: 20px;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(rgb(8 4 17 / 8%), rgb(8 4 17 / 8%)),
    url("../img/bg.jpg");
  background-position: center top;
  background-size: cover;
}

.jackpot-home-inner {
  width: min(1170px, 100%);
  padding: 20px;
  border-radius: 50px;
  background: rgb(26 15 40 / 90%);
}

.home-progressive-jackpot {
  display: flex;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
  background-image: linear-gradient(#151127, #2e264d, #151127);
}

.jackpot-outer-container {
  display: flex;
  flex-grow: 1;
  padding: 10px;
  border-radius: 100px;
  background-color: #000;
}

.jackpot-inner-container {
  display: flex;
  flex-grow: 1;
  padding: 10px;
  border-radius: 100px;
  background-image: linear-gradient(#4d0036, rgb(32 10 24 / 0%));
}

.jackpot-main-border {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 50px;
  padding: 10px;
  border: 3px solid #ff00b8;
  border-radius: 100px;
  background-color: rgb(0 0 0 / 60%);
}

.jackpot-play-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 20px;
}

.jackpot-play-section img {
  width: 87px;
  height: auto;
  display: block;
}

.jackpot-play-text {
  color: #fd6f16;
  font-family: "GilroyBold", sans-serif;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.jackpot-play-text span {
  color: #009fc5;
}

.jackpot-container {
  display: flex;
  flex-grow: 2;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 70px;
  background-image: linear-gradient(#e2008b, #000);
  font-family: "Open24DisplaySt", monospace;
  font-size: 50px;
  letter-spacing: 5px;
}

.jackpot-number-inner {
  display: flex;
  flex-grow: 2;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  background-color: #000;
}

.jackpot-border-container {
  display: flex;
  flex-grow: 2;
  justify-content: center;
  padding-bottom: 10px;
  border: 3px dotted #670451;
  border-radius: 50px;
  line-height: 40px;
  text-shadow: 0 2px 22px #ed00ff;
  white-space: nowrap;
}

.jackpot-currency {
  margin-right: 10px;
  color: #b7004d;
}

.games-stage {
  padding: 0 20px 46px;
  background-image:
    linear-gradient(rgb(8 4 17 / 8%), rgb(8 4 17 / 8%)),
    url("../img/bg.jpg");
  background-position: center bottom;
  background-size: cover;
}

.games-content {
  width: min(1170px, 100%);
  margin: 0 auto;
}

.game-section + .game-section {
  margin-top: 28px;
}

.game-section-heading {
  min-height: 54px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.game-section-heading h2 {
  margin: 0;
  flex: none;
  font-size: 20px;
  font-weight: 400;
}

.game-section-heading > span {
  height: 4px;
  flex: 1;
  border-top: 2px solid #0d0d0d;
  border-bottom: 2px solid #451e58;
}

.game-section-heading > button {
  min-width: 190px;
  min-height: 32px;
  padding: 5px 28px;
  border: 0;
  border-radius: 25px;
  background: #4e3c69;
  color: #fff;
  font-size: 14px;
  cursor: default;
}

.game-scroll {
  padding: 12px 15px 8px;
  overflow-x: auto;
  border: 2px solid #322547;
  border-radius: 30px;
  background: #0a0813;
  scrollbar-color: #68636f transparent;
  scrollbar-width: thin;
}

.game-scroll::-webkit-scrollbar {
  height: 7px;
}

.game-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.game-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #68636f;
}

.game-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 158px;
  gap: 10px;
  width: max-content;
}

.game-grid-popular {
  grid-template-rows: repeat(2, 198px);
}

.game-grid-single {
  width: 100%;
  min-width: 1010px;
  grid-auto-flow: row;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: 208px;
}

.game-card {
  min-width: 0;
  padding: 5px;
  overflow: hidden;
  border-radius: 22px;
  background: #181527;
  color: #fff;
  text-align: center;
}

.game-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.game-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
}

.game-play {
  position: absolute;
  inset: 0;
  width: 72%;
  height: 40px;
  margin: auto;
  border: 0;
  border-radius: 25px;
  opacity: 0;
  background: linear-gradient(to right, #661181, #c9176b);
  color: #fff;
  font-weight: 700;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.game-card:hover .game-image img,
.game-card:focus-within .game-image img {
  filter: brightness(.48);
}

.game-card:hover .game-play,
.game-card:focus-within .game-play {
  opacity: 1;
  transform: translateY(0);
}

.game-name,
.provider-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-name {
  padding: 5px 4px 0;
  font-size: 14px;
}

.provider-name {
  padding: 7px 4px 2px;
  color: #ff0078;
  font-size: 14px;
}

.mobile-download-section {
  order: 1;
  min-height: 547px;
  overflow: hidden;
  background-image: url("../img/app-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mobile-download-inner {
  width: min(1170px, calc(100% - 28px));
  min-height: 547px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.mobile-download-visual {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.mobile-download-visual > img {
  width: min(553px, 100%);
  height: auto;
  display: block;
}

.mobile-download-copy {
  padding-left: 2px;
  color: #fff;
}

.mobile-download-eyebrow {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

.mobile-download-eyebrow strong {
  font-weight: 700;
}

.mobile-download-copy h2 {
  margin: 0 0 12px;
  font-size: 65px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.mobile-download-copy h2 span {
  display: block;
  color: #d40082;
}

.mobile-download-copy > p {
  width: 360px;
  max-width: 100%;
  margin: 0 0 25px;
  font-size: 18px;
  line-height: 1.08;
}

.mobile-download-info {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 24px;
}

.mobile-download-qr {
  width: 94px;
  height: 94px;
  display: block;
}

.mobile-download-action {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  font-size: 14px;
}

.mobile-download-action button,
.telegram-promo-button,
.floating-promos button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.mobile-download-action img {
  width: 152px;
  height: 36px;
  display: block;
}

.mobile-download-copy small {
  display: block;
  font-size: 14px;
}

.telegram-promo-section {
  order: 2;
  padding: 20px 0;
  border-bottom: 10px solid #332a63;
  background: #151128;
}

.telegram-promo-button {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  display: block;
}

.telegram-promo-button img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-promos {
  position: fixed;
  left: 10px;
  bottom: 60px;
  z-index: 80;
  width: 60px;
}

.floating-promos button {
  width: 60px;
  display: block;
}

.floating-promos button + button {
  margin-top: 10px;
}

.floating-promos img {
  width: 60px;
  height: auto;
  display: block;
}

.seo-article-section {
  order: 3;
  padding: 64px 20px 72px;
  border-top: 1px solid #25143c;
  background:
    radial-gradient(circle at 14% 8%, rgb(132 37 230 / 18%), transparent 32%),
    radial-gradient(circle at 88% 34%, rgb(225 19 137 / 14%), transparent 30%),
    #0b0815;
}

.seo-article {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid #342249;
  border-radius: 30px;
  background: rgb(16 12 29 / 92%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 32%);
}

.community-section {
  order: 4;
  padding: 0 20px 82px;
  background:
    radial-gradient(circle at 8% 32%, rgb(132 37 230 / 18%), transparent 28%),
    radial-gradient(circle at 92% 62%, rgb(225 19 137 / 16%), transparent 30%),
    #0b0815;
}

.community-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.faq-panel,
.member-review-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #342249;
  border-radius: 30px;
  background: rgb(16 12 29 / 94%);
  box-shadow: 0 28px 70px rgb(0 0 0 / 30%);
}

.member-review-panel {
  margin-top: 34px;
}

.community-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.community-heading-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid #685080;
  border-radius: 15px;
  background: linear-gradient(145deg, #3b2454, #191121);
  box-shadow: 0 10px 26px rgb(0 0 0 / 30%);
}

.community-heading-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.community-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #f44bb1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.community-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #5a2e74;
  border-radius: 16px;
  background: #151023;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.faq-item.is-open {
  border-color: #e11389;
  box-shadow: 0 12px 30px rgb(150 24 132 / 16%);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: linear-gradient(105deg, #5b1685 0%, #9f147d 48%, #d51b7d 100%);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: linear-gradient(105deg, #681c94 0%, #b2178a 48%, #e6268c 100%);
}

.faq-question:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -4px;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .24s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: translateY(3px) rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .32s ease, opacity .22s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 18px 20px 20px;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.review-heading {
  margin-bottom: 12px;
}

.review-disclosure {
  margin: 0 0 24px 62px;
  color: #c9c3da;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.member-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.member-review-card {
  min-height: 214px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgb(255 65 176 / 42%), transparent 38%),
    linear-gradient(135deg, #342056 0%, #411b66 48%, #1c2c70 100%);
  box-shadow: 0 18px 42px rgb(0 0 0 / 25%);
}

.member-review-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 128px;
  height: 128px;
  border: 20px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  pointer-events: none;
}

.member-review-card header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.member-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  background: rgb(255 255 255 / 12%);
  color: #fff;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: 13px;
}

.member-avatar svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-review-card h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 15px;
}

.member-review-card header div span {
  color: #d8d0e8;
  font-size: 12px;
}

.member-review-card header b {
  padding: 4px 7px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  background: rgb(8 5 18 / 30%);
  color: #ffd1eb;
  font-size: 9px;
  letter-spacing: .08em;
}

.member-stars {
  margin: 15px 0 0 52px;
  color: #ffd044;
  font-size: 18px;
  letter-spacing: .14em;
  line-height: 1;
  text-shadow: 0 2px 10px rgb(255 186 0 / 35%);
}

.member-review-card p {
  margin: 13px 0 0;
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.site-footer {
  border-top: 8px solid #34275e;
  background: #0c0917;
  color: #fff;
}

.footer-quickbar {
  min-height: 62px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #332545;
  background: #151027;
}

.footer-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-quicklinks a {
  color: #d8d0e5;
  font-size: 13px;
  transition: color .2s ease;
}

.footer-quicklinks a:hover,
.footer-quicklinks a:focus-visible {
  color: #fff;
}

.footer-quickbar > p {
  margin: 0;
  color: #a99fba;
  font-size: 12px;
  white-space: nowrap;
}

.footer-main {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 30px;
}

.footer-brand-row {
  padding-bottom: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px dotted #544366;
}

.footer-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-brand > img {
  width: 190px;
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.footer-brand h2 {
  margin: 0 0 7px;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: 23px;
}

.footer-brand p {
  max-width: 720px;
  margin: 0;
  color: #b9b0c8;
  font-size: 13px;
  line-height: 1.6;
}

.footer-age {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 2px solid #e11389;
  border-radius: 50%;
  color: #fff;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: 20px;
  box-shadow: 0 0 22px rgb(225 19 137 / 24%);
}

.footer-columns {
  padding: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  border-bottom: 1px dotted #544366;
}

.footer-column + .footer-column {
  padding-left: 4px;
}

.footer-column > header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-column-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid #5c426f;
  border-radius: 12px;
  background: linear-gradient(145deg, #351b4e, #181020);
}

.footer-column-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.footer-column h2 {
  margin: 0 0 3px;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: 17px;
}

.footer-column header p {
  margin: 0;
  color: #9489a6;
  font-size: 11px;
}

.footer-column article {
  padding: 13px 0;
  border-top: 1px solid rgb(255 255 255 / 7%);
}

.footer-column article h3 {
  margin: 0 0 6px;
  color: #e6dff0;
  font-size: 12px;
}

.footer-column article p {
  margin: 0;
  color: #91869f;
  font-size: 11px;
  line-height: 1.55;
}

.footer-help-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.footer-help-buttons button {
  min-height: 52px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #5b416f;
  border-radius: 12px;
  background: linear-gradient(145deg, #271638, #161021);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.footer-help-buttons button:hover {
  border-color: #e11389;
}

.footer-help-buttons button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer-help-buttons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer-help-buttons span {
  font-size: 12px;
  font-weight: 700;
}

.footer-help-buttons small {
  display: block;
  margin-bottom: 2px;
  color: #9f95ae;
  font-size: 9px;
  font-weight: 400;
}

.footer-safety-note {
  padding: 12px;
  border: 1px solid rgb(225 19 137 / 28%);
  border-radius: 12px;
  background: rgb(225 19 137 / 8%);
}

.footer-safety-note strong,
.footer-safety-note span {
  display: block;
}

.footer-safety-note strong {
  margin-bottom: 4px;
  color: #ff83c7;
  font-size: 11px;
}

.footer-safety-note span {
  color: #9e93ad;
  font-size: 10px;
  line-height: 1.5;
}

.footer-providers {
  padding: 34px 0 26px;
  border-bottom: 1px dotted #544366;
}

.footer-providers > header {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.footer-providers > header span {
  display: block;
  margin-bottom: 4px;
  color: #e11389;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.footer-providers > header h2 {
  margin: 0;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: 21px;
}

.footer-providers > header p {
  margin: 0;
  color: #8f859e;
  font-size: 11px;
}

.footer-provider-group {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 115px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgb(255 255 255 / 6%);
}

.footer-provider-group h3 {
  margin: 0;
  color: #9c91ac;
  font-size: 11px;
  letter-spacing: .05em;
}

.footer-provider-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.footer-provider-logos > span {
  min-width: 0;
  height: 58px;
  padding: 4px 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 10px;
  background: #161121;
}

.footer-provider-logos img {
  max-width: 100%;
  width: auto;
  height: 44px;
  display: block;
  object-fit: contain;
  filter: saturate(.86) brightness(.94);
  opacity: .9;
}

.footer-trust-row {
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.footer-trust-row > span {
  min-height: 56px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #332743;
  border-radius: 12px;
  background: #13101d;
  color: #948a9f;
  font-size: 10px;
  line-height: 1.3;
}

.footer-trust-row b {
  color: #fff;
  font-size: 15px;
}

.footer-bottom {
  min-height: 58px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2e243d;
  background: #08060f;
}

.footer-bottom p {
  margin: 0;
  color: #756c80;
  font-size: 10px;
}

.seo-article-header {
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid #342249;
}

.seo-article h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.13;
}

.seo-article h2 {
  margin: 46px 0 18px;
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-family: "GilroyBold", Arial, sans-serif;
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.22;
}

.article-heading-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid #51406a;
  border-radius: 13px;
  background: linear-gradient(145deg, #302047, #171121);
  box-shadow: 0 8px 22px rgb(0 0 0 / 28%);
}

.article-heading-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.seo-article p {
  margin: 0 0 17px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.seo-article strong {
  color: #fff;
  font-weight: 700;
}

.article-collapsible[hidden] {
  display: none;
}

.article-collapsible:not([hidden]) {
  animation: article-reveal .34s ease-out;
}

.article-toggle {
  width: 54px;
  height: 54px;
  margin: 34px auto 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #685080;
  border-radius: 50%;
  background: linear-gradient(145deg, #342349, #171120);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgb(0 0 0 / 34%);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.article-toggle:hover {
  border-color: #fff;
  background: #35254a;
  transform: translateY(2px);
}

.article-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.article-toggle-icon {
  width: 15px;
  height: 15px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .24s ease;
}

.article-toggle[aria-expanded="true"] .article-toggle-icon {
  transform: translateY(3px) rotate(225deg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@keyframes article-reveal {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-image {
  width: min(800px, 100%);
  margin: 36px auto 42px;
}

.article-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  display: block;
  border: 1px solid #513069;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  box-shadow: 0 18px 46px rgb(0 0 0 / 38%);
}

.article-image figcaption {
  margin-top: 0;
  padding: .4em;
  border-radius: 0 0 8px 8px;
  background: rgb(103 103 103 / 26%);
  color: #fff;
  font-size: .9em;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.demo-end {
  min-height: 90px;
  padding: 24px 20px;
  display: grid;
  place-items: center;
  border-top: 1px solid #28173a;
  background: #0b0714;
  color: #9d8fb3;
  font-size: 12px;
  letter-spacing: .08em;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-stage {
    height: 102px;
  }

  .brand {
    width: 165px;
    min-width: 165px;
  }

  .brand img {
    width: 150px;
  }

  .menu-list {
    min-width: 960px;
  }

  .mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    aspect-ratio: 16 / 6;
  }

  .announcement-inner {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .jackpot-main-border {
    gap: 28px;
  }

  .jackpot-play-text {
    font-size: 31px;
  }

  .jackpot-container {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .games-stage {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-download-eyebrow {
    font-size: 25px;
  }

  .mobile-download-copy h2 {
    font-size: clamp(38px, 5.5vw, 56px);
  }

  .member-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-help {
    grid-column: 1 / -1;
  }

  .footer-provider-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .utility-inner {
    width: calc(100% - 16px);
    gap: 8px;
  }

  .telegram-button span,
  .search-button,
  .utility-separator {
    display: none;
  }

  .telegram-button {
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .account-actions {
    gap: 5px;
  }

  .account-button {
    min-width: 66px;
    padding: 0 11px;
    font-size: 10px;
  }

  .nav-inner {
    width: calc(100% - 8px);
  }

  .brand {
    width: 122px;
    min-width: 122px;
  }

  .brand img {
    width: 112px;
  }

  .menu-arrow {
    display: none;
  }

  .hero {
    min-height: 210px;
    aspect-ratio: auto;
  }

  .slide img {
    object-position: 50% center;
  }

  .announcement {
    height: 60px;
  }

  .announcement-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }

  .ticker {
    width: 100%;
  }

  .ticker-group {
    gap: 32px;
    padding-right: 32px;
  }

  .jackpot-stage {
    min-height: 330px;
    padding: 20px 12px;
  }

  .jackpot-home-inner {
    padding: 14px;
    border-radius: 35px;
  }

  .jackpot-main-border {
    flex-direction: column;
    gap: 20px;
    padding: 24px 14px;
    border-radius: 32px;
  }

  .jackpot-play-section {
    align-items: center;
    margin-left: 0;
  }

  .jackpot-container {
    width: 100%;
    font-size: clamp(23px, 7vw, 36px);
    letter-spacing: 2px;
  }

  .mobile-download-section,
  .mobile-download-inner {
    min-height: 0;
  }

  .seo-article-section {
    padding: 34px 12px 40px;
  }

  .community-section {
    padding: 0 12px 42px;
  }

  .faq-panel,
  .member-review-panel {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .member-review-panel {
    margin-top: 22px;
  }

  .community-heading {
    margin-bottom: 20px;
  }

  .community-heading-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
  }

  .community-heading-icon img {
    width: 25px;
    height: 25px;
  }

  .community-heading h2 {
    font-size: 25px;
  }

  .faq-question {
    min-height: 58px;
    padding: 14px 15px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 15px;
    font-size: 14px;
  }

  .review-disclosure {
    margin: 0 0 20px;
  }

  .member-review-grid {
    grid-template-columns: 1fr;
  }

  .member-review-card {
    min-height: 0;
  }

  .footer-quickbar,
  .footer-brand-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    width: calc(100% - 24px);
    padding-top: 28px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-brand > img {
    width: 160px;
  }

  .footer-brand h2 {
    font-size: 20px;
  }

  .footer-age {
    position: absolute;
    right: 18px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-help {
    grid-column: auto;
  }

  .footer-column + .footer-column {
    padding-left: 0;
  }

  .footer-provider-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-provider-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-providers > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-trust-row {
    grid-template-columns: 1fr;
  }

  .seo-article {
    padding: 26px 18px 30px;
    border-radius: 20px;
  }

  .seo-article-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .seo-article h1 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .seo-article h2 {
    margin-top: 36px;
    padding-left: 0;
    font-size: 23px;
  }

  .article-heading-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 11px;
  }

  .article-heading-icon img {
    width: 25px;
    height: 25px;
  }

  .seo-article p {
    font-size: 15px;
    line-height: 1.72;
  }

  .article-toggle {
    width: 48px;
    height: 48px;
    margin-top: 28px;
  }

  .article-image {
    margin: 28px auto 34px;
  }

  .article-image img {
    border-radius: 14px;
  }

  .mobile-download-inner {
    width: calc(100% - 28px);
    padding: 28px 0 32px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mobile-download-visual {
    justify-content: center;
  }

  .mobile-download-visual > img {
    width: min(440px, 100%);
  }

  .mobile-download-copy {
    padding: 0;
    text-align: center;
  }

  .mobile-download-eyebrow {
    font-size: 22px;
  }

  .mobile-download-copy h2 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .mobile-download-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .mobile-download-info {
    justify-content: center;
  }

  .telegram-promo-section {
    padding: 12px 0;
    border-bottom-width: 6px;
  }

  .telegram-promo-button {
    width: calc(100% - 20px);
  }

  .floating-promos {
    left: 6px;
    bottom: 24px;
    width: 48px;
  }

  .floating-promos button,
  .floating-promos img {
    width: 48px;
  }

  .floating-promos button + button {
    margin-top: 7px;
  }

  .jackpot-border-container {
    padding: 2px 8px 8px;
  }

  .games-stage {
    padding-right: 8px;
    padding-left: 8px;
  }

  .game-section-heading {
    gap: 10px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .game-section-heading h2 {
    font-size: 17px;
  }

  .game-section-heading > button {
    min-width: 132px;
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .ticker-track.is-running {
    animation: none !important;
  }
}

/* Footer copied from the Nexabase reference structure. */
.site-footer {
  border-top: 0;
  background:
    radial-gradient(circle at 0 5%, rgb(92 9 20 / 16%), transparent 28%),
    #080808;
  color: #858b98;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-quickbar,
.footer-main {
  width: min(1170px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.footer-quickbar {
  min-height: 72px;
  padding: 24px 0 20px;
  border-bottom: 1px dotted #343434;
  background: transparent;
}

.footer-quicklinks {
  gap: 0;
}

.footer-quicklinks a {
  padding: 0 13px;
  border-right: 1px solid #3d3540;
  color: #85818b;
  font-size: 12px;
}

.footer-quicklinks a:first-child {
  padding-left: 0;
}

.footer-quicklinks a:last-child {
  border-right: 0;
}

.footer-quickbar > p {
  color: #777582;
  font-size: 12px;
}

.footer-main {
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
}

.footer-brand-row {
  display: none;
}

.footer-columns {
  order: 1;
  padding: 30px 0 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px dotted #343434;
}

.footer-column,
.footer-column + .footer-column {
  padding: 0 26px;
  border-left: 1px solid #292929;
}

.footer-column:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-column:last-child {
  padding-right: 0;
}

.footer-column > header {
  margin-bottom: 14px;
  gap: 14px;
}

.footer-column-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border: 0;
  border-radius: 0;
  background: none;
}

.footer-column-icon img {
  width: 40px;
  height: 40px;
  filter: grayscale(1);
  opacity: .78;
}

.footer-column h2 {
  color: #aaa9b1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.footer-column header p {
  color: #62616b;
  font-size: 11px;
}

.footer-column article {
  padding: 16px 0;
  border-top: 1px dotted #303030;
}

.footer-column article h3 {
  margin-bottom: 7px;
  color: #96949e;
  font-size: 15px;
  font-weight: 400;
}

.footer-column article p {
  color: #65636d;
  font-size: 10px;
  line-height: 1.55;
}

.footer-help-buttons {
  gap: 18px;
  margin: 22px 0 18px;
}

.footer-help-buttons button {
  min-height: 54px;
  padding: 7px 10px 7px 14px;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background: #030303;
}

.footer-help-buttons button:hover {
  border-color: transparent;
  background: #111;
}

.footer-help-buttons img {
  width: 22px;
  height: 36px;
  filter: none;
}

.footer-help-buttons span {
  color: #b5b3bb;
  font-size: 11px;
}

.footer-help-buttons small {
  color: #b5b3bb;
  font-size: 10px;
}

.footer-socials {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.footer-socials button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  display: block;
}

.footer-contact-list {
  padding-top: 12px;
  border-top: 1px dotted #303030;
}

.footer-contact-list p {
  margin: 0 0 7px;
  color: #62616a;
  font-size: 10px;
}

.footer-contact-list strong {
  color: #898690;
}

.footer-trust-row {
  order: 2;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  border-bottom: 1px dotted #343434;
}

.footer-trust-row section {
  min-height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-trust-row h3 {
  margin: 0 0 12px;
  color: #777581;
  font-size: 12px;
  font-weight: 400;
}

.footer-trust-row section > strong {
  display: inline-grid;
  min-width: 88px;
  height: 38px;
  place-items: center;
  border: 1px solid #292929;
  color: #777;
  font-size: 16px;
  letter-spacing: .12em;
}

.footer-trust-row section > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-trust-row img {
  display: block;
  filter: grayscale(1);
  opacity: .66;
}

.footer-providers {
  order: 3;
  padding: 24px 0 12px;
  border-bottom: 0;
}

.footer-providers > header {
  margin-bottom: 18px;
  display: block;
}

.footer-providers > header span {
  margin: 0;
  color: #777581;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-providers > header h2,
.footer-providers > header p {
  display: none;
}

.footer-provider-group {
  margin: 0 0 16px;
  padding: 19px 14px 12px;
  position: relative;
  display: block;
  border: 1px solid #292929;
  border-radius: 6px;
}

.footer-provider-group h3 {
  margin: 0;
  padding: 0 7px;
  position: absolute;
  top: -8px;
  left: 13px;
  background: #080808;
  color: #777581;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-provider-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 2px;
}

.footer-provider-logos > span {
  width: 120px;
  height: 50px;
  padding: 2px 6px;
  border: 0;
  border-radius: 0;
  background: rgb(255 255 255 / 1.5%);
}

.footer-provider-logos img {
  width: 100%;
  height: 45px;
  filter: grayscale(1) brightness(1.32);
  opacity: .62;
}

.footer-provider-logos > span:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.footer-provider-compact {
  width: auto;
  min-width: 160px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
}

.footer-provider-compact .footer-provider-logos {
  flex-wrap: nowrap;
}

.footer-bottom {
  min-height: 54px;
  padding: 16px max(20px, calc((100% - 1170px) / 2));
  border-top: 1px solid #242424;
  background: #030303;
}

.footer-bottom p {
  color: #54515b;
  font-size: 10px;
}

@media (max-width: 980px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-help {
    grid-column: auto;
  }

  .footer-column,
  .footer-column + .footer-column {
    padding: 26px 0;
    border-top: 1px dotted #303030;
    border-left: 0;
  }

  .footer-column:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-provider-logos {
    grid-template-columns: none;
  }
}

@media (max-width: 720px) {
  .footer-quickbar,
  .footer-main {
    width: calc(100% - 24px);
  }

  .footer-quickbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-quicklinks {
    gap: 9px 0;
  }

  .footer-quicklinks a {
    padding: 0 9px;
  }

  .footer-trust-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-provider-logos > span {
    width: calc(50% - 2px);
    max-width: 120px;
  }

  .footer-provider-compact {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    display: block;
  }

  .footer-provider-compact .footer-provider-logos {
    flex-wrap: wrap;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Compact navigation: four visible items, contained scrolling, separate panels. */
@media (max-width: 980px) {
  html, body { width: 100%; min-width: 0; }
  .site-header, #top, .site-footer { width: 100%; min-width: 0; max-width: 100%; }
  #top > section, .games-content, .game-section { min-width: 0; max-width: 100%; }
  .nav-inner { min-width: 0; }
  .main-navigation {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y pinch-zoom;
    scroll-snap-type: x proximity;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }
  .main-navigation:focus-visible { outline: 2px solid #02d9ec; outline-offset: -2px; }
  .menu-list {
    width: 100%;
    min-width: 0;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 25%;
  }
  .menu-item { scroll-snap-align: start; }
  .menu-link img { -webkit-user-drag: none; }
  .main-navigation.is-dragging { scroll-snap-type: none; }
  .main-navigation.is-dragging, .main-navigation.is-dragging * { cursor: grabbing; }
  .nav-stage > .mega-menu {
    display: none;
    width: calc(100% - 16px);
    max-width: 1170px;
    max-height: min(430px, calc(100dvh - 150px));
    margin: 0;
    transform: translate(-50%, 0);
    transition: none;
  }
  .nav-stage > .mega-menu.is-mobile-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .game-scroll { width: 100%; min-width: 0; }
  .hero { min-height: 0; aspect-ratio: 1920 / 613; }
  .slide img { object-fit: contain; }
  .jackpot-stage { min-height: 0; padding: 14px 10px; }
  .jackpot-home-inner,
  .home-progressive-jackpot,
  .jackpot-outer-container,
  .jackpot-inner-container,
  .jackpot-main-border,
  .jackpot-container,
  .jackpot-number-inner,
  .jackpot-border-container { width: 100%; min-width: 0; max-width: 100%; }
  .jackpot-home-inner { padding: 8px; border-radius: 28px; }
  .home-progressive-jackpot { padding: 6px; border-radius: 24px; }
  .jackpot-outer-container, .jackpot-inner-container { padding: 6px; border-radius: 26px; }
  .jackpot-main-border { flex-direction: column; padding: 12px 6px; gap: 12px; border-width: 2px; border-radius: 24px; }
  .jackpot-play-section { align-items: center; margin-left: 0; min-width: 0; max-width: 100%; }
  .jackpot-play-text { font-size: clamp(22px, 7vw, 30px); }
  .jackpot-container { padding: 6px; font-size: clamp(16px, 5.4vw, 26px); letter-spacing: .5px; }
  .jackpot-number-inner { padding: 6px; }
  .jackpot-border-container { align-items: center; padding: 6px 2px; border-width: 2px; line-height: 1.3; }
  .jackpot-currency { margin-right: 6px; font-size: .85em; }
}

@media (max-width: 720px) {
  .utility-inner { width: calc(100% - 12px); gap: 4px; }
  .utility-actions { min-width: 0; }
  .telegram-button { width: 28px; margin-right: 4px; }
  .icon-button { width: 25px; }
  .language-trigger { width: 36px; }
  .account-actions { gap: 4px; flex-shrink: 0; }
  .account-button { min-width: 58px; padding-inline: 8px; font-size: 9px; }
  .nav-stage { height: 82px; }
  .nav-inner { width: calc(100% - 8px); }
  .brand { width: 84px; min-width: 84px; }
  .brand img { width: 78px; max-width: 100%; }
  .menu-link { padding: 8px 2px; gap: 4px; }
  .menu-link img { width: 26px; height: 26px; }
  .menu-link span { max-width: 100%; min-height: 24px; font-size: 10px; line-height: 1.2; }
  .nav-stage > .mega-menu { padding: 12px; }
  .mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .provider-card { height: 68px; }

  .slide-dots { bottom: 8px; }
  .slide-dot { width: 9px; height: 9px; }
  .games-stage { padding-inline: 10px; }
  .game-section-heading { padding-inline: 4px; gap: 8px; }
  .game-section-heading h2 { font-size: 18px; }
  .game-section-heading > button { min-width: 0; padding-inline: 12px; font-size: 11px; }
  .seo-article, .community-inner, .mobile-download-inner { min-width: 0; max-width: 100%; }
}

.footer-trust-row .footer-certification-logo {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
  filter: none;
  opacity: 1;
}
