:root {
  --page: #edf1f3;
  --ink: #25373c;
  --muted: #617276;
  --green: #008e77;
  --deep: #004e48;
  --orange: #ff7900;
  --line: #dce5e7;
  --micro: 220ms;
  --control: 320ms;
  --disclosure: 450ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  padding-top: 75px;
}
a {
  color: var(--green);
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: 0;
  background: transparent;
  color: inherit;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f5a000;
  outline-offset: 4px;
}
p,
h1,
h2,
h3,
ul,
ol {
  margin: 0;
}
h1 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}
h3 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
p,
ul,
ol,
h2,
h3 {
  width: 100%;
  max-width: none;
}
ul,
ol {
  padding-left: 23px;
}
li + li {
  margin-top: 10px;
}
li::marker {
  color: var(--green);
}
[hidden] {
  display: none !important;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 75px;
  background: rgba(241, 245, 246, 0.98);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 164px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 27px;
  height: 100%;
  margin-left: auto;
}
.desktop-nav > a {
  color: var(--ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  padding-top: 3px;
  font-size: 14px;
}
.desktop-nav > a[aria-current] {
  border-color: var(--green);
  color: var(--green);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}
.desktop-actions {
  display: flex;
  gap: 10px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: 14px;
  max-width: 100%;
  text-align: center;
  border: 1px solid transparent;
}
.button-green {
  background: var(--green);
}
.locale {
  font-size: 12px;
  font-weight: 700;
}
.dock-launch {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  min-height: 42px;
}
.dock-launch b {
  border-radius: 50%;
  background: #d8ece5;
  color: var(--deep);
  min-width: 22px;
  height: 22px;
  line-height: 22px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  margin: 5px auto;
}
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 15px 20px 24px;
  background: #fff;
  max-height: calc(100dvh - 60px);
  overflow: auto;
  box-shadow: 0 18px 25px #193d401c;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.menu-scrim {
  position: fixed;
  z-index: 40;
  inset: 75px 0 0;
  background: #14373766;
}
.page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  align-items: start;
}
.content-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar {
  position: sticky;
  top: 95px;
  min-width: 0;
  max-height: calc(100dvh - 115px);
  overflow: auto;
  scrollbar-width: thin;
}
.side-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.side-card + .side-card {
  margin-top: 20px;
}
.side-title {
  background: #e5ecec;
  padding: 11px 15px;
  color: #58716f;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.045em;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: var(--ink);
  border-bottom: 1px solid #edf1f2;
  font-size: 13px;
  min-height: 44px;
}
.side-link img {
  flex: 0 0 22px;
  object-fit: contain;
}
.article-nav a {
  display: block;
  padding: 9px 14px;
  font-size: 12px;
  line-height: 1.45;
  color: #536668;
  border-left: 3px solid transparent;
}
.article-nav a[aria-current="true"] {
  border-left-color: var(--green);
  background: #e5f4ee;
  color: var(--deep);
  font-weight: 700;
}
.side-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.side-game img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.side-responsible {
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 381px;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  background: #003f3b;
  padding: 54px 30px;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 42, 40, 0.58),
    rgba(0, 42, 40, 0.16) 62%,
    transparent 78%
  );
}
.hero-copy {
  width: 62%;
  color: white;
}
.hero-lead {
  margin-top: 16px;
  line-height: 1.6;
  color: #e1eeeb;
  font-size: 15px;
}
.content-section {
  padding: 20px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e0e6e7;
  scroll-margin-top: 95px;
  min-width: 0;
}
.content-section > h2 {
  margin-bottom: 20px;
  background: none;
  border: 0;
  min-height: 0;
}
.section-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
}
.section-body > h3 {
  margin: 0;
}
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  scrollbar-color: var(--green) #e7efed;
  scrollbar-width: thin;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
  line-height: 1.6;
}
th,
td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e1e8e8;
  min-width: 140px;
}
th {
  background: var(--deep);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
td:first-child {
  font-weight: 600;
  background: #f1f6f4;
  border-left: 3px solid #bcdbd0;
}
tbody tr:nth-child(even) td {
  background: #f7faf9;
}
tbody tr:last-child td {
  border-bottom: 0;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
.comparison {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  min-width: 0;
}
.comparison > p:first-of-type {
  font-weight: 700;
  font-size: 18px;
  padding-left: 30px;
}
.comparison-sign {
  position: absolute;
  top: 17px;
  left: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.comparison.cons {
  border-top-color: #aa6244;
}
.cons .comparison-sign {
  color: #aa6244;
}
.review-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f7faf9;
}
.review-card p:last-child {
  font-weight: 700;
  color: var(--deep);
  font-size: 13px;
}
.review-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.byline {
  background: #f0f5f4;
  border-left: 3px solid #779c93;
  padding: 14px 16px;
  font-size: 13px;
  color: #4b625d;
}
.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding: 0 32px 17px 0;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "";
  position: absolute;
  right: 7px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}
.faq-item[open] summary:after {
  transform: rotate(225deg);
}
.faq-answer {
  padding: 0 0 20px;
}
.promo-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  background: #004039;
  border-radius: 6px;
  padding: 32px 30px;
  display: flex;
  align-items: flex-end;
}
.promo-banner:after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, #003a35b8, transparent 80%);
}
.promo-copy {
  color: white;
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.promo-title {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}
.promo-copy p:not(.promo-title) {
  font-size: 14px;
  color: #e1eeeb;
}
.copy-right {
  justify-content: flex-end;
}
.copy-right:after {
  background: linear-gradient(270deg, #003a35b8, transparent 80%);
}
.store-pair {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-button {
  border-radius: 7px;
  background: #fff;
  color: var(--deep);
  min-height: 62px;
  min-width: 190px;
  padding: 10px 16px;
  justify-content: flex-start;
}
.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3px;
  font-size: 12px;
  white-space: nowrap;
}
.store-button strong {
  font-size: 15px;
}
.platform-mark {
  width: 26px;
  font-size: 24px;
}
.game-rail {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-width: 0;
}
.rail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.rail-heading p {
  font-size: 18px;
  font-weight: 700;
}
.rail-toggle {
  font-size: 12px;
  background: #e5f2ed;
  color: var(--deep);
  border-radius: 4px;
  min-height: 36px;
  padding: 6px 12px;
}
.rail-window {
  width: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #7fb9a5 transparent;
}
.rail-track {
  display: flex;
  width: max-content;
  gap: 16px;
}
.game-group {
  display: flex;
  gap: 14px;
}
.game-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 132px;
  flex: 0 0 132px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.game-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 7px;
}
.game-card span {
  padding-bottom: 4px;
  min-height: 39px;
}
.site-footer {
  background: #e3eaeb;
  border-top: 1px solid #d5e0e0;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 32px;
}
.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 280px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-grid nav strong {
  margin-bottom: 5px;
  color: var(--ink);
}
.footer-grid nav a {
  color: #486563;
}
.responsible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}
.age {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--deep);
  border-radius: 50%;
  font-size: 15px;
  color: var(--deep);
  font-weight: 700;
  flex-shrink: 0;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #cbdada;
  padding: 20px 0;
  font-size: 12px;
  color: #5f7472;
}
.service-main {
  padding-top: 20px;
  padding-bottom: 40px;
}
.service-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.service-block h1 {
  margin-bottom: 25px;
}
.service-qa {
  margin-top: 25px;
}
.service-qa h2 {
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 15px;
}
.service-block > p {
  margin: 20px 0;
}
.utility-cluster {
  position: fixed;
  z-index: 35;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.utility-cluster > a,
.utility-cluster > button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 3px 10px #16483b30;
}
.utility-cluster img {
  filter: brightness(0) invert(1);
}
.utility-main {
  font-size: 22px;
}
.bonus-dock {
  position: fixed;
  z-index: 60;
  right: 30px;
  top: 85px;
  width: 410px;
  max-width: calc(100vw - 32px);
  max-height: calc(100dvh - 105px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 18px 70px #073b3b36;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.panel-heading strong {
  font-size: 20px;
}
.panel-heading button {
  min-width: 40px;
  min-height: 40px;
  font-size: 28px;
}
.dock-offer {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.dock-offer p {
  font-size: 13px;
}
.offer-wheel {
  border: 0;
  border-radius: 10px;
  padding: 24px;
  max-width: calc(100vw - 28px);
  width: 500px;
  max-height: calc(100dvh - 30px);
  overflow: auto;
  color: var(--ink);
}
.offer-wheel::backdrop {
  background: #042d2cbf;
}
.offer-wheel > p {
  font-size: 13px;
  margin: 10px 0 20px;
}
.wheel-stage {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: 15px auto 25px;
}
.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #00735f 0deg 72deg,
    #045347 72deg 144deg,
    #df800c 144deg 216deg,
    #006b58 216deg 288deg,
    #0f9380 288deg 360deg
  );
  border: 7px solid #efc580;
  position: relative;
  box-shadow: 0 0 0 4px #006a55;
}
.wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 43%;
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(calc(var(--i)*72deg - 54deg));
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-align: right;
  padding-right: 15px;
  white-space: nowrap;
}
.wheel-pointer {
  position: absolute;
  z-index: 2;
  left: calc(50% - 12px);
  top: -12px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--orange);
}
.wheel-results > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -70px;
  background: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}
