: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: none;
}
.theme-second {
  --card-art: none;
  --card-position: left bottom;
  background: #f4f7ef;
}
.theme-reload {
  --card-art: none;
  background: #fcf7eb;
  border-color: #ede0c2;
}
.theme-sport {
  --card-art: none;
  --card-position: left bottom;
  background: #eef5f9;
}
.theme-offers {
  --card-art: none;
}
.theme-free {
  --card-art: none;
  --card-position: left bottom;
  background: #f7f3eb;
}
.theme-terms {
  --card-art: none;
  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: none 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), none;
  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), none;
}
body[data-page="app.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), none;
}
body[data-page="bonuses.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), none;
}
.comparison {
  background-image: linear-gradient(180deg, #edf7f1f5, #fffffff7), none;
  background-size: cover;
  background-position: right bottom;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebf5, #fffffff7), none;
}
.side-responsible {
  background-image: linear-gradient(#fffffff7, #fffffff2), none;
  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: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transform-origin: center;
  fill: none;
  stroke-width: 2.5;
  pointer-events: none;
}
.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),
    none 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;
  }
  .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: none;
  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, none);
  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), none;
  background-size:
    cover,
    auto 260px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebdf, #ffffffdb), none;
  background-position:
    center,
    left bottom;
}
.side-responsible {
  background-image: linear-gradient(#ffffffe6, #ffffffdc), none;
  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), none;
  background-size:
    cover,
    auto 240px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.dock-offer {
  background-image: linear-gradient(100deg, #f6fbf8ee, #f1f8f3ce), none;
  background-size:
    cover,
    auto 180px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.wheel-results > div {
  background-image: linear-gradient(100deg, #eef7f1ee, #eef7f1d9), none;
  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;
  }
}

.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;
  }
}

:root {
  --page: #edf2ec;
  --ink: #193e32;
  --muted: #5d7268;
  --green: #006341;
  --deep: #003e2d;
  --orange: #c92535;
  --red: #c92535;
  --gold: #d8b66b;
  --line: #d6e1d5;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--page);
}
body {
  background: linear-gradient(115deg, #edf3eb 0%, #f8f8f0 55%, #f0ede3 100%);
  font-size: 16px;
  line-height: 1.75;
}
::selection {
  background: #d8b66b;
  color: #003e2d;
}
a {
  color: var(--green);
}
h1,
h2,
h3 {
  text-transform: none;
  letter-spacing: -0.025em;
  text-wrap: balance;
  hyphens: none !important;
}
h1 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.13;
  font-weight: 800;
}
h2 {
  font-size: 28px;
  line-height: 1.25;
}
h3 {
  font-size: 20px;
  line-height: 1.4;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #b98e35;
  outline-offset: 4px;
}
.site-header {
  background: #003e2df5;
  color: #fff;
  border: 0;
  box-shadow: 0 3px 20px #002b2826;
  backdrop-filter: blur(16px);
}
.site-header:after,
.site-footer:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #006341 0 40%, #c92535 40% 100%);
}
.brand img {
  height: 47px;
  width: 164px;
}
.brand {
  transition:
    filter 0.3s,
    transform 0.3s;
}
.desktop-nav > a {
  color: #e7f1e5;
  position: relative;
  border: 0;
  letter-spacing: 0.02em;
}
.desktop-nav > a[aria-current] {
  color: #e6c97e;
}
.desktop-nav > a:after {
  height: 3px;
  bottom: 14px;
  background: linear-gradient(90deg, #d8b66b 0 40%, #e54550 40%);
  transform-origin: right;
  transition: transform 0.4s;
}
.desktop-nav > a[aria-current]:after {
  transform: scaleX(1);
}
.locale {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid #739480;
  border-radius: 6px;
  font-size: 11px;
}
.locale:before {
  content: "";
  width: 21px;
  height: 14px;
  background: linear-gradient(90deg, #00814f 40%, #dc2738 40%);
  border: 1px solid #ffffff40;
}
body .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: #c92535;
  border: 1px solid #d93848;
  border-radius: 7px 17px 7px 17px;
  box-shadow: 0 4px 0 #911c2b;
  min-height: 46px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    background 0.3s;
}
body .button-green {
  background: #08794f;
  border-color: #22966b;
  box-shadow: 0 4px 0 #00442f;
}
.button:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 20%,
    #fff5 48%,
    transparent 75%
  );
  transform: translateX(-140%);
  transition: transform 0.65s;
}
.button:active {
  transform: translateY(3px) !important;
  box-shadow: 0 1px 0 #672028 !important;
}
.dock-launch {
  background: #ffffff0d;
  border: 1px solid #809e8360;
  padding: 6px 10px;
  border-radius: 9px;
  color: #f0e6c9;
}
.dock-launch img {
  filter: brightness(0) invert(1);
  transition: transform 0.45s;
}
.dock-launch b {
  background: #c92535;
  color: #fff;
  transition: transform 0.3s;
}
.menu-toggle {
  background: #ffffff10;
  border-radius: 8px;
}
.menu-toggle span {
  background: #f0e6c9;
}
.mobile-menu {
  background: #f9fbf4;
  border-bottom: 4px solid var(--red);
  border-radius: 0 0 18px 18px;
}
.menu-scrim {
  background: #002e2590;
  backdrop-filter: blur(4px);
}
.page-layout {
  gap: 22px;
  margin-top: 25px;
}
.sidebar {
  scrollbar-color: #b3c8b5 transparent;
}
.side-card,
.content-section,
.game-rail,
.service-block {
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 6px 20px #123d2205;
}
.side-title {
  background: #e3eddf;
  color: #315d41;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 14px;
}
.side-link {
  border-left: 3px solid transparent;
  transition:
    background 0.3s,
    padding 0.3s,
    border-color 0.3s;
}
.side-link img {
  transition: transform 0.3s;
}
.article-nav a {
  transition:
    background 0.3s,
    padding 0.3s;
}
.article-nav a[aria-current="true"] {
  background: #e6efdf;
  border-left-color: #c92535;
  color: #005036;
}
.side-game {
  margin: 13px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d5e2d2;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.side-game img {
  border-radius: 7px;
  transition:
    filter 0.35s,
    transform 0.35s;
}
body .hero,
body .promo-banner {
  border-radius: 18px 18px 42px 18px;
  background: #002c20;
  border: 1px solid #35533d;
  box-shadow: 0 12px 30px #092d2220;
  isolation: isolate;
}
body .hero {
  min-height: 480px;
  padding: 38px 30px;
  align-items: center;
  aspect-ratio: auto;
}
body .hero:after {
  background: linear-gradient(90deg, #00291ee0, #00291e88 55%, #00291e05 85%);
}
body .hero-copy {
  width: 66%;
  color: #fff;
}
body .hero h1 {
  color: #fff;
  font-size: clamp(32px, 2.65vw, 44px);
  text-shadow: 0 2px 15px #00180f88;
}
body .hero-lead {
  color: #dfebdf;
  font-size: 15px;
  line-height: 1.75;
}
body .hero .eyebrow,
body .promo-banner .eyebrow {
  color: #e1c789 !important;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: 750;
}
.hero .eyebrow:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, #18a568 40%, #e83c4b 40%);
}
.hero-actions {
  margin-top: 24px;
}
.hero > picture > img {
  transition: transform 1.4s var(--ease);
  transform-origin: 80% 50%;
}
.content-section {
  background: #fffffc;
  padding: 28px;
}
.content-section > h2 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.content-section:before {
  background: linear-gradient(#006341 40%, #c92535 40%);
  width: 3px;
}
.section-body {
  gap: 21px;
}
.section-body p {
  line-height: 1.8;
}
.section-body li::marker {
  color: #b72132;
  font-weight: 700;
}
body [data-background-id] {
  --block-overlay: linear-gradient(
    105deg,
    #f7fbe6b8 10%,
    #f1f7e770 60%,
    #edf5dc18
  ) !important;
  background-size: cover, cover !important;
  background-position: center !important;
  background-color: #e3edda;
}
body [data-background-id] :is(h2, h3, strong) {
  color: #074b34;
}
body [data-background-id]:before {
  background: none;
}
.topic-info-card,
.bonus-info-card,
.comparison,
.review-card {
  border-radius: 9px 22px 9px 9px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.35s;
  background-color: #f8faf3;
}
.topic-info-card {
  padding: 23px;
  border-top: 3px solid #006341;
}
.topic-info-card:nth-child(3n + 2) {
  border-top-color: #c92535;
}
.topic-info-card:nth-child(3n) {
  border-top-color: #ba9748;
}
.topic-info-card p,
.topic-info-card li,
.bonus-info-card p,
.bonus-info-card li {
  font-size: 15px;
  line-height: 1.8;
}
.bonus-info-card {
  border-left: 3px solid #c92535;
}
.comparison.cons {
  border-top-color: #c92535;
}
.review-avatar {
  background: #006341;
  color: #fff;
  border-radius: 9px !important;
  transition:
    transform 0.4s,
    background 0.4s;
}
.byline {
  background: #edf2e8;
  border-color: #b89240;
  color: #405f4e;
}
.table-wrap {
  border-radius: 10px;
}
th {
  background: #004a33;
  color: #fff;
}
td:first-child {
  border-left-color: #c8b773;
  background: #f1f5e9;
}
tbody tr:nth-child(even) td {
  background: #f7f9f3;
}
td {
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.faq-item {
  border: 1px solid #d6e1d0;
  border-radius: 10px;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.faq-item summary {
  padding: 18px 45px 18px 19px;
  background: #f2f6ec;
  transition:
    background 0.3s,
    color 0.3s;
}
.faq-item summary:after {
  right: 22px;
  top: 24px;
  border-color: #c92535;
}
.faq-answer {
  padding: 18px 20px;
  border-top: 2px solid #c92535;
  background: #fff;
}
.faq-item[open] {
  border-color: #8aaf94;
}
body .promo-banner {
  min-height: 325px;
  padding: 30px;
  align-items: center;
  justify-content: flex-start;
}
body .promo-banner:after,
body .copy-right:after {
  background: linear-gradient(90deg, #002e20ee, #002e2090 56%, transparent);
}
body .promo-copy {
  width: 62%;
  color: #fff;
  background: none;
  border: 0;
  padding: 0;
}
body .promo-title {
  font-size: 28px;
  color: #fff;
}
body .promo-copy p:not(.promo-title) {
  color: #e1ebdd;
}
.promo-banner > picture > img {
  transition:
    transform 1s var(--ease),
    filter 1s;
}
.promo-banner.copy-right > picture > img {
  transform: none;
}
body .store-button {
  background: #f1e8ca;
  color: #133e2b;
  border-color: #e6cd8d;
  box-shadow: 0 4px 0 #a88843;
  border-radius: 9px;
}
.store-button .platform-mark {
  transition: transform 0.4s;
}
.store-button .platform-mark img {
  filter: none;
}
.game-rail {
  background: #fffef9;
  border-top: 3px solid #006341;
  padding: 23px;
}
.rail-toggle {
  border: 1px solid #b5cdb1;
  border-radius: 7px;
  color: #075536;
  background: #edf3e5;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.rail-toggle[aria-pressed="true"] {
  background: #fae5e4;
  color: #9d1d2c;
}
.game-card {
  padding: 6px;
  border: 1px solid #d7e4ce;
  border-radius: 10px;
  background: #f0f5e9;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 7px;
  transition:
    transform 0.5s,
    filter 0.5s;
}
.game-card span {
  padding: 4px;
  font-size: 12px;
  color: #12472c;
}
.bonus-dock {
  background: #f9fbf2;
  border-radius: 12px 12px 26px 12px;
  border: 1px solid #a4bea0;
  border-top: 4px solid #c92535;
  box-shadow: 0 20px 70px #003d2a40;
}
.bonus-dock:not([hidden]) {
  animation: pt-dock 0.32s var(--ease);
}
@keyframes pt-dock {
  from {
    transform: translateY(-10px);
    opacity: 0.3;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.dock-offer {
  border: 1px solid #cadbc2;
  border-left: 3px solid #006341;
  border-radius: 8px;
  padding: 18px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.dock-offer:nth-child(odd) {
  border-left-color: #c92535;
}
.panel-heading strong {
  color: #06472f;
}
.panel-heading button {
  border-radius: 8px;
  background: #e7efdf;
  transition:
    transform 0.3s,
    background 0.3s;
}
.offer-wheel {
  border-radius: 22px;
  padding: 26px;
  background: #f7faed;
  border: 2px solid #b99a54;
  box-shadow: 0 30px 100px #00291966;
}
.offer-wheel[open] {
  animation: pt-arrive 0.35s var(--ease);
}
@keyframes pt-arrive {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.offer-wheel::backdrop,
.random-bonus::backdrop {
  background: #002b238f;
  backdrop-filter: blur(9px);
}
.wheel-disc {
  border: 7px solid #e3c582;
  box-shadow:
    0 0 0 4px #00452e,
    0 12px 28px #00302230;
  background: conic-gradient(
    #006341 0deg 90deg,
    #bb2536 90deg 180deg,
    #0b7957 180deg 270deg,
    #7f1b2b 270deg 360deg
  );
}
.wheel-label,
.wheel-label:nth-child(2),
.wheel-label:nth-child(3) {
  color: #fff8db;
  font-size: clamp(9px, 3.5cqw, 12px);
}
.wheel-pointer {
  border-top-color: #e0b557;
}
.wheel-results > div {
  border: 1px solid #c3d5b8;
  border-left: 4px solid #c92535;
  border-radius: 10px;
  padding: 20px;
}
.coin-confetti {
  pointer-events: none;
}
.random-bonus {
  padding: 0;
  width: 470px;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  border: 1px solid #c1a460;
  border-radius: 20px;
  background: #f9fbed;
  color: #163e2c;
  overflow: auto;
  box-shadow: 0 25px 100px #00281e70;
}
.random-bonus[open] {
  animation: pt-arrive 0.35s var(--ease);
}
.random-bonus:before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #006341 40%, #c92535 40%);
}
.random-bonus-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.random-bonus-brand {
  font-weight: 850;
  letter-spacing: 0.04em;
  color: #005738;
}
.random-bonus-brand > span {
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-left: 5px;
}
.random-bonus-close {
  font-size: 28px;
  width: 44px;
  height: 44px;
  background: #e9efdf;
  border-radius: 8px;
  transition:
    transform 0.3s,
    background 0.3s;
}
.random-bonus-content {
  padding: 0 28px 23px;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, #dce9c6, transparent 50%);
}
.random-bonus-emblem {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border: 1px solid #b89a57;
  background: #006341;
  color: #ead091;
  border-radius: 18px;
  transform: rotate(8deg);
  box-shadow: 7px 7px 0 #c92535;
}
.random-bonus-emblem > span {
  font-size: 57px;
  transform: rotate(-8deg);
}
.random-bonus-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  margin: 23px 0 10px;
}
.random-bonus h2 {
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.random-bonus [data-random-body] {
  font-size: 14px;
  margin-bottom: 20px;
}
.random-bonus-claim {
  width: 100%;
}
.random-bonus-wheel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  margin-top: 15px;
  border: 1px solid #c5d4b6;
  border-radius: 9px;
  background: #eaf2df;
  color: #075136;
  font-weight: 700;
  transition: background 0.3s;
}
.random-mini-wheel {
  width: 23px;
  height: 23px;
  border: 2px solid #d8b66b;
  border-radius: 50%;
  background: conic-gradient(
    #006341 0deg 90deg,
    #c92535 90deg 180deg,
    #006341 180deg 270deg,
    #c92535 270deg
  );
  transition: transform 0.6s;
}
.random-bonus-note {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 18px;
  color: #56704e;
}
.promotion-pause {
  min-height: 44px;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: block;
  margin: 0 auto;
  color: #516a47;
}
.utility-cluster .wheel-launch {
  background: #006341;
  border: 2px solid #d8b66b;
}
.utility-cluster .utility-chat {
  background: #c92535;
  color: white;
  border: 2px solid #f5edda;
}
.utility-cluster > a,
.utility-cluster > button {
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-radius 0.35s;
  box-shadow: 0 5px 15px #00382330;
}
.utility-cluster .scroll-top {
  color: #006341;
  background: #f4f8eb;
}
.scroll-meter {
  stroke: #c92535;
}
.scroll-track {
  stroke: #cfddc4;
}
.wheel-launch img {
  transition: transform 0.6s;
}
.site-footer {
  position: relative;
  background: #003e2d;
  color: #e0e9d7;
  border: 0;
  margin-top: 25px;
}
.site-footer:before {
  inset: 0 0 auto;
}
.footer-grid nav strong {
  color: #e6ca82;
}
.footer-grid nav a,
.site-footer a {
  color: #e0e9d7;
}
.footer-grid nav a {
  width: fit-content;
  background: linear-gradient(#dcbd73, #dcbd73) 100% 100%/0 1px no-repeat;
  transition:
    background-size 0.3s,
    color 0.3s;
}
.footer-bottom {
  border-color: #49735a;
  color: #b5cbb8;
  padding-bottom: 30px;
}
.site-footer .age {
  border-color: #d8b66b;
  color: #e8d094;
}
.side-responsible .age {
  border-color: #c92535;
  color: #00563a;
}
.page-transition {
  background:
    radial-gradient(ellipse at 90% 10%, #1c7144, transparent 60%), #002f23;
}
.transition-card {
  border: 1px solid #a99355;
  background: #043e2de8;
  color: #fff;
  border-radius: 12px 40px 12px 40px;
  box-shadow: 12px 12px 0 #c9253530;
}
.transition-card > p {
  color: #c3d6be;
}
.transition-caption,
.transition-signature {
  color: #e0c789;
}
.transition-emblem img {
  filter: none;
}
.transition-track {
  background: #27533c;
}
.transition-track:after {
  background: linear-gradient(90deg, #d8b66b 40%, #c92535 40%);
}
.transition-orbit {
  border-color: #d8b66b66;
}
.transition-orbit:after {
  background: #c92535;
  box-shadow: 0 0 0 5px #c9253520;
}
.service-block {
  max-width: 1000px;
  margin: 20px auto;
  background: #fffff8;
  border-top: 4px solid #006341;
}
.service-qa {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.service-block h1 {
  font-size: 38px;
}
@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    filter: drop-shadow(0 0 8px #d8b66b65);
    transform: translateY(-1px);
  }
  .desktop-nav > a:hover {
    color: #ecd494;
  }
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .mobile-menu nav a:hover {
    background: #e7efd9;
    padding-left: 16px;
  }
  body .button:hover {
    background: #af1d2d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
      0 7px 0 #7c1828,
      0 12px 22px #ab203329;
  }
  .button:hover:before {
    transform: translateX(140%);
  }
  body .button-green:hover {
    background: #00613d;
    box-shadow: 0 7px 0 #003b27;
  }
  .dock-launch:hover img {
    transform: rotate(15deg);
  }
  .dock-launch:hover b {
    transform: scale(1.15);
  }
  .side-link:hover {
    padding-left: 20px;
    border-left-color: #c92535;
    background: #e9f0df;
  }
  .side-link:hover img {
    transform: rotate(-8deg);
  }
  .article-nav a:hover {
    padding-left: 20px;
    background: #edf2e4;
  }
  .side-game:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 #d8b66b80;
  }
  .side-game:hover img {
    filter: saturate(1.15);
    transform: scale(0.97);
  }
  .hero:hover > picture > img {
    transform: scale(1.045);
  }
  .topic-info-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 8px 0 -4px #006341,
      0 15px 30px #174b2e12;
  }
  .topic-info-card:nth-child(3n + 2):hover {
    box-shadow:
      0 8px 0 -4px #c92535,
      0 15px 30px #174b2e12;
  }
  .bonus-info-card:hover {
    transform: translateX(4px);
    box-shadow: -5px 0 0 #d8b66b;
  }
  .comparison:hover {
    border-color: #006341;
    box-shadow: 0 8px 20px #00634115;
  }
  .comparison.cons:hover {
    border-color: #c92535;
  }
  .review-card:hover {
    transform: translateY(-3px) rotate(0.3deg);
    box-shadow: 6px 6px 0 #d6e5ca;
  }
  .review-card:hover .review-avatar {
    transform: rotate(-10deg);
    background: #c92535;
  }
  tbody tr:hover td {
    background: #e4eed6;
    box-shadow: inset 0 -2px #b4c39a;
  }
  tbody tr:hover td:first-child {
    border-left-color: #c92535 !important;
  }
  .faq-item:hover {
    border-color: #a1b991;
    box-shadow: 4px 4px 0 #e2eacf;
  }
  .faq-item summary:hover {
    background: #e4efd7;
    color: #005036;
  }
  .promo-banner:hover > picture > img {
    transform: scale(1.035);
    filter: saturate(1.15);
  }
  body .store-button:hover {
    background: #dfce98;
    color: #003e2d;
    box-shadow: 0 7px 0 #997836;
  }
  .store-button:hover .platform-mark {
    transform: translateY(-3px);
  }
  .game-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: 3px 5px 0 #c92535;
  }
  .game-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.13);
  }
  .rail-toggle:hover {
    background: #dce9c9;
    box-shadow: inset 0 -3px #006341;
  }
  .panel-heading button:hover,
  .random-bonus-close:hover {
    transform: rotate(90deg);
    background: #f6dcdb;
  }
  .dock-offer:hover {
    transform: translateX(-2px);
    box-shadow: 4px 4px 0 #d3e3c5;
  }
  .random-bonus-wheel:hover {
    background: #dbeac8;
  }
  .random-bonus-wheel:hover .random-mini-wheel {
    transform: rotate(180deg);
  }
  .promotion-pause:hover {
    color: #a51b2c;
  }
  .utility-cluster > a:hover,
  .utility-cluster > button:hover {
    transform: translateX(-3px);
    box-shadow: 4px 4px 0 #d8b66b;
    border-radius: 13px;
  }
  .wheel-launch:hover img {
    transform: rotate(135deg);
  }
  .utility-cluster .scroll-top:hover {
    transform: translateY(-4px);
    border-radius: 50%;
  }
  .utility-cluster .utility-chat:hover {
    transform: rotate(-8deg);
  }
  .footer-grid nav a:hover {
    background-size: 100% 1px;
    color: #efd38b;
  }
}
@media (min-width: 1360px) {
  .page-layout {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 39px;
  }
}
@media (max-width: 1359px) {
  body .hero {
    min-height: 470px;
  }
  body .hero-copy {
    width: 59%;
  }
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }
}
@media (max-width: 1100px) {
  .locale {
    display: none;
  }
  .desktop-nav {
    gap: 22px;
  }
  .hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .brand img {
    width: 130px;
    height: auto;
  }
  .page-layout {
    margin-top: 16px;
  }
  .content-section {
    padding: 22px;
  }
  .section-body {
    gap: 18px;
  }
  h2 {
    font-size: 25px;
  }
  .site-header {
    height: 60px;
  }
  body .hero {
    padding: 200px 22px 28px;
    min-height: 530px;
    align-items: flex-end;
    border-radius: 15px 15px 30px 15px;
  }
  body .hero-copy,
  body .promo-copy {
    width: 100%;
  }
  body .hero h1 {
    font-size: 32px;
    line-height: 1.13;
  }
  body .hero > picture,
  body .promo-banner > picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-position: 78% 15% !important;
    object-fit: cover;
  }
  body .hero:after,
  body .promo-banner:after,
  body .copy-right:after {
    background: linear-gradient(
      0deg,
      #002e21 0%,
      #002e21eb 40%,
      #002e2170 72%,
      transparent
    );
  }
  body .promo-banner {
    padding: 180px 22px 28px;
    min-height: 420px;
    align-items: flex-end;
  }
  body .hero-lead {
    font-size: 15px;
  }
  .promo-title {
    font-size: 27px;
  }
  .bonus-dock {
    right: 12px;
    max-width: calc(100vw - 24px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .utility-cluster {
    right: 10px;
  }
  .store-pair {
    flex-direction: column;
    width: 100%;
    max-width: 270px;
  }
  .store-pair > .store-button {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
  }
  .service-block {
    padding: 22px;
  }
  .service-block h1 {
    font-size: 30px;
  }
  .random-bonus-content {
    padding-left: 23px;
    padding-right: 23px;
  }
}
@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  body .hero h1 {
    font-size: 29px;
  }
  .content-section {
    padding: 19px;
  }
  .offer-wheel {
    padding: 18px;
  }
  .random-bonus h2 {
    font-size: 28px;
  }
}
body .store-pair > .store-button {
  background: #f1e8ca;
  color: #133e2b;
  border-color: #e6cd8d;
  box-shadow: 0 4px 0 #a88843;
}
body .store-pair > .store-button .store-label {
  color: #133e2b;
}
body [data-background-id] :is(h2, h3, strong) {
  background: none;
  box-shadow: none;
  text-shadow: none;
}
body .promo-banner {
  height: auto;
  aspect-ratio: auto;
}
@media (hover: hover) and (pointer: fine) {
  body .store-pair > .store-button:hover {
    background: #dfce98;
    color: #003e2d;
    box-shadow: 0 7px 0 #997836;
  }
}

.game-rail {
  position: relative;
  isolation: isolate;
  background: linear-gradient(125deg, #064d36, #003d2d 70%);
  border: 1px solid #527b55;
  border-top: 3px solid #d8b66b;
  border-radius: 14px 14px 26px 14px;
  box-shadow: 0 8px 24px #00362320;
}
.game-rail:before {
  content: "";
  position: absolute;
  left: 23px;
  top: -3px;
  width: 40%;
  height: 3px;
  background: #c92535;
  pointer-events: none;
}
.game-rail .rail-heading p {
  color: #f8f2db;
}
.game-rail .rail-toggle {
  color: #f3dfac;
  background: #ffffff0c;
  border-color: #b99d606b;
  padding: 7px 14px;
  min-height: 38px;
}
.game-rail .rail-toggle[aria-pressed="true"] {
  background: #722738;
  color: #fff0dc;
  border-color: #bf5968;
}
.game-rail .rail-window {
  padding: 5px 2px 10px;
  scrollbar-color: #c8ac67 #ffffff0d;
}
.game-rail .game-card {
  position: relative;
  padding: 6px;
  background: #fffdf2;
  border: 1px solid #d5c58e;
  border-radius: 10px 10px 16px 10px;
  box-shadow: 0 3px 10px #001a2430;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.35s;
}
.game-rail .game-card img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  transition:
    transform 0.45s var(--ease),
    filter 0.45s;
}
.game-rail .game-card span {
  color: #164632;
  padding: 5px 3px 7px;
  border-bottom: 2px solid #08734b;
  font-size: 12px;
  line-height: 1.4;
}
.game-rail .game-card:nth-child(even) span {
  border-bottom-color: #c92535;
}
.side-game {
  border-color: #d5c58e;
  background: #fffdf2;
}
.side-game img {
  border-radius: 7px;
}
@media (hover: hover) and (pointer: fine) {
  .game-rail .game-card:hover {
    transform: translateY(-3px);
    border-color: #f0d087;
    box-shadow:
      0 5px 0 #c92535,
      0 9px 18px #001e2450;
  }
  .game-rail .game-card:hover img {
    transform: scale(1.025);
    filter: brightness(1.06);
    box-shadow: none;
  }
  .game-rail .rail-toggle:hover {
    background: #d8b66b;
    color: #003d2d;
    box-shadow: 0 3px 0 #99763c;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  background: linear-gradient(135deg, #fffef9, #edf3e6);
  border: 1px solid #e2cd98;
  border-radius: 11px;
  box-shadow:
    0 4px 12px #001e2440,
    inset 0 1px 0 #fff;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
}
.brand img {
  width: 164px;
  height: auto;
  filter: none;
}
.footer-brand > img,
.transition-emblem > img {
  box-sizing: content-box;
  padding: 10px 13px;
  background: linear-gradient(135deg, #fffef9, #edf3e6);
  border: 1px solid #e2cd98;
  border-radius: 11px;
  box-shadow: 0 4px 12px #001e2430;
  filter: none;
}
@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    filter: none;
    transform: translateY(-2px);
    border-color: #f3d48d;
    box-shadow:
      0 7px 17px #001e244d,
      0 0 0 3px #d8b66b1a;
  }
}
@media (max-width: 767px) {
  .brand {
    padding: 6px 10px;
    border-radius: 9px;
  }
  .brand img {
    width: 130px;
    height: auto;
  }
}
@media (max-width: 400px) {
  .brand img {
    width: 123px;
  }
}

.content-section,
.service-block {
  background-color: #f3f7e9;
  border-color: #a9bea1;
  box-shadow: 0 7px 22px #123d2210;
}
.side-card {
  background-color: #edf4e4;
  border-color: #a9bea1;
}
.topic-info-card,
.bonus-info-card,
.comparison,
.review-card {
  border-color: #a1b58e;
  box-shadow: 0 5px 14px #163e2c12;
}
.side-title {
  background: #cdddba;
  color: #164b33;
}
.faq-item {
  border-color: #b1c49f;
}
.faq-item summary {
  background: #e0ebd1;
}
.faq-answer {
  background: #f7faef;
}
.service-qa {
  border-color: #a9bea1;
}
.service-qa h2 {
  color: #075136;
}
.brand {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.brand-plaque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px 13px;
  background: linear-gradient(135deg, #fffef9, #edf3e6);
  border: 1px solid #e2cd98;
  border-radius: 11px;
  box-shadow:
    0 4px 12px #001e2430,
    inset 0 1px 0 #fff;
}
.brand-plaque img {
  width: 164px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: none;
}
.panel-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.panel-heading:has(.panel-brand) {
  align-items: flex-start;
}
.offer-title-line {
  display: block;
}
.promo-copy:not(.final-app .promo-copy) {
  width: 76%;
}
body .promo-copy .offer-title-line {
  white-space: nowrap;
  font-size: clamp(21px, 2vw, 28px);
}
.random-bonus h2 .offer-title-line {
  white-space: nowrap;
  font-size: clamp(20px, 5.8vw, 30px);
}
.offer-title {
  font-size: 19px;
  line-height: 1.45;
}
.store-button .platform-mark {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}
.store-button .platform-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(26%) saturate(1048%)
    hue-rotate(105deg) brightness(91%) contrast(92%);
}
body .store-button > .store-label {
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0;
}
body .store-button > .store-label > strong {
  font-size: 16px;
  line-height: 1.25;
}
.panel-heading button,
.random-bonus-close {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  line-height: 1;
  color: #164b33;
  background: #e6edda;
  border: 1px solid #b6c39d;
  border-radius: 11px;
  transform: none;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.panel-heading button svg,
.random-bonus-close svg {
  display: block;
  width: 20px;
  height: 20px;
  transform-origin: center;
  transition: transform 0.25s;
}
@media (hover: hover) and (pointer: fine) {
  .panel-heading button:hover,
  .random-bonus-close:hover {
    transform: none;
    background: #f5d5d3;
    border-color: #bc5360;
    box-shadow: 0 0 0 3px #c9253514;
  }
  .panel-heading button:hover svg,
  .random-bonus-close:hover svg {
    transform: rotate(90deg);
  }
}
@media (max-width: 767px) {
  .brand-plaque {
    padding: 6px 10px;
    border-radius: 9px;
  }
  .brand-plaque img {
    width: 130px;
  }
  .promo-copy:not(.final-app .promo-copy) {
    width: 100%;
  }
  body .promo-copy .offer-title-line {
    font-size: clamp(19px, 5.8vw, 28px);
  }
  .offer-title {
    font-size: 17px;
  }
}
@media (max-width: 400px) {
  .brand-plaque img {
    width: 123px;
  }
  .random-bonus-content {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 1359px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .utility-cluster {
    position: fixed;
    z-index: 45;
    inset: auto 10px max(12px, env(safe-area-inset-bottom)) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
    padding: 0;
    background: none;
    border: 0;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }
  .site-footer {
    padding-bottom: 76px;
  }
  .table-wrap table {
    width: max-content;
    min-width: 100%;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 180px;
    max-width: none;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
  }
}
@media (max-width: 900px) {
  .topic-card-grid,
  .bonus-card-grid,
  .pros-cons,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .topic-info-card:last-child:nth-child(odd),
  .bonus-info-card:last-child,
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-section,
  .topic-info-card,
  .bonus-info-card,
  .review-card,
  .comparison,
  .game-rail,
  .service-block {
    padding-left: 18px;
    padding-right: 18px;
  }
  .utility-cluster {
    right: 8px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}
.money {
  white-space: nowrap;
}
body :is(p, li, blockquote, td, th, a, button) {
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}
.review-summary {
  padding: 13px 16px;
  border: 1px solid #a8bd96;
  border-left: 4px solid #d8b66b;
  border-radius: 8px;
  background: #e7efda;
  color: #075136;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero:hover > picture > img,
  .promo-banner:hover > picture > img {
    transform: none !important;
  }
}
