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

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

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

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

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

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

.bonus-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.bonus-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  min-width: 0;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  background: #f0f7f3;
  box-shadow: 0 4px 16px #004e4805;
}
.bonus-info-card:last-child {
  grid-column: 1/-1;
}
.bonus-info-card h3 {
  font-size: 19px;
  line-height: 1.4;
  color: #005345;
  text-wrap: balance;
}
.bonus-info-card p,
.bonus-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.bonus-info-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--card-art);
  background-repeat: no-repeat;
  background-position: var(--card-position, right bottom);
  background-size: auto 290px;
  opacity: 0.2;
  filter: brightness(1.65) saturate(1.15);
  pointer-events: none;
}
.theme-welcome {
  --card-art: url("art/casino.png");
}
.theme-second {
  --card-art: url("art/bonus.png");
  --card-position: left bottom;
  background: #f4f7ef;
}
.theme-reload {
  --card-art: url("art/casino.png");
  background: #fcf7eb;
  border-color: #ede0c2;
}
.theme-sport {
  --card-art: url("art/sport.png");
  --card-position: left bottom;
  background: #eef5f9;
}
.theme-offers {
  --card-art: url("art/bonus.png");
}
.theme-free {
  --card-art: url("art/sport.png");
  --card-position: left bottom;
  background: #f7f3eb;
}
.theme-terms {
  --card-art: url("art/app.png");
  background: #f1f4f6;
}
.byline {
  border: 1px solid #cae0d8;
  border-left: 4px solid var(--green);
  border-radius: 6px;
  padding: 15px 18px;
  color: #194e43;
  background: #eaf4ee;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}
.byline[data-source-index="157"] {
  background: #004e48;
  color: #fff;
  border-color: #004e48;
}
.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f9f6;
  gap: 18px;
  padding: 24px;
}
.review-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("art/bonus.png") right bottom/auto 250px no-repeat;
  opacity: 0.12;
  filter: brightness(1.7);
  pointer-events: none;
}
.review-card-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}
.review-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d5e9df;
  color: #005344;
  font-weight: 700;
  font-size: 13px;
}
.review-source-tag {
  font-size: 11px;
  line-height: 1.5;
  color: #527266;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}
.review-card blockquote p:last-child {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
}
.review-card > p:last-child {
  padding-top: 16px;
  border-top: 1px solid #d6e4dd;
}
.light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("art/app.png");
  background-position:
    center,
    right bottom;
  background-size:
    cover,
    auto 100%;
  background-repeat: no-repeat;
}
body[data-page="index.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("art/sport.png");
}
body[data-page="app.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("art/app.png");
}
body[data-page="bonuses.html"] .light-art-block {
  background-image: linear-gradient(90deg, #fffffff7, #fffffff2), url("art/bonus.png");
}
.comparison {
  background-image: linear-gradient(180deg, #edf7f1f5, #fffffff7), url("art/casino.png");
  background-size: cover;
  background-position: right bottom;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebf5, #fffffff7), url("art/casino.png");
}
.side-responsible {
  background-image: linear-gradient(#fffffff7, #fffffff2), url("art/app.png");
  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),
    url("art/bonus.png") 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: url("art/app.png");
  background-color: #eff5f4;
}
.topic-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.topic-info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid #d3e4dc;
  border-radius: 12px;
  min-width: 0;
  background-color: #f2f7f4;
}
.topic-info-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.topic-info-card h3 {
  font-size: 19px;
  line-height: 1.45;
  color: #005345;
}
.topic-info-card p,
.topic-info-card li {
  font-size: 14px;
  line-height: 1.75;
}
.topic-info-card:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--card-art) var(--card-position, right bottom) / auto 250px no-repeat;
  opacity: 0.17;
  filter: brightness(1.7) saturate(1.15);
  pointer-events: none;
}
body[data-page] .light-art-block {
  background-image: linear-gradient(90deg, #ffffffde, #ffffffe8), var(--card-art, url("art/app.png"));
  background-position: center, var(--card-position, right bottom);
  background-size:
    cover,
    auto 250px;
  background-repeat: no-repeat;
}
.comparison {
  background-image: linear-gradient(180deg, #edf7f1df, #ffffffdb), url("art/casino.png");
  background-size:
    cover,
    auto 260px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.comparison.cons {
  background-image: linear-gradient(180deg, #faf0ebdf, #ffffffdb), url("art/casino.png");
  background-position:
    center,
    left bottom;
}
.side-responsible {
  background-image: linear-gradient(#ffffffe6, #ffffffdc), url("art/app.png");
  background-size:
    cover,
    auto 200px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.side-card:not(.article-nav):not(.side-responsible) {
  background-image: linear-gradient(#fffffff0, #ffffffe0), url("art/sport.png");
  background-size:
    cover,
    auto 240px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.dock-offer {
  background-image: linear-gradient(100deg, #f6fbf8ee, #f1f8f3ce), url("art/bonus.png");
  background-size:
    cover,
    auto 180px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.wheel-results > div {
  background-image: linear-gradient(100deg, #eef7f1ee, #eef7f1d9), url("art/bonus.png");
  background-size:
    cover,
    auto 170px;
  background-position:
    center,
    right bottom;
  background-repeat: no-repeat;
}
.review-source-tag {
  color: #00614b;
  font-weight: 700;
}
@media (max-width: 637px) {
  .topic-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .topic-info-card {
    padding: 18px;
  }
  .topic-info-card h3 {
    font-size: 18px;
  }
}

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

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

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

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

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

.random-bonus {
  width: 480px;
  max-width: calc(100vw - 24px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  border: 1px solid #d3e1cc;
  border-radius: 26px;
  background: #fffef9;
  color: #18392b;
  box-shadow: 0 30px 100px #103b2860;
  overflow: auto;
  overscroll-behavior: contain;
}
.random-bonus::backdrop {
  background: #052e2280;
  backdrop-filter: blur(8px);
}
.random-bonus[open] {
  animation: it-wheel-in 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.random-bonus:before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #008c45 0 33.33%, #f3f2e9 33.33% 66.66%, #cd212a 66.66%);
}
.random-bonus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 0;
}
.random-bonus-brand {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: #086437;
}
.random-bonus-brand > span {
  margin-left: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 650;
  color: #687c69;
}
.random-bonus-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d9e3d8;
  border-radius: 50%;
  background: #f1f5ec;
  font-size: 28px;
  line-height: 1;
  transition:
    background 0.2s,
    transform 0.2s;
}
.random-bonus-close:hover {
  background: #e3ecd9;
  transform: rotate(90deg);
}
.random-bonus-content {
  padding: 0 34px 25px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 10%, #dceccc99, transparent 45%);
}
.random-bonus-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 2px auto 18px;
  border: 1px solid #d2dfc9;
  border-radius: 52px 52px 18px 18px;
  background: linear-gradient(145deg, #eff5e4, #d4e6c7);
  box-shadow:
    inset 0 0 0 7px #fffef980,
    0 8px 20px #16492a0d;
}
.random-bonus-emblem > span {
  color: #08703c;
  font-size: 59px;
  line-height: 1;
  text-shadow: 2px 3px #fffef9;
}
.random-bonus-emblem:before,
.random-bonus-emblem:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #cd212a;
  transform: rotate(25deg);
}
.random-bonus-emblem:before {
  left: -22px;
  top: 32px;
}
.random-bonus-emblem:after {
  right: -23px;
  bottom: 27px;
  background: #08703c;
}
.random-bonus .random-bonus-eyebrow {
  font-size: 11px;
  letter-spacing: 0.17em;
  font-weight: 750;
  color: #08703c;
  margin: 0 0 10px;
}
.random-bonus h2 {
  font-size: clamp(26px, 6.7vw, 35px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #103f29;
  margin: 0 0 12px;
  text-wrap: balance;
}
.random-bonus [data-random-body] {
  font-size: 14px;
  line-height: 1.6;
  color: #526953;
  margin-bottom: 23px;
  text-wrap: balance;
}
.random-bonus .random-bonus-claim {
  display: flex;
  width: 100%;
  min-height: 50px;
  font-size: 15px;
}
.random-bonus-wheel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  margin-top: 15px;
  border: 1px solid #c8dac1;
  border-radius: 10px;
  background: #edf4e7;
  color: #126039;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s;
}
.random-bonus-wheel:hover {
  background: #deecd5;
}
.random-mini-wheel {
  width: 23px;
  height: 23px;
  border: 2px solid white;
  outline: 1px solid #1b7646;
  border-radius: 50%;
  background: conic-gradient(#008c45 0 90deg, #f4f5ef 90deg 180deg, #cd212a 180deg 270deg, #006b3b 270deg);
  transition: transform 0.6s;
}
.random-bonus-wheel:hover .random-mini-wheel {
  transform: rotate(120deg);
}
.random-bonus .random-bonus-note {
  margin: 20px 0 4px;
  font-size: 11px;
  line-height: 1.6;
  color: #677563;
}
.promotion-pause {
  display: block;
  min-height: 44px;
  padding: 10px 4px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.5;
  color: #526953;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 380px) {
  .random-bonus-content {
    padding: 0 22px 15px;
  }
  .random-bonus-emblem {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
  }
  .random-bonus-top {
    padding: 9px 14px 0;
  }
}
@media (max-height: 650px) {
  .random-bonus-emblem {
    width: 65px;
    height: 65px;
    margin: 0 auto 10px;
  }
  .random-bonus-emblem > span {
    font-size: 40px;
  }
  .random-bonus-content {
    padding-bottom: 12px;
  }
  .random-bonus .random-bonus-note {
    margin-top: 12px;
  }
}
:root {
  --green: #007b3d;
  --deep: #063c27;
  --orange: #cd212a;
  --ink: #18392b;
  --page: #f5f5ef;
  --line: #d9e3d8;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --red: #cd212a;
  --control: 260ms;
  --micro: 150ms;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--page);
}
body {
  font-size: 16px;
  line-height: 1.75;
  background: radial-gradient(ellipse at 0 12%, #e6eee480, transparent 40%), #f5f5ef;
}
a {
  color: #006b35;
}
::selection {
  background: #cbe8cf;
  color: #063c27;
}
h1,
h2,
h3 {
  text-transform: none;
  letter-spacing: -0.025em;
  text-wrap: balance;
  hyphens: none !important;
}
h1 {
  font-size: clamp(34px, 3.15vw, 54px);
  line-height: 1.08;
  font-weight: 800;
}
h2 {
  font-size: 28px;
  line-height: 1.24;
  font-weight: 750;
}
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 #b61626;
  outline-offset: 4px;
}
.site-header {
  background: #fffefafa;
  backdrop-filter: blur(18px);
  border: 0;
  box-shadow: 0 2px 16px #163d2210;
}
.site-header:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #008c45 0 33.33%, #fff 33.33% 66.66%, #cd212a 66.66%);
}
.desktop-nav > a {
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 0;
  transition:
    color 0.22s,
    background 0.22s;
}
.desktop-nav > a:after {
  bottom: 16px;
  height: 3px;
  background: linear-gradient(90deg, #008c45 0 33.33%, #cddacc 33.33% 66.66%, #cd212a 66.66%);
  transform-origin: center;
}
.desktop-nav > a[aria-current]:after {
  transform: scaleX(1);
}
.locale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #244e34;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 5px 9px;
}
.locale:before {
  content: "";
  width: 17px;
  height: 11px;
  background: linear-gradient(90deg, #008c45 0 33.33%, white 33.33% 66.66%, #cd212a 66.66%);
  box-shadow: 0 0 0 1px #00000012;
}
.brand {
  transition: transform 0.3s var(--ease);
  position: relative;
}
.brand:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 5px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.35s;
}
body .button,
body .hero-actions > .button:not(.store-button),
body .promo-copy > .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 10px;
  background: #cd212a;
  color: white;
  border: 1px solid #b51923;
  box-shadow: 0 4px 0 #9a1822;
  min-height: 46px;
  transition:
    transform 0.26s var(--ease),
    box-shadow 0.26s,
    background 0.26s;
}
body .button-green {
  background: #00763c;
  border-color: #006532;
  box-shadow: 0 4px 0 #05572f;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, #ffffff32 49%, transparent 67%);
  transform: translateX(-140%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.button:active {
  transform: translateY(3px) !important;
  box-shadow: 0 1px 0 #6e1720 !important;
}
.dock-launch {
  padding: 7px 11px;
  border-radius: 10px;
  background: #eef4eb;
  border: 1px solid #d6e3d4;
  color: #145830;
}
.dock-launch b {
  background: #006b35;
  color: #fff;
  transition: transform 0.3s;
}
.dock-launch img {
  transition: transform 0.45s var(--ease);
}
.menu-toggle {
  border-radius: 10px;
  background: #edf3e9;
}
.mobile-menu {
  border-bottom: 4px solid var(--green);
  border-radius: 0 0 20px 20px;
  background: #fffef9;
}
.mobile-menu nav a {
  border-color: #dbe7d8;
  padding-left: 8px;
  border-left: 3px solid transparent;
}
.mobile-menu nav a[aria-current] {
  border-left-color: var(--red);
  color: var(--green);
}
.menu-scrim {
  background: #063b2855;
  backdrop-filter: blur(3px);
}
.page-layout {
  gap: 24px;
  margin-top: 26px;
}
.side-card,
.content-section,
.game-rail,
.service-block {
  border-radius: 14px;
  border-color: #dce5d9;
  box-shadow: 0 4px 22px #20422405;
}
.side-title {
  background: #eaf0e6;
  color: #31633e;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 13px 15px;
}
.side-link {
  position: relative;
  border-bottom-color: #ebf0e6;
  border-left: 3px solid transparent;
  transition:
    padding 0.25s,
    background 0.25s,
    border-color 0.25s;
}
.article-nav a {
  transition:
    padding 0.25s,
    background 0.25s,
    color 0.25s;
}
.article-nav a[aria-current="true"] {
  background: #edf5e9;
  border-color: #ce2935;
  color: #075b2d;
}
.side-game {
  margin: 14px;
  padding: 9px;
  border-radius: 12px;
  background: #fffffff0;
  border: 1px solid #dce5d9;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.side-game img {
  border-radius: 9px;
}
body .hero,
body .promo-banner {
  border: 1px solid #dfe6d8;
  background: #f6f4ec;
  border-radius: 22px;
  box-shadow: 0 9px 25px #173d2210;
}
body .hero {
  min-height: 430px;
  aspect-ratio: auto;
  padding: 42px 38px;
  align-items: center;
}
body .hero:after {
  background: linear-gradient(90deg, #f8f7f052, #f8f7f01a 48%, transparent 62%);
}
body .hero-copy {
  width: 59%;
  color: #073d26;
}
body .hero h1 {
  color: #073d26;
  text-shadow: none;
  max-width: 610px;
}
body .hero-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #2a4b35;
  max-width: 550px;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #006a34 !important;
  margin-bottom: 16px;
}
.hero .eyebrow:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 3px;
  vertical-align: middle;
  margin-right: 10px;
  background: linear-gradient(90deg, #008c45 0 33.33%, white 33.33% 66.66%, #cd212a 66.66%);
}
.hero > picture > img {
  transition: transform 1.2s var(--ease);
  transform-origin: 80% 50%;
}
.content-section {
  padding: 30px;
  background: #fffffc;
}
.content-section > h2 {
  padding-bottom: 17px;
  border-bottom: 1px solid #dee7d9;
  margin-bottom: 24px;
}
.content-section:before {
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(#008c45 0 33%, #d9e8d9 33% 66%, #cd212a 66%);
  border-radius: 3px;
}
.section-body {
  gap: 21px;
}
.section-body p {
  line-height: 1.8;
}
.section-body li {
  line-height: 1.75;
}
.section-body li::marker {
  color: #b81c28;
  font-weight: 750;
}
.section-body > ul,
.section-body > ol {
  padding-left: 26px;
}
body [data-background-id] {
  --block-overlay: linear-gradient(105deg, #fffdf5d9 12%, #fffdf5ad 55%, #fffdf533) !important;
  background-size: cover, cover !important;
  background-position:
    center,
    right center !important;
  background-color: #fffdf5;
}
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: #11492d;
  background: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
}
.topic-info-card,
.bonus-info-card,
.comparison,
.review-card {
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s,
    border-color 0.32s;
  border-radius: 14px;
}
.topic-info-card {
  border-top: 3px solid #008c45;
  padding: 24px;
}
.topic-info-card:nth-child(3n + 2) {
  border-top-color: #c9d7c5;
}
.topic-info-card:nth-child(3n) {
  border-top-color: #cd212a;
}
.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 #008c45;
}
.bonus-info-card:nth-child(even) {
  border-left-color: #cd212a;
}
.comparison.cons {
  border-top-color: #cd212a;
}
.cons .comparison-sign {
  color: #cd212a;
}
.table-wrap {
  border-radius: 12px;
  box-shadow: 0 2px 10px #143e2105;
}
table {
  font-size: 14px;
  line-height: 1.65;
}
th {
  background: #075932;
  padding: 16px;
  color: #fff;
}
td {
  padding: 16px;
  color: #234733;
  transition:
    background-color 0.2s,
    box-shadow 0.2s;
}
td:first-child {
  background: #eef4e9;
  border-left-color: #81b889 !important;
}
tbody tr:nth-child(even) td {
  background: #f6f8f1;
}
.review-card {
  border-radius: 20px 20px 20px 4px;
  border-color: #cddfc9;
  padding: 26px;
}
.review-card blockquote {
  margin: 0;
  font-style: italic;
}
.review-avatar {
  background: #e8f3e4;
  color: #006c36;
  border: 1px solid #c8ddc4;
  border-radius: 50%;
  transition:
    transform 0.4s,
    background 0.3s;
}
.byline {
  background: #edf3e8;
  border-left-color: #008c45;
  border-radius: 0 10px 10px 0;
  color: #37573a;
}
.faq-item {
  border: 1px solid #d8e5d3;
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.faq-item summary {
  padding: 18px 48px 18px 20px;
  background: #f6f8f0;
  color: #184e2e;
  transition:
    background 0.25s,
    color 0.25s;
}
.faq-item summary:after {
  right: 22px;
  top: 24px;
  border-color: #bd1f2e;
  transition: transform 0.3s;
}
.faq-item[open] {
  border-color: #76a77b;
  box-shadow: inset 4px 0 #008c45;
}
.faq-item[open] summary {
  background: #edf5e7;
}
.faq-answer {
  padding: 2px 20px 22px;
}
body .promo-banner {
  height: auto;
  min-height: 295px;
  aspect-ratio: var(--art-ratio);
  align-items: center;
  padding: 36px;
}
body .promo-banner:after,
body .promo-banner.final-app:after {
  background: linear-gradient(90deg, #fffef7c2, #fffef780 40%, #fffef71f 59%, transparent 70%);
}
body .promo-banner.copy-right:after {
  background: linear-gradient(270deg, #fffef7c2, #fffef780 40%, #fffef71f 59%, transparent 70%);
}
.promo-banner.copy-right > picture {
  transform: scaleX(-1);
}
.promo-banner > picture > img {
  transition: scale 1s var(--ease);
}
body .promo-copy {
  width: 55%;
  gap: 16px;
  color: #0c482a;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
body .promo-title {
  font-size: 31px;
  line-height: 1.18;
  color: #0c482a;
  text-shadow: none;
  letter-spacing: -0.03em;
}
body .promo-copy p:not(.promo-title) {
  color: #315d38;
  line-height: 1.65;
}
.promo-copy .eyebrow {
  margin-bottom: 0;
}
body .hero .store-button,
body .promo-banner .store-button {
  border-radius: 12px;
  background: #056537;
  border-color: #075a32;
  box-shadow: 0 4px 0 #06452a;
  color: white;
}
.store-pair > .store-button {
  flex-basis: 180px;
  width: 180px;
  min-width: 180px;
  padding: 11px 14px;
}
.store-button > .store-label {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.store-button > .store-label > span,
.store-button > .store-label > strong {
  display: block;
  white-space: nowrap;
}
.store-button .platform-mark {
  transition: transform 0.35s;
}
.game-rail {
  padding: 24px;
  background: #fffffc;
  border-top: 3px solid var(--green);
}
.rail-heading p {
  font-size: 20px;
  color: #124b2a;
}
.rail-toggle {
  border: 1px solid #c9dfc2;
  border-radius: 8px;
  background: #edf5e7;
  color: #15542d;
  min-height: 40px;
  min-width: 72px;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.rail-toggle[aria-pressed="true"] {
  background: #fae8e8;
  border-color: #e5b6bc;
  color: #a51a28;
}
.game-card {
  border-radius: 12px;
  padding: 6px;
  background: #f0f5e9;
  border: 1px solid #d8e5cf;
  transition:
    background 0.3s,
    transform 0.3s;
  overflow: hidden;
}
.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 8px;
  transition:
    transform 0.45s var(--ease),
    filter 0.4s;
}
.game-card span {
  font-size: 12px;
  padding: 2px 5px;
  color: #1d4b2e;
}
.bonus-dock {
  background: #fffef8;
  border: 1px solid #bfd8b6;
  border-top: 4px solid #008c45;
  border-radius: 18px;
  box-shadow: 0 20px 60px #183e2833;
}
.bonus-dock:not([hidden]) {
  animation: it-dock-in 320ms var(--ease);
}
@keyframes it-dock-in {
  from {
    transform: translateX(14px);
    clip-path: inset(0 0 5% 0 round 18px);
  }
  to {
    transform: translateX(0);
    clip-path: inset(0 round 18px);
  }
}
.panel-heading strong {
  font-size: 22px;
  color: #074b2b;
}
.panel-heading button {
  border-radius: 50%;
  background: #eff4e9;
  transition:
    transform 0.3s,
    background 0.3s;
}
.dock-offer {
  border-radius: 12px;
  border-left: 3px solid #008c45;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.dock-offer:nth-child(odd) {
  border-left-color: #cd212a;
}
.offer-wheel {
  background: #fffef9;
  border-radius: 24px;
  border: 1px solid #d3e1cc;
  box-shadow: 0 30px 100px #103b2840;
  padding: 28px;
}
.offer-wheel[open] {
  animation: it-wheel-in 320ms var(--ease);
}
@keyframes it-wheel-in {
  from {
    transform: scale(0.97) translateY(12px);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
.offer-wheel::backdrop {
  background: #052e2280;
  backdrop-filter: blur(8px);
}
.wheel-disc {
  border: 7px solid #fff;
  box-shadow:
    0 0 0 3px #0d6e3b,
    0 14px 35px #143e2224;
  background: conic-gradient(#008c45 0deg 90deg, #f4f5ef 90deg 180deg, #cd212a 180deg 270deg, #006b3b 270deg 360deg);
}
.wheel-label {
  color: #fff;
  font-size: clamp(10px, 3.7cqw, 12px);
}
.wheel-label:nth-child(2) {
  color: #12472d;
}
.wheel-label:nth-child(3) {
  color: #fff;
}
.wheel-pointer {
  border-top-color: #cd212a;
  filter: drop-shadow(0 3px 1px #063c2730);
}
.wheel-results > div {
  border: 1px solid #c7dec0;
  border-left: 4px solid #008c45;
  border-radius: 13px;
  padding: 20px;
}
.utility-cluster .wheel-launch {
  background: #08703c;
  border: 2px solid #f0f5e8;
  outline: 1px solid #057337;
}
.utility-cluster .utility-chat {
  background: #cd212a;
  color: #fff;
  border: 2px solid #fff;
}
.utility-cluster .scroll-top {
  border: 0;
  border-radius: 50%;
  color: #076537;
}
.utility-cluster > a,
.utility-cluster > button {
  box-shadow: 0 5px 18px #103c2824;
  transition:
    transform 0.35s var(--ease),
    border-radius 0.35s,
    box-shadow 0.35s;
}
.utility-cluster .wheel-launch img {
  transition: transform 0.5s;
}
.scroll-meter {
  stroke: #cd212a;
}
.scroll-track {
  stroke: #d6e5cf;
}
.site-footer {
  background: #eaf0e4;
  border-top: 0;
  position: relative;
  margin-top: 20px;
  padding-top: 42px;
}
.site-footer:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #008c45 0 33.33%, #fff 33.33% 66.66%, #cd212a 66.66%);
}
.footer-grid nav a {
  color: #315d38;
  width: fit-content;
  background: linear-gradient(#bd2732, #bd2732) 0 100%/0 1px no-repeat;
  transition:
    background-size 0.25s,
    color 0.25s;
}
.footer-bottom {
  border-color: #c9d9c0;
  color: #456144;
  padding-bottom: 36px;
}
.responsible p {
  max-width: 320px;
}
.age {
  border-color: #cd212a;
  color: #07572f;
}
.page-transition {
  background: linear-gradient(130deg, #f6f7ef, #e9f1e3);
}
.transition-card {
  background: #fffefa;
  border-color: #cbddc3;
  color: #064e2b;
  box-shadow: 0 24px 80px #12482719;
  border-radius: 70px 70px 20px 20px;
}
.transition-emblem img {
  filter: none;
}
.transition-orbit {
  border-color: #7caa7c55;
}
.transition-orbit:after {
  background: #cd212a;
  box-shadow: 0 0 0 6px #cd212a12;
}
.transition-caption,
.transition-signature {
  color: #086436;
}
.transition-card > p {
  color: #4b6e48;
}
.transition-track {
  height: 4px;
  background: #e7eee1;
}
.transition-track:after {
  background: linear-gradient(90deg, #008c45 0 33.33%, white 33.33% 66.66%, #cd212a 66.66%);
}
.service-block {
  max-width: 1000px;
  margin: 16px auto;
  padding: 36px;
  background: #fffffc;
  border-top: 4px solid #008c45;
}
.service-block h1 {
  font-size: 38px;
}
.service-qa {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    transform: translateY(-2px);
  }
  .brand:hover:after {
    width: 90%;
  }
  .desktop-nav > a:hover {
    color: #b71c2a;
  }
  .desktop-nav > a:hover:after {
    transform: scaleX(1);
  }
  .mobile-menu nav a:hover {
    background: #edf5e7;
    border-left-color: #cd212a;
    padding-left: 15px;
  }
  body .button:hover,
  body .hero-actions > .button:not(.store-button):hover,
  body .promo-copy > .button:hover {
    background: #b51b27;
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
      0 7px 0 #951620,
      0 12px 22px #9d182521;
  }
  body .button-green:hover {
    background: #005f31;
    box-shadow:
      0 7px 0 #034924,
      0 12px 22px #00683121;
  }
  .button:hover:before {
    transform: translateX(140%);
  }
  .dock-launch:hover {
    background: #dfeeda;
    box-shadow: 0 5px 13px #14572815;
  }
  .dock-launch:hover img {
    transform: rotate(-12deg) scale(1.1);
  }
  .dock-launch:hover b {
    transform: scale(1.12);
  }
  .side-link:hover {
    background: #edf5e7;
    border-left-color: #cd212a;
    padding-left: 20px;
  }
  .article-nav a:hover {
    padding-left: 20px;
    background: #f0f6ea;
    color: #075d30;
  }
  .side-game:hover {
    transform: translateY(-3px);
    box-shadow:
      0 9px 0 -5px #cd212a,
      0 12px 20px #12452512;
  }
  .side-game:hover img {
    transform: scale(0.975);
    box-shadow: none;
  }
  .hero:hover > picture > img {
    transform: scale(1.035);
  }
  .topic-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px #17482713;
    border-color: #7eac7c;
  }
  .bonus-info-card:hover {
    transform: translateX(4px);
    box-shadow:
      -5px 0 0 #d4e8ce,
      0 7px 20px #1c462814;
  }
  .comparison:hover {
    box-shadow: 0 8px 25px #17482716;
    border-color: #5f9663;
  }
  .comparison.cons:hover {
    border-color: #d55e65;
  }
  .review-card:hover {
    transform: rotate(-0.35deg) translateY(-3px);
    box-shadow: 7px 7px 0 #dfead8;
  }
  .review-card:hover .review-avatar {
    transform: rotate(8deg);
    background: #d7ebcf;
  }
  tbody tr:hover td {
    background: #eaf4e4;
    box-shadow: inset 0 -1px #accd9f;
  }
  tbody tr:hover td:first-child {
    border-left-color: #cd212a !important;
    color: #075e30;
  }
  .faq-item:hover {
    border-color: #a8c59e;
    box-shadow: 0 4px 15px #20472209;
  }
  .faq-item summary:hover {
    background: #eaf3e3;
    color: #00682f;
  }
  .promo-banner:hover > picture > img {
    scale: 1.035;
  }
  body .hero .store-button:hover,
  body .promo-banner .store-button:hover {
    background: #00562c;
    box-shadow:
      0 7px 0 #063d25,
      0 12px 22px #00683121;
  }
  .store-button:hover .platform-mark {
    transform: translateY(-3px) rotate(-6deg);
  }
  .game-card:hover {
    background: #dbeccd;
    transform: translateY(-3px);
  }
  .game-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.12);
    box-shadow: none;
  }
  .rail-toggle:hover {
    background: #dbeccc;
    box-shadow: inset 0 -3px #3a8650;
  }
  .panel-heading button:hover {
    transform: rotate(90deg);
    background: #f7dfe1;
  }
  .dock-offer:hover {
    border-color: #a2c694;
    box-shadow: 4px 4px 0 #e4eedc;
  }
  .utility-cluster > a:hover,
  .utility-cluster > button:hover {
    transform: translateX(-4px);
    border-radius: 14px;
    box-shadow: 4px 4px 0 #d7e6d0;
  }
  .utility-cluster .wheel-launch:hover img {
    transform: rotate(90deg);
  }
  .utility-cluster .scroll-top:hover {
    border-radius: 50%;
    transform: translateY(-4px);
  }
  .utility-cluster .utility-chat:hover {
    transform: rotate(-7deg);
  }
  .footer-grid nav a:hover {
    color: #a61c2b;
    background-size: 100% 1px;
  }
}
@media (min-width: 1360px) {
  .page-layout {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 20px;
  }
  .hero h1 {
    font-size: 40px;
  }
  body .hero {
    padding: 34px 30px;
    min-height: 430px;
  }
  body .hero-copy {
    width: 63%;
  }
  body .promo-copy {
    width: 55%;
  }
  .promo-title {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  .hero h1 {
    font-size: 48px;
  }
  body .hero {
    min-height: 450px;
  }
  .container {
    max-width: 1600px;
  }
}
@media (max-width: 1359px) {
  body .hero {
    min-height: 410px;
  }
  body .hero-copy {
    width: 56%;
  }
  .page-layout {
    gap: 20px;
  }
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .header-inner {
    padding-right: 28px;
  }
  .site-footer .container {
    padding-right: 28px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 24px;
  }
  .locale {
    display: none;
  }
  .hero h1 {
    font-size: 40px;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-inner {
    padding-right: 16px;
  }
  .page-layout {
    margin-top: 18px;
  }
  .brand img {
    width: 125px;
  }
  .content-section {
    padding: 22px;
  }
  .content-section > h2 {
    margin-bottom: 20px;
  }
  .section-body {
    gap: 18px;
  }
  h2 {
    font-size: 25px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .desktop-nav {
    display: none;
  }
  .locale {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .container {
    padding-right: 16px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .utility-cluster {
    right: 10px;
    gap: 9px;
  }
  .bonus-dock {
    right: 12px;
    max-width: calc(100vw - 24px);
  }
  .service-block {
    padding: 24px;
  }
  .service-block h1 {
    font-size: 30px;
  }
  .store-pair > .store-button {
    width: 100%;
    min-width: 0;
    flex-basis: auto;
  }
  .store-pair {
    flex-direction: column;
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  body .hero {
    padding: 190px 22px 28px;
    min-height: 460px;
    height: auto;
    aspect-ratio: auto;
    align-items: flex-end;
    border-radius: 18px;
  }
  body .hero-copy,
  body .promo-copy {
    width: 100%;
  }
  body .promo-copy {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  body .hero > picture > img,
  body .promo-banner > picture > img {
    object-position: 78% 35% !important;
    object-fit: cover;
  }
  body .hero > picture,
  body .promo-banner > picture {
    inset: 0;
    width: 100%;
    height: 100%;
  }
  body .hero:after {
    inset: 0;
    height: 100%;
    background: linear-gradient(0deg, #f8f7efeb 0%, #f8f7efd6 42%, #f8f7ef73 70%, transparent 100%);
  }
  body .hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 12px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  body .promo-banner {
    padding: 150px 22px 26px;
    min-height: 390px;
    height: auto;
    aspect-ratio: auto;
    align-items: flex-end;
  }
  .promo-banner.copy-right > picture {
    transform: none;
  }
  body .promo-banner:after,
  body .promo-banner.copy-right:after,
  body .promo-banner.final-app:after {
    inset: 0;
    height: 100%;
    background: linear-gradient(0deg, #f8f7efeb 0%, #f8f7efd6 42%, #f8f7ef73 70%, transparent 100%);
  }
  body .promo-title {
    font-size: 27px;
  }
  .promo-copy {
    gap: 14px;
  }
  .topic-info-card,
  .bonus-info-card {
    padding: 20px;
  }
  .topic-info-card p,
  .topic-info-card li,
  .bonus-info-card p,
  .bonus-info-card li {
    font-size: 14px;
    line-height: 1.8;
  }
  .review-card {
    padding: 22px;
  }
  .table-wrap td,
  .table-wrap th {
    padding: 13px;
    min-width: 135px;
  }
  .game-rail {
    padding: 20px;
  }
  .faq-item summary {
    padding: 16px 42px 16px 16px;
  }
  .faq-answer {
    padding: 0 16px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .offer-wheel {
    padding: 22px;
    max-width: calc(100vw - 24px);
  }
  .panel-heading strong {
    font-size: 20px;
  }
  .wheel-stage {
    max-width: 310px;
  }
  .wheel-label {
    font-size: clamp(10px, 3.6cqw, 12px);
  }
}
@media (max-width: 380px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-inner {
    padding-right: 12px;
  }
  .hero h1 {
    font-size: 30px;
  }
  body .hero,
  body .promo-banner {
    padding-left: 18px;
    padding-right: 18px;
  }
  .content-section {
    padding: 18px;
  }
  h2 {
    font-size: 23px;
  }
  .utility-cluster {
    right: 7px;
  }
  .utility-cluster > a,
  .utility-cluster > button {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }
  .header-tools {
    gap: 6px;
  }
  .dock-launch {
    padding: 5px 8px;
  }
  .brand img {
    width: 114px;
  }
  .menu-toggle {
    width: 37px;
  }
  .button {
    padding-left: 14px;
    padding-right: 14px;
  }
  .service-main {
    padding-right: 12px;
  }
  .site-footer .container {
    padding-right: 12px;
  }
}

.page-layout,
body[data-page] .site-footer .container {
  padding-right: 88px;
}
@media (min-width: 1740px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 30px;
  }
}
@media (max-width: 1359px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 76px;
  }
}
@media (max-width: 767px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 66px;
  }
  .hero h1 {
    font-size: 30px;
  }
}
@media (max-width: 380px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 62px;
  }
  .hero h1 {
    font-size: 26px;
  }
}
@media (max-width: 1359px) {
  .utility-cluster {
    position: fixed;
    left: auto;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border: 0;
    backdrop-filter: none;
  }
}
@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;
    scale: 1 !important;
  }
  .page-transition {
    display: none !important;
  }
}

html {
  overflow-x: clip;
}
body,
body p,
body li,
body a,
body button,
body td,
body th,
body h1,
body h2,
body h3 {
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: none !important;
  hyphens: none !important;
}
.page-layout,
body[data-page] .site-footer .container {
  padding-right: 30px;
}
.utility-cluster {
  position: fixed;
  z-index: 35;
  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 (min-width: 768px) {
  .promo-banner.copy-right[data-offer-id="casino-first"] .promo-copy {
    width: 36%;
    margin-left: auto;
  }
}
@media (max-width: 1359px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 28px;
  }
}
@media (max-width: 767px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 16px;
  }
  .content-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .game-card {
    width: 136px;
    flex-basis: 136px;
  }
  .game-card img {
    width: 136px;
    height: 136px;
  }
  .utility-cluster {
    right: max(8px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
  }
  .table-wrap table {
    width: max-content;
    min-width: 100%;
  }
  .table-wrap th,
  .table-wrap td {
    min-width: max-content;
    white-space: nowrap;
  }
}
@media (max-width: 380px) {
  .page-layout,
  body[data-page] .site-footer .container {
    padding-right: 12px;
  }
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
