: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 {
  position: relative;
  z-index: 1;
  width: 192px;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  filter: none;
}
.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;
  }
}

:root {
  --page: #eef1eb;
  --ink: #21352b;
  --muted: #5b6c60;
  --green: #477050;
  --deep: #183e2c;
  --orange: #ce2939;
  --red: #ce2939;
  --line: #d6dfd3;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef1eb;
  color: #21352b;
}
body {
  background:
    radial-gradient(ellipse at 0 10%, #e2eada, transparent 45%),
    linear-gradient(135deg, #f6f7f2, #edf1e9);
  font-size: 15px;
  line-height: 1.7;
}
h1,
h2,
h3 {
  text-transform: none;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
  font-weight: 750;
}
h2 {
  font-size: 28px;
  line-height: 1.23;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #ce2939;
  outline-offset: 4px;
}
.site-header {
  height: 78px;
  background: #fffffff2;
  backdrop-filter: blur(18px);
  border: 0;
  box-shadow: 0 2px 20px #173b2410;
}
.site-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(180deg, #ce2939 0 33%, #fff 33% 66%, #477050 66%);
}
.brand img {
  width: 150px;
}
.desktop-nav {
  gap: 24px;
}
.desktop-nav > a {
  font-size: 14px;
  border: 0;
  color: #314537;
}
.desktop-nav > a[aria-current] {
  color: #af1e30;
}
.desktop-nav > a:after {
  height: 4px;
  bottom: 12px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    #ce2939 0 33%,
    #dbe2d6 33% 66%,
    #477050 66%
  );
  transform-origin: center;
}
.header-tools {
  gap: 12px;
}
.locale {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #dce4d6;
  border-bottom: 3px solid #477050;
  border-top: 3px solid #ce2939;
  border-radius: 5px;
  color: #2e4835;
}
.button,
body .hero-actions > .button:not(.store-button),
body .promo-copy > .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #bd2638;
  color: #fff;
  border: 1px solid #d75562;
  border-radius: 8px;
  padding: 12px 20px;
  box-shadow: 0 3px 0 #851a28;
  font-size: 13px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    #ffffff28 50%,
    transparent 70%
  );
  transform: translateX(-125%);
  transition: transform 0.55s var(--ease);
}
.button-green {
  background: #315c3d;
  border-color: #587e60;
  box-shadow: 0 3px 0 #1b3a27;
}
.button:active {
  transform: translateY(2px) !important;
  box-shadow: 0 1px 0 #851a28 !important;
}
.dock-launch {
  padding: 7px 10px;
  border: 1px solid #d4dfce;
  border-radius: 8px;
  background: #f1f5ed;
  color: #36523d;
}
.dock-launch b {
  background: #ce2939;
  color: #fff;
}
.dock-launch img,
.dock-launch b {
  transition: transform 0.35s var(--ease);
}
.menu-toggle {
  border-radius: 8px;
  background: #edf2e8;
}
.menu-toggle span {
  background: #477050;
}
.mobile-menu {
  background: #fafff6;
  border-radius: 0 0 14px 14px;
  border-bottom: 4px solid #ce2939;
}
.mobile-menu nav a {
  padding-left: 12px;
  border-left: 3px solid #dae4d5;
}
.mobile-menu nav a[aria-current] {
  border-left-color: #ce2939;
  color: #992435;
}
.menu-scrim {
  background: #173b2770;
  backdrop-filter: blur(3px);
}
.page-layout {
  max-width: 1600px;
  margin-top: 27px;
  gap: 20px;
  grid-template-columns: 240px minmax(0, 1fr) 240px;
  padding-right: 74px;
}
.sidebar {
  top: 104px;
}
.side-card,
.content-section,
.game-rail,
.service-block {
  border: 1px solid #d9e1d3;
  border-radius: 12px;
  box-shadow: 0 6px 24px #193d2606;
}
.side-title {
  background: #e7eddf;
  color: #36543c;
  letter-spacing: 0.13em;
  font-size: 10px;
  padding: 14px;
}
.side-link {
  border-color: #e8eddf;
  font-size: 12px;
  position: relative;
  transition:
    background 0.25s,
    padding 0.25s,
    color 0.25s;
}
.side-link:after {
  content: "›";
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: 0.25s;
}
.article-nav a {
  font-size: 12px;
  line-height: 1.5;
  padding: 11px 13px;
  color: #4b5c4d;
  transition: 0.25s;
}
.article-nav a[aria-current="true"] {
  background: #edf3e7;
  border-left-color: #ce2939;
  color: #244b32;
}
.side-game {
  margin: 12px;
  padding: 8px;
  background: #fff;
  border: 1px solid #d8e2d1;
  border-radius: 9px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.side-game img {
  border-radius: 6px;
}
body .hero,
body .promo-banner {
  position: relative;
  background: #143626;
  border: 1px solid #244e35;
  border-radius: 14px;
  box-shadow: 0 10px 28px #1d38261a;
  aspect-ratio: auto;
  height: auto;
  isolation: isolate;
}
body .hero {
  min-height: 470px;
  padding: 40px 30px;
  align-items: center;
}
body .hero-copy {
  width: 65%;
  color: #fff;
  position: relative;
}
.hero h1,
body .hero h1,
body .promo-title {
  color: #fff;
  text-shadow: none;
}
body .hero:after {
  background: linear-gradient(
    90deg,
    #0c2a1fdb 0%,
    #102e2480 48%,
    #17362208 82%
  );
}
body .hero-lead,
body .promo-copy p:not(.promo-title) {
  color: #e6efe2;
  line-height: 1.75;
  font-size: 15px;
}
.hero-actions {
  margin-top: 25px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 750;
  color: #477050;
  margin-bottom: 16px;
}
.hero .eyebrow,
.promo-banner .eyebrow {
  color: #ebeee4;
}
.hero .eyebrow:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 14px;
  background: linear-gradient(#ce2939 0 33%, #fff 33% 66%, #477050 66%);
  vertical-align: middle;
  margin-right: 9px;
  border-radius: 2px;
}
.hero > picture > img,
.promo-banner > picture > img {
  transition: transform 1.2s var(--ease);
  transform-origin: 80% 50%;
}
.content-section {
  padding: 28px;
  background: #fff;
  scroll-margin-top: 104px;
}
.content-section > h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe6d9;
  margin-bottom: 22px;
  color: #234930;
}
.content-section:before {
  top: 28px;
  bottom: 28px;
  background: linear-gradient(#ce2939 0 33%, #d8e2d2 33% 66%, #477050 66%);
  width: 3px;
}
.section-body {
  gap: 21px;
}
.section-body p,
.section-body li {
  line-height: 1.85;
}
.section-body li::marker {
  color: #ad2639;
  font-weight: 700;
}
body [data-background-id] {
  --block-overlay: linear-gradient(100deg, #ffffff45, #ffffff08) !important;
  background-size: cover, cover !important;
  background-position:
    center,
    right center !important;
  background-color: #f8faf5;
}
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: #254c33;
  background: none;
  box-shadow: none;
  border-radius: 0;
  text-shadow: none;
}
.topic-info-card,
.bonus-info-card,
.comparison,
.review-card {
  border-radius: 10px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
}
.topic-info-card,
.bonus-info-card {
  padding: 22px;
  border-top: 3px solid #477050;
}
.topic-info-card:nth-child(3n + 2),
.bonus-info-card:nth-child(3n + 2) {
  border-top-color: #c9d3c1;
}
.topic-info-card:nth-child(3n),
.bonus-info-card:nth-child(3n) {
  border-top-color: #ce2939;
}
.topic-card-grid,
.bonus-card-grid {
  gap: 18px;
}
.topic-info-card h3,
.bonus-info-card h3 {
  font-size: 19px;
}
.topic-info-card p,
.bonus-info-card p {
  font-size: 14px;
}
.comparison.cons {
  border-top-color: #ce2939;
}
.cons .comparison-sign {
  color: #ce2939;
}
.review-card {
  border-left: 4px solid #477050;
  padding: 24px;
  background: #f7faf3;
}
.review-card:nth-child(even) {
  border-left-color: #ce2939;
}
.review-card blockquote {
  margin: 0;
}
.review-avatar {
  background: #dce8d2;
  color: #345c3e;
  border-radius: 8px;
  transition: 0.3s;
}
.review-card blockquote p {
  font-weight: 400 !important;
  color: #334737 !important;
  font-size: 15px !important;
}
.byline {
  border-color: #ce2939;
  background: #eff4e8;
}
.table-wrap {
  border-radius: 10px;
}
th {
  background: #31543a;
  padding: 15px;
  color: #fff;
}
td {
  padding: 15px;
  color: #304635;
  transition:
    background 0.22s,
    box-shadow 0.22s;
}
td:first-child {
  background: #eef4e8;
  border-left-color: #8bab7c;
}
tbody tr:nth-child(even) td {
  background: #f7f9f3;
}
.faq-item {
  border: 1px solid #d9e4d0;
  border-radius: 9px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.faq-item summary {
  padding: 17px 45px 17px 18px;
  transition:
    background 0.25s,
    color 0.25s;
}
.faq-item summary:after {
  top: 23px;
  right: 20px;
  border-color: #ce2939;
  transition: transform 0.3s;
}
.faq-item[open] {
  border-left: 4px solid #477050;
  background: #f9fcf5;
}
.faq-answer {
  padding: 0 18px 20px;
}
body .promo-banner {
  min-height: 325px;
  padding: 30px;
  align-items: center;
}
body .promo-copy {
  width: 63%;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  color: #fff;
}
.promo-title {
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
body .promo-banner:after,
body .promo-banner.copy-right:after,
body .promo-banner.final-app:after {
  background: linear-gradient(90deg, #122c20db, #122c2080 55%, transparent 92%);
}
.promo-banner.copy-right {
  justify-content: flex-start;
}
.promo-banner.copy-right > picture {
  transform: none;
}
body .hero .store-button,
body .promo-banner .store-button,
.store-button {
  background: #f4f6ee;
  color: #254a32;
  border-color: #d1dec5;
  box-shadow: 0 3px 0 #8ca180;
  border-radius: 9px;
  min-width: 0;
}
.store-pair {
  flex-wrap: wrap;
  gap: 10px;
}
.store-pair > .store-button {
  flex: 0 1 190px;
  min-width: 180px;
}
.platform-mark {
  transition: transform 0.4s var(--ease);
}
.store-button > .store-label {
  color: inherit;
}
.game-rail {
  background: #f9fbf5;
  padding: 23px;
}
.rail-heading p {
  font-size: 19px;
  letter-spacing: -0.02em;
}
.rail-toggle {
  background: #e4eddc;
  color: #35533b;
  border: 1px solid #d1dfc7;
  border-radius: 6px;
  padding: 8px 13px;
}
.game-card {
  padding: 7px;
  width: 146px;
  flex-basis: 146px;
  border-radius: 10px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.game-card img {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  transition:
    transform 0.4s,
    filter 0.4s;
}
.game-card span {
  font-size: 12px;
  padding: 1px 3px;
  line-height: 1.45;
}
.bonus-dock {
  border-radius: 14px;
  border-top: 4px solid #ce2939;
  box-shadow: 0 20px 70px #183d2e40;
  background: #f9fbf6;
}
.dock-offer {
  padding: 18px;
  border: 1px solid #d7e3ce;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.panel-heading > button,
.random-bonus-close {
  border-radius: 50%;
  background: #eef2e8;
  color: #a52534;
  transition:
    background 0.25s,
    transform 0.3s;
}
.panel-heading strong {
  color: #294e35;
  line-height: 1.2;
}
.offer-wheel {
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #b7c9ad;
  background: #fbfdf7;
  box-shadow:
    0 0 0 6px #ffffff22,
    0 30px 90px #06170d66;
}
.offer-wheel::backdrop,
.random-bonus::backdrop {
  background: #102a22c7;
  backdrop-filter: blur(7px);
}
.wheel-disc {
  background: conic-gradient(
    #a92437 0 90deg,
    #f5f6eb 90deg 180deg,
    #477050 180deg 270deg,
    #1f4731 270deg
  );
  border: 8px solid #ecf0df;
  box-shadow:
    0 0 0 3px #477050,
    0 0 0 7px #ce2939,
    0 15px 30px #1e372433;
}
.wheel-label {
  color: white;
  font-size: 12px !important;
}
.wheel-label:nth-child(2) {
  color: #25422d;
}
.wheel-label:nth-child(3) {
  color: #fff;
}
.wheel-pointer {
  border-top-color: #ce2939;
}
.wheel-stage:after {
  background: #fff;
  border: 5px solid #c5d3b8;
  box-shadow: 0 0 0 2px #477050;
}
.wheel-results > div {
  border: 1px solid #d2dfc6;
  border-radius: 12px;
  padding: 20px;
}
.random-bonus {
  width: 480px;
  max-width: calc(100vw - 28px);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  padding: 0;
  border: 1px solid #547951;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(ellipse at 100% 0, #6c203099, transparent 65%), #173c2b;
  box-shadow:
    0 0 0 6px #ffffff18,
    0 30px 100px #091c1866;
}
.random-bonus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 23px;
  border-bottom: 1px solid #ffffff26;
}
.random-bonus-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.random-bonus-brand span {
  font-size: 9px;
  letter-spacing: 0.13em;
  display: block;
  color: #d5e7cc;
}
.random-bonus-close {
  height: 38px;
  width: 38px;
  font-size: 26px;
}
.random-bonus-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 17px;
}
.random-bonus-emblem {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ce2939, #8e2434);
  border: 1px solid #e57680;
  border-radius: 18px;
  transform: rotate(-8deg);
  font-size: 45px;
  box-shadow: 6px 6px 0 #d1e5c429;
}
.random-bonus-eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #dce9d4;
}
.random-bonus h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
}
.random-bonus-content > p:not(.random-bonus-eyebrow) {
  color: #dce8d4;
  font-size: 14px;
}
.random-bonus-claim {
  width: 100%;
}
.random-bonus-wheel {
  width: 100%;
  padding: 14px;
  border: 1px solid #a7c09270;
  border-radius: 8px;
  color: #e5efdf;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.random-mini-wheel {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(
    #ce2939 0 120deg,
    #fff 120deg 240deg,
    #477050 240deg
  );
  border: 2px solid #d3e5c7;
  transition: transform 0.6s;
}
.random-bonus-note {
  font-size: 11px !important;
  line-height: 1.6;
}
.promotion-pause {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 36px;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.25s;
}
.utility-cluster {
  right: 15px;
  bottom: 22px;
  gap: 11px;
}
.utility-cluster > a,
.utility-cluster > button {
  width: 43px;
  height: 43px;
  border: 1px solid #668b64;
  border-radius: 12px;
  background: #2f553a;
  color: #fff;
  box-shadow: 0 4px 12px #152b2526;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-radius 0.3s;
}
.utility-cluster .wheel-launch {
  background: #b8273b;
  border-color: #d96773;
}
.utility-cluster .scroll-top {
  border-radius: 50%;
  background: #fff;
  color: #477050;
}
.utility-cluster .wheel-launch img {
  transition: transform 0.6s;
}
.site-footer {
  background: #e0e8d8;
  border-top: 4px solid #477050;
  padding-top: 36px;
  color: #304b36;
}
.footer-grid {
  gap: 26px;
  padding-right: 75px;
}
.footer-grid nav a {
  color: #3f5843;
  transition:
    color 0.25s,
    transform 0.25s;
  position: relative;
  align-self: flex-start;
}
.footer-grid nav a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ce2939;
  transition: width 0.3s;
}
.footer-bottom {
  border-color: #c2d2b6;
  color: #4f6453;
}
.age {
  border-color: #ce2939;
  color: #477050;
}
.service-block {
  max-width: 1050px;
  margin: auto;
  padding: 36px;
  background: #fff;
}
.service-qa {
  padding-bottom: 20px;
  border-bottom: 1px solid #dce5d5;
}
.service-qa h2 {
  color: #37573c;
}
.page-transition {
  background:
    radial-gradient(ellipse at 80% 5%, #8d253577, transparent 55%), #163d2b;
}
.transition-card {
  background: #193e2dee;
  border: 1px solid #8aaa7866;
  border-radius: 12px;
  box-shadow: 9px 9px 0 #ce29393a;
  padding: 34px;
}
.transition-card:before {
  content: "";
  height: 5px;
  position: absolute;
  left: 25px;
  right: 25px;
  top: 0;
  background: linear-gradient(90deg, #ce2939 0 33%, #fff 33% 66%, #477050 66%);
}
.transition-orbit {
  border-radius: 12px;
  transform: rotate(-6deg);
  border-color: #ccddc455;
}
.transition-caption {
  color: #e7d8d8;
}
.transition-track:after {
  background: linear-gradient(90deg, #ce2939 0 33%, #fff 33% 66%, #83ac77 66%);
}
.transition-orbit:after {
  background: #ce2939;
  box-shadow: 0 0 0 6px #ce293926;
}
.transition-card > p,
.transition-signature {
  color: #bbd0ae;
}
@media (hover: hover) {
  .brand:hover {
    filter: none;
    transform: translateY(-1px);
  }
  .desktop-nav > a:hover {
    color: #b62437;
  }
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
  }
  .button:hover,
  body .hero-actions > .button:not(.store-button):hover,
  body .promo-copy > .button:hover {
    background: #a71f31;
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
      0 5px 0 #761928,
      0 10px 20px #56152225;
  }
  .button:hover:before {
    transform: translateX(125%);
  }
  .button-green:hover {
    background: #3e7048;
  }
  .dock-launch:hover {
    box-shadow: inset 0 -3px #477050;
    background: #e1ecd7;
  }
  .dock-launch:hover img {
    transform: rotate(15deg);
  }
  .dock-launch:hover b {
    transform: translateY(-2px);
  }
  .menu-toggle:hover {
    background: #dce9d3;
  }
  .mobile-menu nav a:hover {
    border-left-color: #ce2939;
    background: #e8f0df;
    padding-left: 20px;
  }
  .side-link:hover {
    padding-left: 20px;
    background: #edf4e6;
    color: #a82738;
  }
  .side-link:hover:after {
    opacity: 1;
    transform: none;
  }
  .article-nav a:hover {
    background: #e5eddc;
    padding-left: 18px;
    color: #264b31;
  }
  .side-game:hover {
    transform: translateY(-3px);
    box-shadow:
      0 4px 0 #ce2939,
      0 9px 18px #24412c16;
  }
  .side-game:hover img {
    transform: scale(0.98);
    box-shadow: none;
  }
  .hero:hover > picture > img {
    transform: scale(1.035);
  }
  .promo-banner:hover > picture > img {
    transform: scale(1.045) translateX(-3px);
  }
  .topic-info-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 8px 0 -4px #cbdcbd,
      0 14px 25px #233f2912;
    border-color: #85a176;
  }
  .bonus-info-card:hover {
    transform: translateX(3px);
    box-shadow: -5px 0 0 #ce2939;
  }
  .comparison:hover {
    box-shadow: 0 0 0 2px #91b18055;
  }
  .comparison.cons:hover {
    box-shadow: 0 0 0 2px #ce293940;
  }
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 #e2ebd9;
  }
  .review-card:hover .review-avatar {
    transform: rotate(-7deg);
    background: #cfdfc0;
  }
  tbody tr:hover td {
    background: #e6efdc;
    box-shadow: inset 0 -1px #a8c096;
  }
  tbody tr:hover td:first-child {
    border-left-color: #ce2939;
    color: #8c2635;
  }
  .faq-item:hover {
    border-color: #8eaa7d;
    box-shadow: 0 4px 14px #29482f12;
  }
  .faq-item summary:hover {
    background: #e9f1e0;
    color: #315c38;
  }
  .faq-item summary:hover:after {
    border-color: #477050;
  }
  body .hero .store-button:hover,
  body .promo-banner .store-button:hover,
  .store-button:hover {
    background: #fff;
    color: #294c34;
    box-shadow: 0 5px 0 #739168;
  }
  .store-button:hover .platform-mark {
    transform: translateY(-3px);
  }
  .game-card:hover {
    background: #e3edd9;
    transform: translateY(-2px);
  }
  .game-card:hover img {
    transform: scale(0.97) rotate(-1deg);
    filter: saturate(1.14);
    box-shadow: 0 0 0 3px #ce2939;
  }
  .rail-toggle:hover {
    background: #d4e3c7;
    box-shadow: inset 3px 0 #ce2939;
  }
  .dock-offer:hover {
    transform: translateX(-2px);
    box-shadow: 4px 0 0 #477050;
  }
  .panel-heading > button:hover,
  .random-bonus-close:hover {
    background: #f4d5d9;
    transform: rotate(90deg);
  }
  .random-bonus-wheel:hover {
    background: #ffffff10;
    box-shadow: inset 0 -3px #ce2939;
  }
  .random-bonus-wheel:hover .random-mini-wheel {
    transform: rotate(180deg);
  }
  .promotion-pause:hover {
    opacity: 1;
  }
  .utility-cluster .wheel-launch:hover {
    border-radius: 50%;
    box-shadow: 0 0 0 4px #ce293929;
  }
  .utility-cluster .wheel-launch:hover img {
    transform: rotate(110deg);
  }
  .utility-cluster .scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 0 #d8e4d0;
  }
  .utility-cluster .utility-chat:hover {
    transform: rotate(-6deg);
    border-radius: 12px 12px 3px 12px;
  }
  .footer-grid nav a:hover {
    color: #9d2738;
    transform: translateX(3px);
  }
  .footer-grid nav a:hover:after {
    width: 100%;
  }
}
@media (min-width: 1700px) {
  .page-layout {
    padding-right: 30px;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
  }
  .footer-grid {
    padding-right: 30px;
  }
}
@media (max-width: 1359px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 75px;
  }
  .sidebar {
    display: none !important;
  }
  body .hero {
    min-height: 440px;
  }
  body .hero-copy {
    width: 60%;
  }
  .hero h1 {
    font-size: 42px;
  }
}
@media (max-width: 1100px) {
  .locale {
    display: none;
  }
  .desktop-nav {
    gap: 20px;
  }
  body .hero-copy {
    width: 66%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .header-tools {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 64px;
  }
  .site-header {
    height: 64px;
  }
  .brand img {
    width: 124px;
  }
  .header-inner {
    gap: 12px;
  }
  .header-tools {
    gap: 7px;
  }
  .dock-launch {
    padding: 5px 8px;
  }
  .page-layout {
    margin-top: 17px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 17px;
  }
  .editorial-article {
    gap: 18px;
  }
  .content-section {
    padding: 21px;
    scroll-margin-top: 85px;
  }
  .content-section > h2 {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 19px;
  }
  .section-body {
    gap: 18px;
  }
  .section-body p,
  .section-body li {
    line-height: 1.8;
  }
  body .hero,
  body .promo-banner {
    padding: 205px 21px 26px;
    min-height: 0;
    height: auto;
    align-items: flex-end;
    border-radius: 12px;
  }
  body .hero-copy,
  body .promo-copy {
    width: 100%;
  }
  body .hero h1 {
    font-size: 30px;
    line-height: 1.16;
  }
  body .hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }
  body .hero > picture,
  body .promo-banner > picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-position: 85% top !important;
    object-fit: cover;
  }
  body .hero:after,
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(
      0deg,
      #102d22 0%,
      #102d22f5 45%,
      #102d2299 68%,
      transparent 100%
    );
  }
  body .promo-banner {
    padding-top: 175px;
  }
  body .promo-title {
    font-size: 26px;
  }
  .promo-copy {
    gap: 15px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hero-actions {
    margin-top: 23px;
  }
  .store-pair {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
  .store-pair > .store-button {
    flex-basis: auto;
    min-width: 0;
    width: 100%;
    max-width: 260px;
  }
  .topic-card-grid,
  .bonus-card-grid,
  .pros-cons,
  .review-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .topic-info-card,
  .bonus-info-card,
  .review-card {
    padding: 19px;
  }
  .review-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .comparison {
    padding: 18px;
  }
  .game-rail {
    padding: 17px;
  }
  .game-card {
    width: 126px;
    flex-basis: 126px;
  }
  .game-card img {
    width: 112px;
    height: 112px;
  }
  .rail-heading p {
    font-size: 17px;
  }
  .faq-item summary {
    font-size: 14px;
    padding-left: 14px;
  }
  .table-wrap td,
  .table-wrap th {
    padding: 12px;
    min-width: 135px;
  }
  .utility-cluster {
    position: fixed;
    right: 10px;
    bottom: 18px;
    flex-direction: column;
    padding: 0;
    background: none;
    gap: 9px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding-right: 16px;
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    font-size: 11px;
  }
  .bonus-dock {
    right: 12px;
    top: 75px;
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 90px);
    padding: 17px;
  }
  .offer-wheel {
    padding: 21px;
    max-width: calc(100vw - 26px);
  }
  .wheel-label {
    font-size: 11px !important;
  }
  .wheel-stage {
    max-width: 285px;
  }
  .panel-heading strong {
    font-size: 19px;
  }
  .random-bonus-content {
    padding: 24px;
  }
  .random-bonus h2 {
    font-size: 29px;
  }
  .random-bonus-brand {
    font-size: 18px;
  }
  .random-bonus-brand span {
    font-size: 8px;
  }
  .service-block {
    padding: 24px;
  }
  .service-block h1 {
    font-size: 29px;
  }
  .menu-scrim {
    top: 64px;
  }
}
@media (max-width: 380px) {
  .page-layout {
    padding-left: 10px;
    padding-right: 10px;
  }
  .utility-cluster {
    right: 7px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  body .hero,
  body .promo-banner {
    padding-left: 17px;
    padding-right: 17px;
  }
  body .hero h1 {
    font-size: 26px;
  }
  .content-section {
    padding: 17px;
  }
  h2 {
    font-size: 22px;
  }
  .brand img {
    width: 115px;
  }
  .header-tools {
    gap: 4px;
  }
  .dock-launch {
    padding: 4px;
  }
  .game-rail {
    padding: 15px;
  }
  .store-button > .store-label > span {
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .promo-copy > .button,
  .dock-offer > .button,
  .wheel-results .button {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.promo-brand {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1;
  box-shadow: 0 3px 12px #071e2426;
}
.promo-brand img {
  display: block;
  width: 128px;
  height: auto;
  max-width: 100%;
}
.random-bonus-top .promo-brand {
  align-self: center;
}
body .promo-copy {
  gap: 16px;
}
body .promo-copy > .eyebrow {
  margin-bottom: 0;
}
body .hero .store-button,
body .promo-banner .store-button,
.store-button {
  background: #244f39;
  color: #fff;
  border-color: #70937b;
  box-shadow: 0 3px 0 #102e20;
}
body .hero .store-button:hover,
body .promo-banner .store-button:hover,
.store-button:hover {
  background: #32684a;
  color: #fff;
  box-shadow: 0 5px 0 #102e20;
}
.store-pair > .store-button {
  flex: 0 1 220px;
  width: 220px;
  min-width: 215px;
  padding: 12px;
  gap: 10px;
}
.store-button > .store-label > span {
  font-size: 12px;
  white-space: normal;
}
.store-button .platform-mark img {
  filter: none;
}
@media (max-width: 1359px) {
  .page-layout {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  html {
    scrollbar-gutter: auto;
  }
  .page-layout {
    width: 100%;
    max-width: none;
    padding-left: 12px;
    padding-right: 12px;
  }
  body .hero h1 {
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: normal;
    font-size: clamp(27px, 7.2vw, 36px);
  }
  body .hero > picture,
  body .promo-banner > picture {
    height: 310px;
  }
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-position: 75% top !important;
  }
  body .hero:after,
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    background: linear-gradient(
      180deg,
      transparent 0,
      #102d2226 140px,
      #102d22 305px
    );
  }
  body .hero,
  body .promo-banner {
    padding-top: 220px;
    background: #102d22;
  }
  body .final-app .promo-copy {
    width: 100%;
  }
  .store-pair > .store-button,
  .final-app .store-pair > .store-button {
    flex: 0 0 auto;
    width: 100%;
    max-width: 290px;
    min-width: 0;
    padding: 12px;
    gap: 10px;
  }
  .final-app .store-pair {
    flex-direction: column;
  }
  .utility-cluster {
    gap: 7px;
    right: 8px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    opacity: 0.9;
  }
}
@media (max-width: 380px) {
  .page-layout {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.random-bonus-close,
.panel-heading > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.random-bonus-close .close-icon,
.panel-heading > button .close-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  pointer-events: none;
}

.game-rail {
  position: relative;
  background: #f8faf5;
  border: 1px solid #ccd9c3;
  border-top: 3px solid #477050;
  box-shadow: 0 6px 22px #23452d09;
  overflow: hidden;
}
.game-rail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #ce2939 0 33.33%,
    #fff 33.33% 66.66%,
    #477050 66.66%
  );
  border-radius: 0 0 3px 3px;
}
.game-rail .rail-heading p {
  color: #254b33;
  font-weight: 700;
}
.game-rail .rail-toggle {
  min-height: 40px;
  min-width: 72px;
  border-radius: 8px;
  color: #31583a;
  background: #e8f0e0;
  border-color: #c7d8ba;
}
.game-rail .rail-toggle[aria-pressed="true"] {
  background: #f9e9eb;
  border-color: #dfabb2;
  color: #9e2436;
}
.game-rail .game-card {
  padding: 6px;
  background: #fff;
  border: 1px solid #d4dfcc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px #23452d06;
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.game-rail .game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px;
  filter: none;
  box-shadow: none;
  transition: transform 0.4s var(--ease);
}
.game-rail .game-card span {
  padding: 3px 5px 5px;
  color: #294c34;
  font-size: 12px;
  line-height: 1.45;
}
.game-rail .game-card:focus-visible {
  outline-color: #ce2939;
  outline-offset: -3px;
}
@media (hover: hover) {
  .game-rail .game-card:hover {
    background: #edf4e6;
    border-color: #88a576;
    transform: translateY(-3px);
    box-shadow:
      inset 0 -3px #ce2939,
      0 5px 12px #23452d12;
  }
  .game-rail .game-card:hover img {
    transform: scale(1.035);
    filter: none;
    box-shadow: none;
  }
  .game-rail .rail-toggle:hover {
    background: #dbe9cf;
    box-shadow: inset 0 -3px #477050;
  }
  .game-rail .rail-toggle[aria-pressed="true"]:hover {
    background: #f3d8dc;
    box-shadow: inset 0 -3px #ce2939;
  }
}
@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;
  }
  .page-transition {
    display: none !important;
  }
}

p,
li,
td,
th,
a,
button,
h1,
h2,
h3 {
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: none;
  hyphens: none;
}
.table-wrap table {
  width: max-content;
  min-width: 100%;
}
.table-wrap th,
.table-wrap td {
  min-width: 190px;
  max-width: none;
}
.table-wrap th:first-child,
.table-wrap td:first-child {
  min-width: 180px;
}
.table-line {
  display: inline-block;
  white-space: nowrap;
}
@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;
  }
  .content-section {
    padding-inline: clamp(16px, 3vw, 24px);
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 220px;
  }
}
@media (max-width: 480px) {
  h1,
  h2,
  h3 {
    word-break: normal;
    overflow-wrap: break-word;
    -webkit-hyphens: none;
    hyphens: none;
  }
  .page-layout {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-section {
    padding-inline: 16px;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: 240px;
  }
  .promo-copy > .button,
  .dock-offer > .button,
  .wheel-results .button {
    white-space: normal;
    overflow-wrap: break-word;
  }
}