.noscript-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 16px;
}
@media (min-width: 1360px) and (max-width: 1500px) {
  .header-inner {
    gap: 18px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .hero {
    padding: 36px 25px;
  }
  .hero-copy {
    width: 64%;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .promo-title {
    font-size: 27px;
  }
  .promo-copy {
    width: 67%;
  }
  .promo-banner {
    padding: 28px 25px;
  }
  .utility-cluster {
    right: 10px;
  }
}
@media (max-width: 1359px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .sidebar {
    display: none !important;
  }
  .content-column {
    width: 100%;
    max-width: none;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-inner {
    gap: 18px;
  }
  .hero-copy {
    width: 60%;
  }
  .hero {
    min-height: 381px;
  }
  .utility-cluster {
    right: 8px;
    bottom: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 1100px) {
  .desktop-actions,
  .locale {
    display: none;
  }
  .desktop-nav {
    margin-left: auto;
  }
  .header-tools {
    margin-left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header {
    height: 60px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand img {
    width: 137px;
  }
  .desktop-nav {
    display: none;
  }
  .header-tools {
    margin-left: auto;
    gap: 8px;
  }
  .dock-launch {
    gap: 5px;
  }
  .dock-launch > span {
    display: none;
  }
  .menu-scrim {
    top: 60px;
  }
  .page-layout {
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .content-column {
    gap: 20px;
  }
  .hero {
    padding: 190px 20px 28px;
    min-height: 0;
    background: #004239;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #004239 0%,
      #004239 43%,
      rgba(0, 66, 57, 0.1) 77%,
      transparent
    );
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .content-section {
    padding: 20px;
    scroll-margin-top: 80px;
  }
  .pros-cons,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .comparison {
    padding: 18px;
  }
  .promo-banner {
    padding: 180px 20px 25px;
    min-height: 0;
  }
  .promo-banner:after,
  .copy-right:after {
    background: linear-gradient(
      0deg,
      #004039 0%,
      #004039 38%,
      rgba(0, 64, 57, 0.12) 80%,
      transparent
    );
  }
  .promo-copy {
    width: 100%;
  }
  .promo-title {
    font-size: 27px;
    line-height: 33px;
  }
  .promo-copy p:not(.promo-title) {
    font-size: 14px;
  }
  .game-rail {
    padding: 20px;
  }
  .game-card {
    width: 120px;
    flex-basis: 120px;
  }
  .game-card img {
    width: 120px;
    height: 120px;
  }
  .store-pair {
    flex-direction: column;
    width: 100%;
    max-width: 290px;
  }
  .store-button {
    width: 100%;
    min-width: 0;
  }
  .footer-grid {
    gap: 27px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .service-block {
    padding: 20px;
  }
  .service-block h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .service-qa h2 {
    font-size: 21px;
    line-height: 28px;
  }
  .bonus-dock {
    top: 70px;
    right: 16px;
    max-height: calc(100dvh - 85px);
  }
  .utility-cluster {
    position: static;
    flex-direction: row;
    justify-content: center;
    background: #e3eaeb;
    padding: 12px 16px;
  }
  .offer-wheel {
    padding: 20px;
  }
  .wheel-label {
    font-size: 10px;
    padding-right: 10px;
  }
  .mobile-actions .button {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 400px) {
  .brand img {
    width: 123px;
  }
  .header-tools {
    gap: 3px;
  }
  .dock-launch {
    padding: 0 5px;
  }
  .header-inner {
    gap: 8px;
  }
  .hero,
  .promo-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    grid-column: 1;
  }
  .content-section {
    padding: 20px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .game-card {
    width: 112px;
    flex-basis: 112px;
  }
  .game-card img {
    width: 112px;
    height: 112px;
  }
  .table-wrap td,
  .table-wrap th {
    min-width: 128px;
    padding: 12px;
  }
  .wheel-label {
    font-size: 9px;
  }
  .offer-wheel {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 220px;
  }
  .promo-banner {
    padding-top: 210px;
  }
}
@media (max-width: 480px) {
  h1,
  h2,
  h3 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.store-pair {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 100%;
}
.store-pair > .store-button {
  flex: 0 0 190px;
  width: 190px;
  min-width: 190px;
  min-height: 62px;
  padding: 11px 16px;
  gap: 12px;
  justify-content: flex-start;
}
.store-button > .platform-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.store-button > .platform-mark > img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.store-button > .store-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
}
.store-button > .store-label > span,
.store-button > .store-label > strong {
  display: block;
  white-space: nowrap;
}
.store-button > .store-label > strong {
  font-size: 15px;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .store-pair {
    flex-direction: column;
    width: 100%;
    max-width: 290px;
  }
  .store-pair > .store-button {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }
}

:root {
  --green: #007763;
}
.button {
  color: #172d28;
}
.button-green {
  color: #fff;
}
.store-button {
  color: var(--deep);
}
.wheel-disc {
  background: conic-gradient(
    #00735f 0deg 72deg,
    #045347 72deg 144deg,
    #df800c 144deg 216deg,
    #006b58 216deg 288deg,
    #007763 288deg 360deg
  );
}
.wheel-label:nth-child(3) {
  color: #172d28;
}
html:not([data-interactions]) .menu-toggle,
html:not([data-interactions]) .dock-launch,
html:not([data-interactions]) .wheel-launch {
  display: none !important;
}
.is-disclosing {
  overflow: hidden !important;
}
.desktop-nav > a {
  position: relative;
  transition: color var(--control) var(--ease);
}
.desktop-nav > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--control) var(--ease);
}
.desktop-nav > a:focus-visible:after {
  transform: scaleX(1);
}
.mobile-menu nav a {
  transition:
    background-color var(--control) var(--ease),
    padding-left var(--control) var(--ease);
}
.mobile-menu nav a:focus-visible {
  background: #e5f4ee;
  padding-left: 9px;
}
.menu-toggle span {
  transition:
    transform var(--control) var(--ease),
    opacity var(--micro) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.button,
.dock-launch,
.rail-toggle,
.utility-cluster > button,
.utility-cluster > a,
.panel-heading > button {
  transition:
    transform var(--control) var(--ease),
    box-shadow var(--control) var(--ease),
    background-color var(--control) var(--ease);
}
.button:active,
.dock-launch:active,
.rail-toggle:active,
.utility-cluster > button:active,
.utility-cluster > a:active {
  transform: translateY(1px) scale(0.995);
}
.button:disabled {
  opacity: 0.62;
}
.game-card img,
.side-game img {
  transition:
    transform var(--control) var(--ease),
    box-shadow var(--control) var(--ease);
}
.game-card:focus-visible img,
.side-game:focus-visible img {
  transform: scale(0.985);
  box-shadow: 0 0 0 3px #008e77;
}
.content-section {
  position: relative;
}
.content-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(var(--green), #a5d3c4);
  transform: scaleY(1);
  transform-origin: top;
  pointer-events: none;
}
html[data-interactions] .content-section:before {
  transform: scaleY(0);
  transition: transform 600ms var(--ease);
}
html[data-interactions] .content-section.edge-seen:before {
  transform: scaleY(1);
}
.table-wrap td:first-child {
  border-left: 3px solid #83baa8;
}
.table-wrap:focus-visible td:first-child {
  border-left-color: var(--orange);
}
.table-wrap td {
  transition:
    background-color var(--control) var(--ease),
    border-color var(--control) var(--ease);
}
.comparison {
  border-top-width: 4px;
  background: linear-gradient(180deg, #edf7f1 0, #fff 84px);
}
.comparison.cons {
  background: linear-gradient(180deg, #faf0eb 0, #fff 84px);
}
.comparison-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #d3ede2;
  border-radius: 3px;
  font-size: 21px;
  top: 20px;
  left: 18px;
}
.cons .comparison-sign {
  background: #f1ddd0;
}
.faq-item summary:after {
  transition: transform var(--disclosure) var(--ease);
}
.faq-item summary[aria-expanded="false"]:after {
  transform: rotate(45deg);
}
.faq-item summary[aria-expanded="true"]:after {
  transform: rotate(225deg);
}
.game-repeat {
  pointer-events: none;
  user-select: none;
}
.game-rail[data-native="false"] .rail-window {
  overflow: hidden;
}
.game-rail[data-native="false"] .rail-track {
  animation: ivi-game-loop var(--rail-duration, 36s) linear infinite;
}
.game-rail[data-paused="true"] .rail-track {
  animation-play-state: paused;
}
.game-rail[data-native="true"] .rail-track {
  transform: none;
}
.rail-toggle {
  min-height: 44px;
  min-width: 60px;
  flex-shrink: 0;
}
.rail-heading p {
  width: auto;
}
@keyframes ivi-game-loop {
  to {
    transform: translateX(calc(-1 * var(--rail-distance)));
  }
}
.bonus-dock:not([hidden]) {
  animation: ivi-panel-in 320ms var(--ease);
}
.offer-wheel[open] {
  animation: ivi-panel-in 320ms var(--ease);
}
@keyframes ivi-panel-in {
  from {
    opacity: 0.65;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html:has(.offer-wheel[open]) {
  overflow: hidden;
}
.wheel-disc {
  container-type: inline-size;
}
.wheel-label {
  width: 50%;
  height: 28px;
  padding: 0;
  text-align: center;
  transform: translateY(-50%) rotate(var(--angle));
  font-size: clamp(10px, 3.8cqw, 12px);
  line-height: 1.15;
}
.wheel-label > span {
  position: absolute;
  left: 24%;
  width: 72%;
  top: 50%;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: none;
  transform: translateY(-50%) rotate(var(--flip));
  text-wrap: balance;
}
.wheel-results > div[hidden] {
  display: none !important;
}
@media (hover: hover) {
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
  }
  .mobile-menu nav a:hover {
    background: #e5f4ee;
    padding-left: 9px;
  }
  .game-card:hover img,
  .side-game:hover img {
    transform: scale(0.985);
    box-shadow: 0 0 0 3px #008e77;
  }
  .button:hover {
    box-shadow: 0 3px 9px #003d382c;
  }
  .table-wrap tr:hover td {
    background: #eaf5ef;
  }
  .table-wrap tr:hover td:first-child {
    border-left-color: var(--orange);
  }
}
@media (max-width: 767px) {
  .mobile-menu {
    padding: 15px 20px 24px;
  }
  .bonus-dock {
    max-width: calc(100% - 32px);
    width: 410px;
  }
  .wheel-stage {
    margin-bottom: 20px;
  }
  .wheel-label {
    font-size: clamp(10px, 3.8cqw, 12px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html[data-interactions] .content-section:before {
    transform: scaleY(1);
  }
  .game-rail .rail-track {
    animation: none !important;
    transform: none !important;
  }
  .game-repeat {
    display: none !important;
  }
  .game-rail .rail-window {
    overflow: auto !important;
  }
  .game-card img,
  .side-game img,
  .button {
    transform: none !important;
  }
}

.hero > picture,
.promo-banner > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
}
.hero > picture > img,
.promo-banner > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.hero,
.promo-banner {
  aspect-ratio: var(--art-ratio);
}
.hero h1 {
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 638px) {
  .hero {
    padding: 32px 25px;
    min-height: 381px;
  }
  .hero-copy {
    width: 58%;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      rgba(0, 25, 25, 0.24),
      rgba(0, 25, 25, 0.07) 62%,
      transparent
    );
  }
  .promo-banner {
    padding: 28px 25px;
    min-height: 260px;
  }
  .promo-copy {
    width: 65%;
  }
  .promo-banner:after {
    background: linear-gradient(90deg, rgba(0, 25, 25, 0.22), transparent 80%);
  }
  .promo-banner.copy-right:after {
    background: linear-gradient(270deg, rgba(0, 25, 25, 0.22), transparent 80%);
  }
}
@media (max-width: 637px) {
  .hero,
  .promo-banner {
    aspect-ratio: auto;
  }
  .hero {
    padding: max(250px, 70vw) 20px 28px;
    min-height: 0;
  }
  .promo-banner {
    padding: max(180px, 42vw) 20px 25px;
    min-height: 0;
  }
  .hero-copy,
  .promo-copy {
    width: 100%;
  }
  .hero > picture > img,
  .promo-banner > picture > img {
    object-position: 50% 0% !important;
  }
  .hero:after,
  .promo-banner:after,
  .promo-banner.copy-right:after {
    background: linear-gradient(
      0deg,
      rgba(0, 16, 18, 0.28),
      rgba(0, 16, 18, 0.04) 66%,
      transparent
    );
  }
}
@media (max-width: 360px) {
  .promo-copy > .button,
  .dock-offer > .button,
  .wheel-results .button {
    font-size: 12px;
    padding: 11px 10px;
    min-height: 44px;
    white-space: nowrap;
  }
}
@media (max-width: 637px) {
  .hero h1 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.1875;
  }
}

.content-column {
  container-type: inline-size;
}
.hero {
  aspect-ratio: auto;
}
@media (min-width: 638px) {
  .hero {
    min-height: max(381px, calc(100cqw * 941 / 1672));
  }
}

.editorial-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.hero-actions {
  margin-top: 24px;
}
.hero-actions > .button {
  font-size: 16px;
  padding: 13px 24px;
}
.promo-banner {
  height: max(340px, calc(100cqw * 736 / 2135));
  min-height: 0;
  aspect-ratio: auto;
  padding: 28px;
  align-items: center;
}
.promo-copy {
  width: 65%;
  gap: 16px;
}
.promo-title {
  font-size: clamp(30px, 3.8cqw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.promo-copy p:not(.promo-title) {
  font-size: 17px;
  line-height: 1.45;
  max-width: 440px;
}
.promo-copy > .button {
  font-size: 15px;
  min-height: 46px;
  padding: 12px 20px;
}
.promo-banner:after {
  background: linear-gradient(90deg, #002824b8, transparent 85%);
}
.promo-banner.copy-right:after {
  background: linear-gradient(270deg, #002824b8, transparent 85%);
}
.store-pair {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  max-width: none;
}
.store-pair > .store-button {
  flex: 0 1 210px;
  width: 210px;
  min-width: 195px;
  min-height: 64px;
  padding: 10px 12px;
  gap: 10px;
  background: #003f39;
  border: 1px solid #ffffff70;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px #001c2630;
}
.store-button > .store-label {
  font-size: 12px;
  line-height: 1.25;
  color: #fff;
}
.store-button > .store-label > strong {
  font-size: 16px;
  line-height: 1.2;
}
.store-button > .platform-mark,
.store-button > .platform-mark > img {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
}
.store-button:hover {
  background: #006651;
}
.final-app .promo-copy {
  width: 74%;
}
.final-app .promo-title {
  max-width: 540px;
}

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.bonus-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  min-width: 0;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  background: #f0f7f3;
  box-shadow: 0 4px 16px #004e4805;
}
.bonus-info-card:last-child {
  grid-column: 1/-1;
}
.bonus-info-card h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #005345;
  text-wrap: balance;
}
.bonus-info-card p,
.bonus-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.bonus-info-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--card-art);
  background-repeat: no-repeat;
  background-position: var(--card-position, right bottom);
  background-size: auto 290px;
  opacity: 0.2;
  filter: brightness(1.65) saturate(1.15);
  pointer-events: none;
}
.theme-welcome {
  --card-art: url("promo-casino-1.webp");
}
.theme-second {
  --card-art: url("promo-bonuses-2.webp");
  --card-position: left bottom;
  background: #f4f7ef;
}
.theme-reload {
  --card-art: url("promo-casino-3.webp");
  background: #fcf7eb;
  border-color: #ede0c2;
}
.theme-sport {
  --card-art: url("promo-casino-4.webp");
  --card-position: left bottom;
  background: #eef5f9;
}
.theme-offers {
  --card-art: url("promo-bonuses-1.webp");
}
.theme-free {
  --card-art: url("promo-index-4.webp");
  --card-position: left bottom;
  background: #f7f3eb;
}
.theme-terms {
  --card-art: url("promo-app-1.webp");
  background: #f1f4f6;
}
.byline {
  border: 1px solid #cae0d8;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 15px 18px;
  color: #194e43;
  background: #eaf4ee;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}
.byline[data-source-index="157"] {
  background: #004e48;
  color: #fff;
  border-color: #004e48;
}
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f9f6;
  gap: 18px;
  padding: 24px;
}
.review-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("promo-bonuses-1.webp") right bottom/auto 250px no-repeat;
  opacity: 0.12;
  filter: brightness(1.7);
  pointer-events: none;
}
.review-card-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d5e9df;
  color: #005344;
  font-weight: 700;
  font-size: 13px;
}
.review-source-tag {
  font-size: 11px;
  line-height: 1.5;
  color: #527266;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
.review-card blockquote p:last-child {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.review-card > p:last-child {
  padding-top: 16px;
  border-top: 1px solid #d6e4dd;
}
.light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("promo-app-1.webp");
  background-position:
    center,
    right bottom;
  background-size:
    cover,
    auto 100%;
  background-repeat: no-repeat;
}
body[data-page="index.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("promo-index-1.webp");
}
body[data-page="app.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("promo-app-final.webp");
}
body[data-page="bonuses.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("promo-bonuses-1.webp");
}
.comparison {
  background-image: linear-gradient(180deg, #edf7f1f5, #fffffff7), url("promo-casino-1.webp");
  background-size: cover;
  background-position: right bottom;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebf5, #fffffff7), url("promo-casino-2.webp");
}
.side-responsible {
  background-image: linear-gradient(#fffffff7, #fffffff2), url("promo-app-final.webp");
  background-position: right bottom;
  background-size: cover;
}

.utility-cluster {
  position: fixed;
  right: 16px;
  bottom: 20px;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: none;
}
.utility-cluster > a,
.utility-cluster > button {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  box-shadow: 0 4px 16px #003b3640;
}
.utility-cluster .wheel-launch {
  background: #005a4c;
  border: 2px solid #f3c56b;
}
.utility-cluster .utility-chat {
  background: var(--orange);
  color: #183d32;
}
.utility-cluster .scroll-top {
  position: relative;
  background: #fff;
  color: var(--deep);
  border: 1px solid #cde1d7;
  --scroll-progress: 0;
}
.scroll-top > svg {
  position: absolute;
  inset: 2px;
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
  fill: none;
  stroke-width: 2.5;
}
.scroll-track {
  stroke: #dbe9e1;
}
.scroll-meter {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--scroll-progress));
}
.scroll-top-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
  font-weight: 700;
}
.scroll-top-copy > span {
  font-size: 20px;
  line-height: 19px;
}
.scroll-top-copy small {
  font-size: 9px;
}
.wheel-disc {
  background: conic-gradient(
    #00735f 0deg 90deg,
    #045347 90deg 180deg,
    #df800c 180deg 270deg,
    #006b58 270deg 360deg
  );
}
.wheel-label {
  font-size: clamp(10px, 3.9cqw, 13px);
  height: 40px;
}
.wheel-label > span {
  left: 22%;
  width: 70%;
  text-wrap: balance;
}
.wheel-results strong {
  font-size: 23px;
  line-height: 1.3;
  color: var(--deep);
}
.wheel-results > div {
  padding: 20px;
  border: 1px solid #d1e5d9;
  border-radius: 10px;
  background: #eef7f1;
}
.coin-confetti {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 1px 2px #002c2430;
  will-change: transform, opacity;
}
.dock-offer {
  padding: 18px;
  border: 1px solid #d9e8df;
  border-radius: 10px;
  background:
    linear-gradient(100deg, #f6fbf8f7, #f1f8f3ef),
    url("promo-bonuses-1.webp") right center/cover;
}
.dock-offer strong {
  font-size: 18px;
  line-height: 1.35;
  color: var(--deep);
}
.dock-offer p {
  font-size: 14px;
}

@media (min-width: 638px) and (max-width: 1050px) {
  .final-app .store-pair {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .final-app .store-pair > .store-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 10px 8px;
    gap: 8px;
  }
  .final-app .promo-copy {
    width: 80%;
  }
  .final-app .store-button > .store-label {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .bonus-card-grid {
    gap: 14px;
  }
  .bonus-info-card {
    padding: 18px;
  }
  .bonus-info-card h3 {
    font-size: 17px;
  }
  .utility-cluster {
    right: 10px;
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
  .scroll-top > svg {
    inset: 2px;
    width: 40px;
    height: 40px;
  }
  .site-footer {
    padding-bottom: 70px;
  }
}
@media (max-width: 637px) {
  .promo-banner {
    height: 470px;
    min-height: 470px;
    padding: 190px 20px 24px;
    align-items: flex-end;
  }
  .promo-copy,
  .final-app .promo-copy {
    width: 100%;
    gap: 16px;
  }
  .promo-title {
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.12;
  }
  .promo-copy p:not(.promo-title) {
    font-size: 16px;
    line-height: 1.45;
  }
  .promo-banner:after,
  .promo-banner.copy-right:after {
    background: linear-gradient(0deg, #00231fed, #00231fb8 46%, transparent 77%);
  }
  .store-pair {
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 8px;
  }
  .store-pair > .store-button {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding: 12px 8px;
    gap: 8px;
    min-height: 64px;
  }
  .store-button > .store-label {
    font-size: 10px;
    letter-spacing: -0.15px;
  }
  .store-button > .store-label > strong {
    font-size: 14px;
  }
  .store-button > .platform-mark,
  .store-button > .platform-mark > img {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .bonus-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .bonus-info-card:last-child {
    grid-column: auto;
  }
  .review-card {
    padding: 20px;
  }
  .byline {
    padding: 14px;
    font-size: 13px;
  }
}
@media (max-width: 399px) {
  .store-pair {
    flex-direction: column;
  }
  .store-pair > .store-button {
    flex: 0 0 auto;
    width: 100%;
    min-height: 58px;
    padding: 8px 14px;
  }
  .store-button > .store-label {
    font-size: 12px;
  }
  .promo-banner {
    height: 500px;
    min-height: 500px;
    padding-top: 170px;
  }
  .final-app .promo-title {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .coin-confetti {
    display: none;
  }
  .confetti-piece {
    will-change: auto;
  }
}

.theme-mobile {
  --card-art: url("promo-app-final.webp");
  background-color: #eff5f4;
}
.topic-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.topic-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  min-width: 0;
  background-color: #f2f7f4;
}
.topic-info-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.topic-info-card h3 {
  font-size: 19px;
  line-height: 1.45;
  color: #005345;
}
.topic-info-card p,
.topic-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.topic-info-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--card-art) var(--card-position, right bottom)/auto 250px no-repeat;
  opacity: 0.17;
  filter: brightness(1.7) saturate(1.15);
  pointer-events: none;
}
body[data-page] .light-art-block {
  background-image:
    linear-gradient(90deg, #ffffffde, #ffffffe8), var(--card-art, url("promo-app-1.webp"));
  background-position: center, var(--card-position, right bottom);
  background-size:
    cover,
    auto 250px;
  background-repeat: no-repeat;
}
.comparison {
  background-image: linear-gradient(180deg, #edf7f1df, #ffffffdb), url("promo-casino-1.webp");
  background-size:
    cover,
    auto 260px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebdf, #ffffffdb), url("promo-casino-2.webp");
  background-position:
    center,
    left bottom;
}
.side-responsible {
  background-image: linear-gradient(#ffffffe6, #ffffffdc), url("promo-app-final.webp");
  background-size:
    cover,
    auto 200px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.side-card:not(.article-nav):not(.side-responsible) {
  background-image: linear-gradient(#fffffff0, #ffffffe0), url("promo-index-1.webp");
  background-size:
    cover,
    auto 240px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.dock-offer {
  background-image: linear-gradient(100deg, #f6fbf8ee, #f1f8f3ce), url("promo-bonuses-1.webp");
  background-size:
    cover,
    auto 180px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.wheel-results > div {
  background-image: linear-gradient(100deg, #eef7f1ee, #eef7f1d9), url("promo-bonuses-1.webp");
  background-size:
    cover,
    auto 170px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.review-source-tag {
  color: #00614b;
  font-weight: 700;
}
@media (max-width: 637px) {
  .topic-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .topic-info-card {
    padding: 18px;
  }
  .topic-info-card h3 {
    font-size: 18px;
  }
}

.sidebar-left .side-card {
  background-image: none !important;
  background-color: #fff;
}
.sidebar-left .side-card:before,
.sidebar-left .side-card:after {
  background-image: none !important;
}
body [data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff47, #ffffff1f);
  background-position: center, center !important;
  background-size: cover, cover !important;
  background-repeat: no-repeat !important;
  background-color: #eff4ef;
}
body .bonus-info-card[data-background-id]:after,
body .topic-info-card[data-background-id]:after,
body .review-card[data-background-id]:before {
  content: none;
}
body .side-card[data-background-id] .side-title {
  background: #e5ecece0;
  color: #003c35;
}
body .comparison[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff4d, #ffffff24);
}
body .review-card[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff52, #ffffff29);
}
body .light-art-block[data-background-id] {
  --block-overlay: linear-gradient(110deg, #ffffff52, #ffffff29);
}
body [data-background-id] .table-wrap {
  background: #ffffff99;
}
body [data-background-id] h2,
body [data-background-id] h3,
body .comparison[data-background-id] > p:first-of-type,
body .dock-offer[data-background-id] > strong,
body [data-wheel-result][data-background-id] > strong {
  color: #003c35;
  font-weight: 700;
  background: linear-gradient(110deg, #ffffffc2, #ffffffad);
  border-radius: 4px;
  box-shadow: 0 0 0 5px #ffffff80;
  text-shadow: none;
}

html {
  scrollbar-gutter: stable;
}
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 22% 18%, #087b65 0, transparent 48%),
    radial-gradient(ellipse at 85% 95%, #075d54 0, transparent 46%), #002b29;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
  contain: layout paint;
}
html[data-page-transition="loading"],
html[data-page-transition="leaving"] {
  overflow: hidden;
}
html[data-page-transition="loading"] .page-transition,
html[data-page-transition="leaving"] .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.transition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 370px);
  padding: 42px 34px 28px;
  border: 1px solid #d0ffea33;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff0f, #ffffff04);
  box-shadow:
    0 28px 90px #001c254a,
    inset 0 1px #ffffff14;
  color: white;
  text-align: center;
  transform: translateY(6px);
  transition: transform 360ms var(--ease);
  backdrop-filter: blur(16px);
}
html[data-page-transition="loading"] .transition-card,
html[data-page-transition="leaving"] .transition-card {
  transform: translateY(0);
}
.transition-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 106px;
  width: 100%;
  margin-bottom: 20px;
}
.transition-emblem img {
  width: 172px;
  height: auto;
  filter: brightness(0) invert(1);
}
.transition-orbit {
  position: absolute;
  inset: 0 23px;
  border-top: 1px solid #a5e8d836;
  border-bottom: 1px solid #a5e8d824;
  border-radius: 50%;
  transform: rotate(-13deg);
}
.transition-orbit:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  right: 13px;
  top: 9px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #ff790018;
  animation: ivi-loader-pulse 1500ms ease-in-out infinite;
}
.transition-caption {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #8dd9c4;
  margin-bottom: 10px;
  font-weight: 700;
}
.transition-card > strong {
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.transition-card > p {
  font-size: 13px;
  line-height: 1.5;
  color: #aed5ca;
  margin-top: 10px;
}
.transition-track {
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 28px;
  background: #ffffff16;
  border-radius: 3px;
  overflow: hidden;
}
.transition-track:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, #ff970e, #ffd18d);
  animation: ivi-loader-track 1200ms ease-in-out infinite;
}
.transition-signature {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #87b9ab;
  margin-top: 22px;
}
@keyframes ivi-loader-track {
  from {
    transform: translateX(-105%);
  }
  to {
    transform: translateX(220%);
  }
}
@keyframes ivi-loader-pulse {
  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 10px #ff790005;
  }
}
@media (max-width: 480px) {
  .transition-card {
    padding: 32px 26px 25px;
    border-radius: 18px;
  }
  .transition-card > strong {
    font-size: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    display: none !important;
  }
  .transition-track:after,
  .transition-orbit:after {
    animation: none;
  }
  .transition-card {
    backdrop-filter: none;
  }
  html[data-page-transition] {
    overflow: auto;
  }
}

body .hero,
body .promo-banner {
  background: #f1f3eb;
  border: 1px solid #d3e1d6;
  border-radius: 12px;
  box-shadow: 0 4px 16px #004e4808;
}
body .hero:after,
body .promo-banner:after {
  background: linear-gradient(90deg, #ffffffe0, #ffffff70 56%, #ffffff08 86%);
}
body .promo-banner.copy-right:after {
  background: linear-gradient(270deg, #ffffffe0, #ffffff70 56%, #ffffff08 86%);
}
body .promo-banner.final-app:after {
  background: linear-gradient(90deg, #ffffffe6, #ffffffad 70%, #ffffff26);
}
body .hero-copy,
body .promo-copy,
body .hero h1,
body .promo-title {
  color: #003c35;
}
body .hero-lead,
body .promo-copy p:not(.promo-title) {
  color: #2c5046;
}
body .hero h1,
body .promo-title {
  text-shadow: 0 1px 0 #ffffffa6;
}
body .hero-actions > .button:not(.store-button),
body .promo-copy > .button {
  background: #ff970f;
  color: #123d32;
  border-color: #e59126;
  box-shadow: 0 3px 10px #80581412;
}
body .hero-actions > .button:not(.store-button):hover,
body .promo-copy > .button:hover {
  background: #ffac39;
  color: #003c35;
}
body .hero .store-button,
body .promo-banner .store-button {
  background: #004f43;
  color: #fff;
  border-color: #387769;
  box-shadow: 0 3px 10px #004f4320;
}
body .hero .store-button:hover,
body .promo-banner .store-button:hover {
  background: #006651;
}
@media (max-width: 637px) {
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-fit: cover;
    object-position: center top !important;
  }
  body .hero:after,
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(0deg, #f1f3eb 0%, #f1f3ebf5 40%, #f1f3ebb3 57%, #ffffff00 78%);
  }
}

@media (max-width: 637px) {
  body .hero {
    height: auto;
    min-height: 0;
    padding: max(162px, calc(59.5vw - 50px)) 20px 24px;
  }
  body .hero-copy {
    flex-shrink: 0;
  }
}

.utility-cluster {
  position: fixed;
  left: auto;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 10px;
  padding: 0;
  background: none;
}
@media (max-width: 767px) {
  .utility-cluster {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 8px;
  }
}

body,
body * {
  -webkit-hyphens: none;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}
.keep-together {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .table-wrap table {
    width: 100%;
    min-width: 720px;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 180px;
  }
  .table-wrap tr > :first-child {
    min-width: 220px;
  }
  .table-wrap tr > :last-child {
    min-width: 360px;
  }
}
