:root {
  --bg: #000000;
  --accent: #40b840;
}
/* ── Install-progress overlay ─────────────────────────────────────────────── */
.install-progress {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.install-progress[aria-hidden="false"] {
  display: flex;
}
.install-progress__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.install-progress__ring-wrap {
  position: relative;
  width: 120px;
  height: 120px;
}
.install-progress__svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.install-progress__track {
  fill: none;
  stroke: #333;
  stroke-width: 7;
}
.install-progress__fill {
  fill: none;
  stroke: var(--accent, #40b840);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
  transition: stroke-dashoffset 0.25s linear;
}
.install-progress__pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: bold;
  color: #fff;
}
.install-progress__label {
  font-size: 1em;
  color: #ccc;
  letter-spacing: 0.04em;
}
/* ── Install-success overlay ───────────────────────────────────────── */
.install-success {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.install-success[aria-hidden="false"] {
  display: flex;
}
.install-success__box {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 36px 24px 28px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.install-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent, #40b840);
  color: #fff;
  font-size: 32px;
  line-height: 64px;
  font-weight: bold;
}
.install-success__title {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}
.install-success__desc {
  font-size: 0.9em;
  color: #aaa;
  line-height: 1.4;
}
.install-success__btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05em;
  height: 56px;
  background: var(--accent, #40b840);
  border: none;
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-success__box .install-success__btn {
  height: 56px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  background: var(--bg, #000000);
  color: #ffffff;
  min-height: 100vh;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  overflow: clip;
  max-width: 100%;
  display: block;
}

ul,
li {
  list-style: none;
}

.row {
  display: flex;
}

.page {
  background: var(--bg, #000000);
  overflow: hidden;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}

.topbar {
  background-color: var(--bg, #000000);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  cursor: pointer;
}

.topbar__inner {
  max-width: 750px;
  margin: 0 auto;
}

.topbar__row {
  padding: 12px 16px;
  color: #ffffff;
  justify-content: space-between;
  align-items: center;
}

.topbar__logo {
  width: auto;
  height: 33px;
}

.topbar__cta {
  background: var(--accent, #40b840);
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.hero {
  width: 100%;
  padding-top: 56px;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 0;
}

.cta {
  padding: 16px 0 22px 0;
}

.cta__row {
  height: 48px;
  width: 100%;
}

.cta__group {
  display: flex;
  margin: 0 16px;
}

.cta__button {
  background: var(--accent, #40b840);
  flex: 1;
  height: 48px;
  padding: 0 10px;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #ffffff;
}

.cta__text {
  font-size: 1em;
  font-weight: bold;
  color: #ffffff;
}


.cta__note {
  text-align: right;
  font-size: 10px;
  color: var(--accent, #40b840);
  margin: 6px 16px 0 0;
}

.cta__count {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(153, 153, 153, 1);
  text-align: center;
}

.trust {
  background: var(--bg, #000000);
  padding: 14px 0 22px 0;
}

.trust__inner {
  text-align: center;
}

.trust__title {
  font-size: 24px;
  color: #ffffff;
  padding-bottom: 14px;
}

.trust__badge {
  height: 38px;
  margin: 0 auto;
}

.trust__provider {
  height: 24px;
  padding-top: 16px;
  margin: 0 auto;
}

.games {
  padding: 26px 20px 30px 20px;
  color: #ffffff;
}

.games__header {
  text-align: center;
}

.games__title {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.games__subtitle {
  padding: 4px 0 10px 0;
  font-size: 14px;
  color: rgba(208, 227, 245, 0.6);
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.games__item {
  margin-top: 0;
}

.games__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 0;
}

.services {
  padding: 0 20px 24px 20px;
  color: #ffffff;
}

.services__header {
  text-align: center;
}

.services__title {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.services__subtitle {
  padding: 4px 0 12px 0;
  font-size: 14px;
  color: rgba(208, 227, 245, 0.6);
}

.services__grid {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.services__item {
  flex: 0 0 48%;
  height: 186px;
  padding-top: 10px;
}

.services__card {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  background: rgb(24, 26, 44);
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
}

.services__icon {
  width: 80px;
  height: 80px;
  margin-top: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.services__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.services__text {
  padding: 10px 10px 30px 10px;
  font-size: 13px;
  color: rgba(208, 227, 245, 0.6);
  text-align: center;
}

.footer {
  padding: 0 19px 96px 19px;
}

.footer__note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(208, 227, 245, 0.4);
  line-height: 16px;
  text-align: center;
}

.sticky {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  transform: translateY(110%);
  transition: transform 0.2s ease;
}

.sticky.is-visible {
  transform: translateY(0);
}

.sticky__inner {
  background-color: var(--bg, #000000);
  padding: 11px 0 21px 0;
  max-width: 750px;
  margin: 0 auto;
  display: flex;
}

.sticky__inner .cta__button {
  margin: 0 16px;
  width: calc(100% - 32px);
}


@media screen and (min-width: 750px) {
  .games__item {
    height: 200px;
  }

  .games__img {
    width: 152px;
    height: 200px;
  }

  .footer__note {
    font-size: 1.1rem;
    line-height: 22px;
  }
}

@media screen and (max-width: 749px) {
  .games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .games__img {
    width: 100%;
    height: auto;
  }
}
