*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --site-container: 1024px;
  --site-mobile-width: 90%;
  --header-height: 60px;
  --section-y: 32px;
  --section-y-mobile: 32px;
  --section-gap: 36px;
  --section-gap-lg: 44px;
  --promo-pad-top: 40px;
  --promo-pad-bottom: 40px;
  --promo-facts-gap: 32px;
  --promo-facts-space-before: 20px;
  --promo-facts-space-after: 32px;
  --promo-facts-border: rgba(17, 17, 17, .18);
  --promo-facts-divider: rgba(17, 17, 17, .12);
  --toc-gap-before: 16px;
  --toc-gap-after: 42px;
  --promo-h1-size: 32px;
  --promo-copy-size: 16px;
  --content-h2-size: 24px;
  --content-h3-size: 20px;
  --content-h4-size: 18px;
  --section-title-size: 24px;
  --game-card-title-size: 13px;
  --table-font: 14px;
  --table-cell-y: 12px;
  --table-cell-x: 12px;
  --color-text: #111111;
  --color-muted: #4a4a4a;
  --color-border: #d8d8d8;
  --color-border-soft: #eceff3;
  --color-surface: #fafafa;
  --color-surface-soft: #f6f7f9;
  --control-height: 44px;
  --control-height-sm: 40px;
  --control-radius: 8px;
  --control-radius-sm: 6px;
  --control-radius-pill: 999px;
  --control-font: 15px;
  --control-font-sm: 14px;
  --control-pad-x: 20px;
  --control-pad-x-sm: 14px;
  --tap-target: 44px;
  --footer-icon-h: 32px;
  --footer-icon-h-mobile: 26px;
  --footer-payment-h: 40px;
  --footer-payment-h-mobile: 28px;
  --legal-font: 13px;
  --legal-font-mobile: 12px;
}
@media (min-width: 768px) {
  :root {
    --section-y: 40px;
    --section-gap: 44px;
    --section-gap-lg: 52px;
    --promo-pad-top: 56px;
    --promo-pad-bottom: 48px;
    --promo-facts-gap: 40px;
    --promo-facts-space-before: 30px;
    --promo-facts-space-after: 42px;
    --toc-gap-before: 24px;
    --toc-gap-after: 58px;
    --promo-h1-size: 48px;
    --promo-copy-size: 17px;
    --content-h2-size: 30px;
    --content-h3-size: 22px;
    --content-h4-size: 19px;
    --section-title-size: 30px;
    --game-card-title-size: 14px;
    --table-font: 15px;
    --table-cell-y: 14px;
    --table-cell-x: 20px;
  }
}
@media (min-width: 1100px) {
  :root {
    --promo-h1-size: 56px;
    --content-h2-size: 32px;
    --content-h3-size: 24px;
    --content-h4-size: 20px;
    --section-title-size: 32px;
  }
}
body {
  margin: 0;
  min-width: 320px;
  padding-top: var(--header-height);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.has-modal-open {
  overflow: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: var(--table-cell-y) var(--table-cell-x);
  border-top: 1px solid #e3e3e3;
  font-size: var(--table-font);
  line-height: 1.5;
  vertical-align: top;
}
table tr:first-child th,
table tr:first-child td {
  border-top: 0;
}
table th {
  color: var(--color-text);
  font-weight: 700;
  text-align: left;
}
table td {
  color: var(--color-muted);
}
table tbody tr:nth-child(odd) {
  background: var(--color-surface);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h3 {
  font-weight: 600;
}
.container {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 0;
}
main {
  overflow: visible;
}
main > section,
.content-section,
.site-toc,
.games-section {
  scroll-margin-top: 84px;
}
main > section {
  padding: var(--section-y) 0;
}
.cta-btn,
.primary-btn,
.action-btn,
.first-btn,
.game-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 10px var(--control-pad-x);
  border: 1px solid var(--color-text);
  border-radius: var(--control-radius-pill);
  color: #ffffff;
  background: var(--color-text);
  font-size: var(--control-font);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.secondary-btn,
.second-btn,
.info-btn,
.basic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 10px var(--control-pad-x);
  border: 1px solid #374151;
  border-radius: var(--control-radius-pill);
  color: #ffffff;
  background: #374151;
  font-size: var(--control-font);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.cta-btn:hover,
.primary-btn:hover,
.action-btn:hover,
.first-btn:hover,
.game-card-cta:hover,
.cta-btn:focus-visible,
.primary-btn:focus-visible,
.action-btn:focus-visible,
.first-btn:focus-visible,
.game-card-cta:focus-visible {
  border-color: #444444;
  background: #444444;
  outline: 0;
  transform: translateY(-1px);
}
.secondary-btn:hover,
.second-btn:hover,
.info-btn:hover,
.basic-btn:hover,
.secondary-btn:focus-visible,
.second-btn:focus-visible,
.info-btn:focus-visible,
.basic-btn:focus-visible {
  border-color: #c8c8c8;
  color: #ffffff;
  background: #505d72;
  outline: 0;
  transform: translateY(-1px);
}
#promo,
#promotion,
#promo-block {
  min-height: auto;
  padding: var(--promo-pad-top) 15px var(--promo-pad-bottom);
  color: var(--color-text);
  background: #ffffff;
}
#promo {
  text-align: center;
}
#promo .promo-bonus,
#promotion .wrapper,
#promo-block .container,
.promo-facts .promo-facts__container {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 0;
}
.promo-facts {
  padding: var(--promo-facts-space-before) 15px var(--promo-facts-space-after);
  color: var(--color-text);
  background: #ffffff;
}
#promotion .wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
#promo-block .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
#promo-block .right:empty {
  display: none;
}
.promo-facts .promo-facts__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
#promo h1,
#promotion h1,
#promo-block h1,
.promo-title {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  font-size: var(--promo-h1-size);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
#promotion h1,
#promo-block h1 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}
#promo p,
#promotion p,
#promo-block p {
  width: 100%;
  max-width: none;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: var(--promo-copy-size);
  line-height: 1.7;
}
#promotion p,
#promo-block p {
  margin-right: 0;
  margin-left: 0;
}
.welcome-bonus-text:not(:empty) {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--theme-cta-primary-bg, var(--color-text));
  background: transparent;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
#promo .first-btn,
#promotion .action-btn,
#promo-block .cta-btn {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-width: 300px;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 4px;
  font-size: 17px;
}
#promo .first-btn,
#promo-block .cta-btn {
  margin-top: 18px;
}
#promo .first-btn {
  margin-right: auto;
  margin-left: auto;
}
#promotion .promotion_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
#promotion .action-btn {
  margin-top: 0;
}
.promo-facts__panel,
.promo-facts__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.promo-facts__panel {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--promo-facts-border);
  border-radius: 8px;
  background: var(--promo-facts-divider);
}
.promo-facts__cards {
  gap: 12px;
}
.promo-facts__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.promo-facts__item {
  min-width: 0;
  padding: 14px;
  background: var(--color-text);
}
.promo-facts--cards .promo-facts__item {
  border: 1px solid var(--promo-facts-border);
  border-radius: 8px;
}
.promo-facts__label,
.promo-facts__value {
  display: block;
}
.promo-facts__label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.promo-facts__value {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.site-toc {
  margin: var(--toc-gap-before) 0 var(--toc-gap-after);
  color: var(--color-text);
}
.site-toc__panel,
.site-toc__bar {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--control-radius);
  background: #ffffff;
}
.site-toc__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.site-toc__marker {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 2px solid var(--color-text);
  border-radius: 50%;
}
.site-toc__title {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.site-toc__heading .site-toc__title,
.site-toc summary.site-toc__title {
  margin-bottom: 0;
}
.site-toc summary.site-toc__title {
  display: flex;
  align-items: center;
  min-height: 38px;
  cursor: pointer;
  list-style: none;
}
.site-toc summary.site-toc__title::-webkit-details-marker {
  display: none;
}
.site-toc__list,
.site-toc__sublist {
  display: grid;
  gap: 6px;
}
.site-toc__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.site-toc__sublist {
  margin-top: 7px;
  padding-left: 14px;
}
.site-toc__link {
  display: block;
  min-height: 34px;
  padding: 6px 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-toc__link:hover,
.site-toc__link:focus-visible {
  color: #111111;
  border-color: var(--color-text);
  outline: 0;
}
.site-toc__item--sub .site-toc__link {
  color: #6b6b6b;
  font-size: 14px;
}
.site-toc--classic-collapse .site-toc__panel {
  padding: 0;
  overflow: hidden;
}
.site-toc--classic-collapse .site-toc__title {
  position: relative;
  margin: 0;
  padding: 10px 42px 10px 14px;
}
.site-toc--classic-collapse .site-toc__title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.site-toc--classic-collapse .site-toc__panel[open] .site-toc__title::after {
  content: "-";
}
.site-toc--classic-collapse .site-toc__list {
  padding: 0 14px 14px;
}
.site-toc--tiles .site-toc__panel {
  background: var(--color-surface);
}
.site-toc--tiles .site-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-toc--tiles .site-toc__item {
  flex: 0 1 auto;
  max-width: 100%;
}
.site-toc--tiles .site-toc__link {
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-toc--tiles .site-toc__link:hover,
.site-toc--tiles .site-toc__link:focus-visible {
  border-color: var(--color-text);
}
.site-toc--sticky-lsi {
  position: sticky;
  top: var(--header-height);
  z-index: 25;
  margin-bottom: var(--toc-gap-after);
  padding: 8px 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
}
.site-toc--sticky-lsi .site-toc__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}
.site-toc--sticky-lsi .site-toc__title {
  flex: 0 0 auto;
  margin: 0;
  padding: 0 4px 0 6px;
  color: var(--color-muted);
  font-size: 13px;
  white-space: nowrap;
}
.site-toc--sticky-lsi .site-toc__list {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.site-toc--sticky-lsi .site-toc__list::-webkit-scrollbar {
  display: none;
}
.site-toc--sticky-lsi .site-toc__item {
  flex: 0 0 auto;
}
.site-toc--sticky-lsi .site-toc__link {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-muted);
  background: #ffffff;
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
}
.site-toc--sticky-lsi .site-toc__link:hover,
.site-toc--sticky-lsi .site-toc__link:focus-visible,
.site-toc--sticky-lsi .site-toc__link.is-active {
  border-color: var(--color-text);
  color: #ffffff;
  background: var(--color-text);
}
.content-section {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto var(--section-gap);
  padding: 0;
}
.content-section + .content-section,
#games + .content-section {
  padding-top: var(--section-gap);
}
.content-section > :where(table, .pros-cons-grid) {
  width: 100%;
  max-width: var(--site-container);
}
.content-section h2 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  font-size: var(--content-h2-size);
  font-weight: 700;
}
.content-section h2::after,
#games h2::after,
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
}
.content-section h3 {
  margin: 24px 0 12px;
  font-size: var(--content-h3-size);
  font-weight: 600;
}
.content-section h4 {
  margin: 20px 0 10px;
  font-size: var(--content-h4-size);
}
.content-section p,
.content-section li {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.content-section p + p {
  margin-top: 16px;
}
.content-section ul,
.content-section ol {
  margin: 16px 0;
  padding-left: 22px;
}
.content-section ul {
  list-style: disc;
}
.content-section ol {
  list-style: decimal;
}
.content-section li + li {
  margin-top: 8px;
}
.content-section a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-section table {
  margin: 20px 0 24px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--control-radius);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.content-section table th:first-child,
.content-section table td:first-child {
  width: 34%;
}
.faq-template {
  --faq-surface: var(--theme-surface, var(--color-surface));
  --faq-surface-soft: var(--theme-surface-soft, var(--color-surface-soft));
  --faq-border: rgba(var(--theme-border-soft-rgb, 216, 216, 216), .72);
  --faq-border-strong: var(--theme-border, var(--color-border));
  --faq-text: var(--theme-text, var(--color-text));
  --faq-muted: var(--theme-muted, var(--color-muted));
  --faq-accent: var(--theme-cta-primary-bg, var(--color-text));
  --faq-accent-text: var(--theme-cta-primary-text, #ffffff);
  --faq-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}
.faq-template .faq-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.faq-template .faq-item {
  min-width: 0;
  color: var(--faq-muted);
}
.faq-template .faq-item h3,
.faq-template .faq-question {
  margin: 0;
  color: var(--faq-text);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 600;
  line-height: 1.38;
}
.faq-template .faq-answer {
  margin-top: 10px;
}
.faq-template .faq-answer,
.faq-template .faq-answer p,
.faq-template .faq-answer li {
  color: var(--faq-muted);
}
.faq-template .faq-answer p {
  margin: 0;
}
.faq-template .faq-answer p + p {
  margin-top: 10px;
}
.faq-template .faq-answer :where(ul, ol) {
  margin: 10px 0 0;
  padding-left: 20px;
}
.faq-template .faq-answer ul {
  list-style: disc;
}
.faq-template .faq-answer ol {
  list-style: decimal;
}
.faq-list--classic {
  gap: 0;
}
.faq-list--classic .faq-item {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--faq-border);
}
.faq-list--classic .faq-item + .faq-item {
  padding-top: 18px;
}
.faq-list--classic .faq-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.faq-list--accordion {
  gap: 10px;
}
.faq-list--accordion .faq-item {
  overflow: hidden;
  border: 1px solid var(--faq-border);
  border-radius: var(--control-radius);
  background: var(--faq-surface);
}
.faq-list--accordion .faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.faq-list--accordion .faq-question::-webkit-details-marker {
  display: none;
}
.faq-list--accordion .faq-question__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--faq-border);
  border-radius: 50%;
  color: var(--faq-accent);
  background: rgba(var(--theme-accent-rgb, 17, 17, 17), .1);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.faq-list--accordion .faq-question__icon::before {
  content: "+";
  transform: translateY(-1px);
}
.faq-list--accordion .faq-item[open] {
  border-color: var(--faq-border-strong);
  box-shadow: var(--faq-shadow);
}
.faq-list--accordion .faq-item[open] .faq-question__icon {
  color: var(--faq-accent-text);
  background: var(--faq-accent);
  border-color: var(--faq-accent);
}
.faq-list--accordion .faq-item[open] .faq-question__icon::before {
  content: "-";
  transform: translateY(-2px);
}
.faq-list--accordion .faq-answer {
  margin: 0;
  padding: 0 18px 18px;
}
.faq-list--cards {
  grid-template-columns: minmax(0, 1fr);
}
.faq-list--cards .faq-item {
  padding: 18px;
  border: 1px solid var(--faq-border);
  border-radius: var(--control-radius);
  background: var(--faq-surface);
}
.faq-list--cards .faq-item:nth-child(even) {
  background: var(--faq-surface-soft);
}
.faq-list--numbered {
  counter-reset: faq-item;
}
.faq-list--numbered .faq-item {
  counter-increment: faq-item;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--faq-border);
}
.faq-list--numbered .faq-item:first-child {
  padding-top: 0;
}
.faq-list--numbered .faq-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.faq-list--numbered .faq-item::before {
  content: counter(faq-item);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--faq-accent-text);
  background: var(--faq-accent);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.faq-list--numbered .faq-item h3,
.faq-list--numbered .faq-answer {
  grid-column: 2;
}
.faq-list--numbered .faq-answer {
  margin-top: 0;
}
.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}
.pros-cons-card {
  --pc-accent: #148a54;
  --pc-bg: #ffffff;
  --pc-border: var(--color-border);
  --pc-text: var(--color-muted);
  --pc-heading: var(--color-text);
  --pc-icon: "✓";
  --pc-icon-bg: rgba(20, 138, 84, .12);
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--pc-border);
  border-radius: var(--control-radius);
  background: var(--pc-bg);
}
.pros-cons-card--cons {
  --pc-accent: #c53d3d;
  --pc-icon: "×";
  --pc-icon-bg: rgba(197, 61, 61, .12);
}
.pros-cons-card h3 {
  margin: 0 0 16px;
  color: var(--pc-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.pros-cons-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pros-cons-card li {
  position: relative;
  min-height: 26px;
  padding-left: 36px;
  color: var(--pc-text);
}
.pros-cons-card li + li {
  margin-top: 0;
}
.pros-cons-card li::before {
  content: var(--pc-icon);
  position: absolute;
  top: .12em;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--pc-accent);
  background: var(--pc-icon-bg);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.pros-cons--checks .pros-cons-card {
  box-shadow: 0 10px 28px rgba(17, 17, 17, .06);
}
.pros-cons--checks .pros-cons-card--pros {
  --pc-accent: #11824d;
  --pc-icon: "✓";
}
.pros-cons--checks .pros-cons-card--cons {
  --pc-accent: #c43b3b;
  --pc-icon: "×";
}
.pros-cons--plus-minus .pros-cons-card {
  --pc-bg: #f7f7f7;
  --pc-border: #e0e0e0;
}
.pros-cons--plus-minus .pros-cons-card--pros {
  --pc-accent: #147a51;
  --pc-icon: "+";
}
.pros-cons--plus-minus .pros-cons-card--cons {
  --pc-accent: #b43b3b;
  --pc-icon: "−";
}
.pros-cons--plus-minus .pros-cons-card li::before {
  color: #ffffff;
  background: var(--pc-accent);
}
.pros-cons--dark-signal .pros-cons-card {
  --pc-bg: #111214;
  --pc-border: #262a30;
  --pc-text: #d7deea;
  --pc-heading: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18);
}
.pros-cons--dark-signal .pros-cons-card--pros {
  --pc-accent: #37d082;
  --pc-icon: "✓";
  --pc-icon-bg: rgba(55, 208, 130, .16);
}
.pros-cons--dark-signal .pros-cons-card--cons {
  --pc-accent: #ff6b6b;
  --pc-icon: "×";
  --pc-icon-bg: rgba(255, 107, 107, .16);
}
.pros-cons--soft-panels .pros-cons-card {
  --pc-border: transparent;
}
.pros-cons--soft-panels .pros-cons-card--pros {
  --pc-accent: #147a51;
  --pc-bg: rgba(20, 122, 81, .12);
  --pc-border: rgba(20, 122, 81, .2);
  --pc-icon: "+";
}
.pros-cons--soft-panels .pros-cons-card--cons {
  --pc-accent: #b83f3f;
  --pc-bg: rgba(184, 63, 63, .12);
  --pc-border: rgba(184, 63, 63, .2);
  --pc-icon: "−";
}
.games-copy {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto 24px;
}
.games-copy--outro {
  margin-top: var(--section-gap);
  margin-bottom: 0;
}
.games-copy h3 {
  margin: 22px 0 12px;
  font-size: var(--content-h3-size);
  font-weight: 600;
}
.games-copy p,
.games-copy li {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.games-copy p + p {
  margin-top: 16px;
}
.games-copy ul,
.games-copy ol {
  margin: 16px 0;
  padding-left: 22px;
}
.games-copy ul {
  list-style: disc;
}
.games-copy ol {
  list-style: decimal;
}
#games {
  padding: var(--section-y) 0;
}
#games h2,
.section-title {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 12px;
  font-size: var(--section-title-size);
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}
.gm1 .tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gm1 .tabs::-webkit-scrollbar {
  display: none;
}
.gm1 .tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: var(--control-height);
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: #eeeeee;
  font-size: var(--control-font);
  font-weight: 700;
}
.gm1 .tab.active,
.gm1 .tab:hover,
.gm1 .tab:focus-visible {
  border-color: var(--color-text);
  color: #ffffff;
  background: var(--color-text);
  outline: 0;
}
.gm1 .tab svg {
  width: 18px;
  height: 18px;
}
.gm1 .tab-content {
  display: none;
}
.gm1 .tab-content.active {
  display: block;
}
.gm1 .games-grid,
.gm4 .games {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.gm2 .games-row {
  margin-bottom: 42px;
}
.gm2 .games-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.gm2 .games-row-header h3,
.gm3 .game-title {
  margin: 0;
  font-size: var(--content-h3-size);
  font-weight: 600;
  line-height: 1.2;
}
.gm2 .slider-nav {
  display: flex;
  gap: 8px;
}
.gm2 .slider-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-target);
  height: var(--tap-target);
  border-radius: var(--control-radius-pill);
  color: #ffffff;
  background: var(--color-text);
}
.gm2 .slider-nav button:hover,
.gm2 .slider-nav button:focus-visible {
  background: #444444;
  outline: 0;
}
.gm2 .slider-nav svg {
  width: 18px;
  height: 18px;
}
.gm2 .games-slider {
  overflow: hidden;
}
.gm2 .games-track {
  display: flex;
  gap: 16px;
  transition: transform .35s ease;
  will-change: transform;
}
.gm2 .game-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
}
.gm3 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 34px;
}
.gm3 .game-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 18px;
}
.gm3 .game-btn {
  width: fit-content;
  max-width: 100%;
  align-self: center;
  margin: 0 auto;
  border-radius: 4px;
}
.game-card,
.game-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: #eeeeee;
  text-align: center;
}
.game-card[hidden],
.game-item[hidden] {
  display: none;
}
.game-card img,
.game-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: filter .22s ease, transform .22s ease;
}
.game-card p,
.game-item p {
  min-height: 40px;
  margin: 0;
  padding: 10px 8px;
  overflow: hidden;
  display: block;
  color: var(--color-text);
  font-size: var(--game-card-title-size);
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.game-card-actions {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(17, 17, 17, .68);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
}
.game-card:hover .game-card-actions,
.game-card:focus-within .game-card-actions,
.game-item:hover .game-card-actions,
.game-item:focus-within .game-card-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.game-card:hover img,
.game-card:focus-within img,
.game-item:hover img,
.game-item:focus-within img {
  filter: brightness(.68);
  transform: scale(1.025);
}
.game-card-cta {
  min-width: 76px;
  min-height: var(--control-height-sm);
  padding: 9px var(--control-pad-x-sm);
  border-color: rgba(255, 255, 255, .28);
  border-radius: 4px;
  color: var(--color-text);
  background: rgba(255, 255, 255, .92);
  font-size: var(--control-font-sm);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}
.game-card-cta--play {
  border-color: #f5c84b;
  background: #f5c84b;
}
.game-card-cta:hover,
.game-card-cta:focus-visible {
  color: var(--color-text);
  background: #ffffff;
}
.game-card-cta--play:hover,
.game-card-cta--play:focus-visible {
  border-color: #ffd966;
  background: #ffd966;
}
@media (hover: none), (pointer: coarse) {
  .game-card-actions {
    inset: 0;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(17, 17, 17, .58);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .game-card:hover img,
  .game-card:focus-within img,
  .game-item:hover img,
  .game-item:focus-within img {
    filter: none;
    transform: none;
  }
  .game-card-cta {
    width: min(112px, 100%);
    min-width: 0;
    min-height: var(--control-height-sm);
    padding-right: 10px;
    padding-left: 10px;
    font-size: 13px;
  }
}
@media (max-width: 800px) {
  .game-card-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .game-card-cta {
    width: min(112px, 100%);
    min-width: 0;
  }
}
.gm4 .filter {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .16);
}
.gm4 .filter-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gm4 .filter-search,
.gm4 .providers-modal__search {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface-soft);
}
.gm4 .filter-search {
  flex: 1 1 auto;
}
.gm4 .filter-search-icon,
.gm4 .providers-modal__search-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 12px;
  overflow: hidden;
  border: 2px solid var(--color-muted);
  border-radius: 50%;
  color: transparent;
  font-size: 0;
}
.gm4 .filter-search-icon::after,
.gm4 .providers-modal__search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-muted);
  transform: rotate(45deg);
}
.gm4 .filter-search input,
.gm4 .providers-modal__search input {
  width: 100%;
  min-height: var(--control-height-sm);
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--color-text);
  background: transparent;
  font-size: 15px;
}
.gm4 .filter-search input::placeholder,
.gm4 .providers-modal__search input::placeholder {
  color: var(--color-muted);
}
.gm4 .filter-providers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: var(--control-height);
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface-soft);
  font-size: var(--control-font);
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s ease, background-color .2s ease;
}
.gm4 .filter-providers:hover,
.gm4 .filter-providers:focus-visible {
  border-color: var(--theme-cta-primary-bg, var(--color-text));
  color: var(--theme-cta-primary-text, #ffffff);
  background: var(--theme-cta-primary-bg, var(--color-text));
  outline: 0;
}
.gm4 .filter-tabs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gm4 .filter-tabs::-webkit-scrollbar {
  display: none;
}
.gm4 .filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: var(--control-height);
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface-soft);
  font-size: var(--control-font);
  font-weight: 700;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.gm4 .filter-tab::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: .55;
}
.gm4 .filter-tab:hover,
.gm4 .filter-tab.is-active {
  border-color: var(--theme-cta-primary-bg, var(--color-text));
  color: var(--theme-cta-primary-text, #ffffff);
  background: var(--theme-cta-primary-bg, var(--color-text));
}
.gm4 .filter-tab.is-disabled,
.gm4 .filter-tab:disabled {
  cursor: not-allowed;
  opacity: .42;
  border-color: var(--color-border-soft);
  color: var(--color-muted);
  background: var(--theme-bg, var(--color-surface));
}
.gm4 .games-empty {
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  text-align: center;
}
.gm4 .providers-modal[hidden] {
  display: none;
}
.gm4 .providers-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.gm4 .providers-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}
.gm4 .providers-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 48px auto;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
}
.gm4 .providers-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gm4 .providers-modal__title {
  margin: 0;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}
.gm4 .providers-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface-soft);
  font-size: 15px;
  font-weight: 700;
}
.gm4 .providers-modal__search {
  margin-top: 16px;
}
.gm4 .providers-modal__body {
  max-height: min(60vh, 480px);
  margin-top: 16px;
  overflow-y: auto;
  padding-right: 8px;
}
.gm4 .providers-modal__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
.gm4 .providers-list {
  display: grid;
  gap: 8px;
}
.gm4 .providers-list li[hidden] {
  display: none;
}
.gm4 .providers-list span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  background: var(--color-surface-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.gm4 .providers-modal__empty {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  text-align: center;
}
.footer-disclosure {
  width: 100%;
  max-width: var(--site-container);
  margin: 0 auto;
  padding: 20px 0 0;
  color: #aeb9ca;
  font-size: var(--legal-font);
  line-height: 1.65;
}
.footer-disclosure p {
  margin: 7px 0;
}
.footer-disclosure a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-lang {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 12px;
  background: rgba(0, 0, 0, .1);
}
.footer-lang__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  max-width: 900px;
  margin: 0 auto;
}
.footer-lang__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--control-height-sm);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  color: #f4f7fb;
  background: rgba(255, 255, 255, .07);
  font-size: var(--control-font-sm);
  font-weight: 500;
  line-height: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-lang__link:hover,
.footer-lang__link:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .28);
  outline: 0;
}
.footer-lang__link[aria-current="page"] {
  border-color: rgba(255, 181, 71, .55);
  background: rgba(255, 181, 71, .12);
}
.footer-lang__flag {
  display: inline-block;
  width: 20px;
  aspect-ratio: 4 / 3;
  flex: 0 0 20px;
  border-radius: 2px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
}
.footer-lang__flag--gb { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/gb.svg"); }
.footer-lang__flag--us { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/us.svg"); }
.footer-lang__flag--ca { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/ca.svg"); }
.footer-lang__flag--ie { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/ie.svg"); }
.footer-lang__flag--nz { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/nz.svg"); }
.footer-lang__flag--it { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/it.svg"); }
.footer-lang__flag--de { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/de.svg"); }
.footer-lang__flag--fr { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/fr.svg"); }
.footer-lang__flag--es { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/es.svg"); }
.footer-lang__flag--nl { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/nl.svg"); }
.footer-lang__flag--pt { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/pt.svg"); }
.footer-lang__flag--fi { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/fi.svg"); }
.footer-lang__flag--pl { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/pl.svg"); }
.footer-lang__flag--ro { background-image: url("https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.5.0/flags/4x3/ro.svg"); }
@media (max-width: 1024px) {
  #promo,
  #promotion,
  #promo-block,
  .promo-facts {
    padding-right: 0;
    padding-left: 0;
  }
  .container,
  #promo .promo-bonus,
  #promotion .wrapper,
  #promo-block .container,
  .promo-facts .promo-facts__container,
  .content-section,
  .footer-disclosure {
    width: var(--site-mobile-width);
    max-width: none;
  }
}
@media (min-width: 360px) {
  .promo-facts__panel,
  .promo-facts__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-facts[data-promo-facts-count="3"] .promo-facts__item:last-child,
  .promo-facts[data-promo-facts-count="5"] .promo-facts__item:last-child {
    grid-column: 1 / -1;
  }
}
@media (min-width: 768px) {
  .faq-list--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-list--cards .faq-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .promo-facts[data-promo-facts-count="3"] .promo-facts__panel,
  .promo-facts[data-promo-facts-count="3"] .promo-facts__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .promo-facts[data-promo-facts-count="4"] .promo-facts__panel,
  .promo-facts[data-promo-facts-count="4"] .promo-facts__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .promo-facts[data-promo-facts-count="5"] .promo-facts__panel,
  .promo-facts[data-promo-facts-count="5"] .promo-facts__cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .promo-facts[data-promo-facts-count="6"] .promo-facts__panel,
  .promo-facts[data-promo-facts-count="6"] .promo-facts__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .promo-facts[data-promo-facts-count] .promo-facts__item:last-child {
    grid-column: auto;
  }
  .promo-facts__item {
    padding: 16px 12px;
  }
  .promo-facts__label {
    font-size: 14px;
  }
  .content-section + .content-section,
  #games + .content-section {
    padding-top: var(--section-gap-lg);
  }
}
@media (max-width: 991px) {
  #promo h1,
  #promotion h1,
  #promo-block h1,
  .promo-title {
    font-size: var(--promo-h1-size);
  }
  .gm1 .games-grid,
  .gm3 .game-list,
  .gm4 .games {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .gm2 .game-card {
    flex-basis: calc((100% - 48px) / 4);
  }
  .gm4 .filter-head {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (min-width: 1100px) {
  .promo-facts[data-promo-facts-count="6"] .promo-facts__panel,
  .promo-facts[data-promo-facts-count="6"] .promo-facts__cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  #promotion .promotion_cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .site-toc--classic-collapse .site-toc__list {
    grid-template-columns: 1fr;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 575px) {
  body {
    padding-top: var(--header-height);
  }
  main > section {
    padding: var(--section-y) 0;
  }
  #promo,
  #promotion,
  #promo-block {
    padding: var(--promo-pad-top) 0 var(--promo-pad-bottom);
  }
  #promo h1,
  #promotion h1,
  #promo-block h1,
  .promo-title {
    font-size: var(--promo-h1-size);
  }
  #promo p,
  #promotion p,
  #promo-block p {
    margin-top: 18px;
    font-size: var(--promo-copy-size);
  }
  .welcome-bonus-text:not(:empty) {
    font-size: clamp(18px, 5vw, 20px);
  }
  #promo .first-btn,
  #promotion .action-btn,
  #promo-block .cta-btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    min-height: 54px;
    padding: 14px 18px;
    font-size: 16px;
  }
  #promotion .promotion_cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
  .site-toc--tiles .site-toc__panel {
    padding: 10px;
  }
  .site-toc--tiles .site-toc__title {
    margin-bottom: 8px;
  }
  .site-toc--tiles .site-toc__link {
    min-height: 32px;
    padding: 6px;
    font-size: 13px;
    line-height: 1.2;
  }
  .faq-template .faq-list {
    margin-top: 16px;
  }
  .faq-list--accordion .faq-question {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 12px;
    min-height: 56px;
    padding: 14px;
  }
  .faq-list--accordion .faq-question__icon {
    width: 28px;
    height: 28px;
  }
  .faq-list--accordion .faq-answer {
    padding: 0 14px 14px;
  }
  .faq-list--cards .faq-item {
    padding: 14px;
  }
  .faq-list--numbered .faq-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 12px;
  }
  .faq-list--numbered .faq-item::before {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .site-toc--sticky-lsi .site-toc__bar {
    gap: 6px;
    padding: 7px;
  }
  .site-toc--sticky-lsi .site-toc__title {
    display: none;
  }
  #promotion .promotion_cta {
    align-items: stretch;
  }
  .promo-facts__panel {
    gap: 1px;
    border-radius: 8px;
  }
  .promo-facts__item {
    padding: 12px;
  }
  .promo-facts__value {
    font-size: 18px;
  }
  .content-section h2,
  #games h2,
  .section-title {
    font-size: var(--content-h2-size);
  }
  .content-section h3,
  .pros-cons-card h3,
  .games-copy h3,
  .gm2 .games-row-header h3,
  .gm3 .game-title {
    font-size: var(--content-h3-size);
  }
  .pros-cons-card {
    padding: 18px;
  }
  .gm4 .games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .gm1 .games-grid,
  .gm3 .game-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .gm2 .games-track {
    gap: 12px;
  }
  .gm2 .game-card {
    flex-basis: calc((100% - 12px) / 2);
  }
  .gm2 .slider-nav button {
    width: var(--control-height-sm);
    height: var(--control-height-sm);
  }
  .game-card p,
  .game-item p {
    min-height: 36px;
    font-size: var(--game-card-title-size);
  }
  .game-card-actions {
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
  }
  .game-card-cta {
    width: min(112px, 100%);
    min-width: 0;
  }
  .gm4 .filter {
    padding: 14px;
    border-radius: 4px;
  }
  .gm4 .filter-search,
  .gm4 .providers-modal__search {
    min-height: var(--control-height);
    padding: 0 14px;
  }
  .gm4 .filter-providers,
  .gm4 .filter-tab {
    min-height: var(--control-height-sm);
    padding: 0 var(--control-pad-x-sm);
    border-radius: 4px;
    font-size: var(--control-font-sm);
  }
  .gm4 .providers-modal__dialog {
    width: calc(100% - 24px);
    margin: 24px auto;
    padding: 14px;
    border-radius: 4px;
  }
  .gm4 .providers-modal__title {
    font-size: 18px;
  }
  .gm4 .providers-modal__close {
    width: var(--control-height-sm);
    height: var(--control-height-sm);
    border-radius: 4px;
    font-size: 14px;
  }
  .gm4 .providers-modal__body {
    max-height: min(60vh, 400px);
    padding-right: 4px;
  }
  .gm4 .providers-modal__columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-lang {
    padding: 10px;
  }
  .footer-lang__list {
    gap: 6px;
  }
  .footer-lang__link {
    min-height: 34px;
    padding: 5px 9px;
    font-size: 13px;
  }
  .footer-lang__flag {
    width: 18px;
    flex-basis: 18px;
  }
}
.header-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #242337;
}
.container-collapse {
    width: 100%;
    max-width: var(--site-container, 1024px);
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    height: var(--header-height, 60px);
}
.logo-collapse {
    width: 120px;
    flex: 0 0 120px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.logo-collapse .site-logo-link{
    display:flex;
    align-items:center;
    width:100%;
    height:100%;
    text-decoration:none;
    color:inherit;
}
.burger-collapse {
    display: none;
    width: var(--tap-target, 44px);
    height: var(--tap-target, 44px);
    flex: 0 0 var(--tap-target, 44px);
    padding: 10px 7px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
}
.burger-collapse span {
    width: 30px;
    max-width: 100%;
    height: 2px;
    flex: 0 0 2px;
    background: #fff;
    transition: 0.3s;
}
.burger-collapse.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-collapse.active span:nth-child(2) {
    opacity: 0;
}
.burger-collapse.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.nav-collapse {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}
.nav-collapse ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
    min-width: 0;
}
.nav-collapse .header-menu--dropdown {
    gap: 12px;
}
.nav-collapse .header-menu__item {
    position: relative;
}
.nav-collapse a {
    display: inline-flex;
    align-items: center;
    min-height: var(--control-height-sm, 40px);
    padding: 0 2px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}
.nav-collapse .header-menu__link {
    gap: 6px;
}
.nav-collapse .header-menu--dropdown > .header-menu__item > .header-menu__link {
    font-size: 14px;
}
.nav-collapse .header-menu__item--has-children > .header-menu__link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: .75;
}
.nav-collapse .header-menu__submenu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    z-index: 1003;
    display: grid;
    align-items: stretch;
    gap: 2px;
    min-width: 190px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    background: #1b1b2a;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-collapse .header-menu__item:hover > .header-menu__submenu,
.nav-collapse .header-menu__item:focus-within > .header-menu__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.nav-collapse .header-menu__sublink {
    width: 100%;
    min-height: 32px;
    justify-content: flex-start;
    padding: 7px 10px;
    border-radius: 4px;
    color: #d6d9e8;
    font-size: 14px;
}
.nav-collapse .header-menu__sublink:hover,
.nav-collapse .header-menu__sublink:focus-visible {
    background: rgba(255, 255, 255, .08);
    outline: 0;
}
.header-actions-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    gap: 12px;
    margin-left: auto;
}
.btns-collapse {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btns-collapse button {
    min-height: var(--control-height-sm, 40px);
    padding: 9px 16px;
    cursor: pointer;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    .container-collapse {
        width: var(--site-mobile-width, 90%);
        max-width: none;
        gap: 18px;
    }
    .nav-collapse ul {
        gap: 18px;
    }
    .btns-collapse button {
        padding-right: 14px;
        padding-left: 14px;
    }
}
@media (max-width: 1024px) {
    .burger-collapse {
        display: flex;
    }
    .nav-collapse {
        position: absolute;
        top: var(--header-height, 60px);
        left: 0;
        right: 0;
        background: #242337;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 20px;
    }
    .nav-collapse.active {
        max-height: min(80vh, 720px);
        overflow-y: auto;
    }
    .nav-collapse ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-collapse a {
        width: 100%;
        min-height: var(--tap-target, 44px);
        justify-content: center;
        padding: 8px 0;
    }
    .nav-collapse .header-menu--dropdown {
        gap: 12px;
    }
    .nav-collapse .header-menu__item {
        width: 100%;
    }
    .nav-collapse .header-menu--dropdown > .header-menu__item > .header-menu__link {
        font-size: 15px;
    }
    .nav-collapse .header-menu__item--has-children > .header-menu__link::after {
        display: none;
    }
    .nav-collapse .header-menu__submenu {
        position: static;
        width: 100%;
        min-width: 0;
        gap: 2px;
        padding: 0 0 6px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .nav-collapse .header-menu__sublink {
        min-height: 30px;
        justify-content: center;
        padding: 4px 0;
        color: #c7ccdc;
        font-size: 14px;
    }
    .nav-collapse .header-menu__sublink:hover,
    .nav-collapse .header-menu__sublink:focus-visible {
        background: transparent;
        color: #ffffff;
    }
}
@media (max-width: 520px) {
    .container-collapse {
        gap: 6px;
    }
    .logo-collapse {
        width: 82px;
        flex-basis: 82px;
    }
    .header-actions-collapse {
        gap: 6px;
    }
    .btns-collapse {
        gap: 6px;
    }
    .btns-collapse button {
        min-height: var(--control-height-sm, 40px);
        padding: 6px 8px;
        font-size: 13px;
        line-height: 1.05;
    }
    .burger-collapse {
        width: var(--control-height-sm, 40px);
        height: var(--control-height-sm, 40px);
        flex-basis: var(--control-height-sm, 40px);
        padding: 9px 6px;
    }
    .burger-collapse span {
        width: 28px;
    }
}
@media (max-width: 380px) {
    .logo-collapse {
        width: 76px;
        flex-basis: 76px;
    }
    .btns-collapse {
        gap: 5px;
    }
    .btns-collapse button {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 12px;
    }
}
@media (max-width: 340px) {
    .logo-collapse {
        width: 68px;
        flex-basis: 68px;
    }
    .container-collapse,
    .header-actions-collapse,
    .btns-collapse {
        gap: 4px;
    }
    .btns-collapse button {
        padding-right: 6px;
        padding-left: 6px;
    }
    .burger-collapse {
        width: var(--control-height-sm, 40px);
        height: var(--control-height-sm, 40px);
        flex-basis: var(--control-height-sm, 40px);
        padding: 9px 6px;
    }
}
.f1-footer{background:#0a0c12;color:#dbe3f0;border-top:1px solid rgba(255,255,255,.06);font-size:15px}
.f1-wrap{width:100%;max-width:var(--site-container,1024px);margin:0 auto;padding:28px 0;display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:26px}
.f1-logo{display:inline-flex;align-items:center;min-height:var(--control-height-sm,40px)}
.f1-logo img{display:block}
.f1-contact{margin:12px 0 0;color:#9fb0c3;font-size:14px;line-height:1.5}
.f1-contact a{display:inline-flex;align-items:center;min-height:36px;color:#c7d0e1;text-decoration:none;line-height:1.35;word-break:break-word}
.f1-contact a:hover{color:#fff}
.f1-col .f1-h{margin:0 0 10px;color:#fff;font-size:14px;letter-spacing:.3px;text-transform:uppercase;font-weight:700}
.f1-list{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.f1-list a{display:inline-flex;align-items:center;min-width:32px;min-height:var(--control-height-sm,40px);color:#9fb0c3;text-decoration:none;position:relative;padding:4px 0;line-height:1.35;transition:color .2s}
.f1-list a::after{content:"";position:absolute;left:0;bottom:-2px;width:0;height:2px;background:linear-gradient(90deg,#FF7A1A,#FFB547);transition:width .2s}
.f1-list a:hover{color:#fff}
.f1-list a:hover::after{width:100%}
.f1-badges{border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);padding:16px;background:#080a10;display:flex;flex-direction:column;gap:16px}
.f1-certs,.f1-payments{display:flex;gap:12px;list-style:none;margin:0;padding:0;flex-wrap:wrap;align-items:center;justify-content:center}
.f1-certs img{height:var(--footer-icon-h,32px);width:auto;filter:brightness(0.95)}
.f1-payments img{height:var(--footer-payment-h,40px);width:auto;padding:4px 8px;background:transparent;border-radius:6px}
.f1-legal{width:100%;max-width:var(--site-container,1024px);margin:0 auto;padding:16px 0;text-align:center}
.f1-small{margin:0;color:#9fb0c3;font-size:var(--legal-font,13px);line-height:1.6}
.f1-small a{color:#cfe2ff;text-decoration:none;border-bottom:1px solid transparent;transition:border-color .2s}
.f1-small a:hover{color:#fff;border-bottom-color:#fff}
@media (max-width:1024px){.f1-wrap,.f1-legal{width:var(--site-mobile-width,90%);max-width:none}.f1-wrap{grid-template-columns:1.4fr 1fr 1fr}}
@media (max-width:768px){
  .f1-wrap{grid-template-columns:1fr 1fr}
  .f1-brand{grid-column:1/-1;border-bottom:1px solid rgba(255,255,255,.06);padding-bottom:16px;margin-bottom:8px}
  .f1-certs img{height:var(--footer-icon-h-mobile,26px)}
  .f1-payments img{height:var(--footer-payment-h-mobile,28px)}
}
@media (max-width:520px){
  .f1-wrap{grid-template-columns:1fr}
  .f1-certs,.f1-payments{gap:8px}
  .f1-certs img{height:var(--footer-icon-h-mobile,26px)}
  .f1-payments img{height:var(--footer-payment-h-mobile,28px);padding:3px 6px}
  .f1-small{font-size:var(--legal-font-mobile,12px)}
}
.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}
.game-item {
    background: #242337;
    border-radius: 6px;
    text-align: center;
    flex: 0 0 calc(20% - 13px);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.2s;
}
.game-item:hover {
    transform: translateY(-4px);
}
.game-item img {
    width: 100%;
    display: block;
}
.game-item p {
    font-size: 14px;
    margin: 10px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.game-btn {
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    margin: 0 auto;
    display: block;
    text-align: center;
    max-width: 250px;
}
.game-btn:hover {
    background: #505d72;
    color: #000;
}
@media (max-width: 1024px) {
	.game-list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
  		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.game-list::-webkit-scrollbar {
  		display: none;
	}
    .game-item {
        flex: 0 0 calc(25% - 12px);
    }
}
@media (max-width: 768px) {
    .game-item {
        flex: 0 0 calc(33.33% - 12px);
    }
}
@media (max-width: 500px) {
    .game-item {
        flex: 0 0 calc(50% - 12px);
    }
    .game-btn {
        width: 100%;
        border-radius: 6px;
    }
}
body, button, input, select, textarea, a { font-family: 'Noto Sans', sans-serif; }
code, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace; }
:root {
  --theme-bg: #000614;
  --theme-bg-rgb: 0, 6, 20;
  --theme-text: #F6F8FB;
  --theme-muted: #A7ABB1;
  --theme-chrome-bg: #000616;
  --theme-chrome-rgb: 0, 6, 22;
  --theme-chrome-text: #FFFFFF;
  --theme-surface: #1A2030;
  --theme-surface-soft: #2A303E;
  --theme-table-bg: #1A2030;
  --theme-table-head-bg: #1D3657;
  --theme-cta-primary-bg: #288FF2;
  --theme-cta-primary-hover: #237ED5;
  --theme-cta-primary-text: #FFFFFF;
  --theme-cta-secondary-bg: #2A303E;
  --theme-cta-secondary-hover: #424855;
  --theme-cta-secondary-text: #FFFFFF;
  --theme-border: #393E4C;
  --theme-border-rgb: 57, 62, 76;
  --theme-border-soft: #2C3140;
  --theme-border-soft-rgb: 44, 49, 64;
  --theme-accent: #288FF2;
  --theme-accent-rgb: 40, 143, 242;
  --theme-accent-soft: #1D3453;
  --theme-footer-badges-bg: #1A2030;
  --color-text: var(--theme-text);
  --color-muted: var(--theme-muted);
  --color-border: var(--theme-border);
  --color-border-soft: var(--theme-border-soft);
  --color-surface: var(--theme-surface);
  --color-surface-soft: var(--theme-surface-soft);
}
html,
body {
  background: var(--theme-bg);
}
body,
main {
  color: var(--theme-text);
  background: var(--theme-bg);
}
h1,
h2,
h3,
h4,
h5,
h6,
table th {
  color: var(--theme-text);
}
table {
  background: var(--theme-table-bg);
}
table th {
  background: var(--theme-table-head-bg);
}
table td {
  color: var(--theme-muted);
}
table th,
table td {
  border-top-color: var(--theme-border-soft);
}
table tbody tr:nth-child(odd) {
  background: var(--theme-surface);
}
table tbody tr:nth-child(even) {
  background: var(--theme-table-bg);
}
.cta-btn,
.primary-btn,
.action-btn,
.first-btn,
.game-card-cta,
.btn-signup-collapse,
.btn-signup-slide,
.btn-signup-fade,
.btns-collapse .btn-signup-collapse,
.btns-slide .btn-signup-slide,
.btns-fade .btn-signup-fade {
  border-color: var(--theme-cta-primary-bg);
  color: var(--theme-cta-primary-text);
  background: var(--theme-cta-primary-bg);
}
.cta-btn:hover,
.primary-btn:hover,
.action-btn:hover,
.first-btn:hover,
.game-card-cta:hover,
.cta-btn:focus-visible,
.primary-btn:focus-visible,
.action-btn:focus-visible,
.first-btn:focus-visible,
.game-card-cta:focus-visible,
.btn-signup-collapse:hover,
.btn-signup-slide:hover,
.btn-signup-fade:hover,
.btn-signup-collapse:focus-visible,
.btn-signup-slide:focus-visible,
.btn-signup-fade:focus-visible,
.btns-collapse .btn-signup-collapse:hover,
.btns-slide .btn-signup-slide:hover,
.btns-fade .btn-signup-fade:hover,
.btns-collapse .btn-signup-collapse:focus-visible,
.btns-slide .btn-signup-slide:focus-visible,
.btns-fade .btn-signup-fade:focus-visible {
  border-color: var(--theme-cta-primary-hover);
  color: var(--theme-cta-primary-text);
  background: var(--theme-cta-primary-hover);
}
.secondary-btn,
.second-btn,
.info-btn,
.basic-btn,
.btn-login-collapse,
.btn-login-slide,
.btn-login-fade,
.btns-collapse .btn-login-collapse,
.btns-slide .btn-login-slide,
.btns-fade .btn-login-fade {
  border-color: var(--theme-cta-secondary-bg);
  color: var(--theme-cta-secondary-text);
  background: var(--theme-cta-secondary-bg);
}
.secondary-btn:hover,
.second-btn:hover,
.info-btn:hover,
.basic-btn:hover,
.secondary-btn:focus-visible,
.second-btn:focus-visible,
.info-btn:focus-visible,
.basic-btn:focus-visible,
.btn-login-collapse:hover,
.btn-login-slide:hover,
.btn-login-fade:hover,
.btn-login-collapse:focus-visible,
.btn-login-slide:focus-visible,
.btn-login-fade:focus-visible,
.btns-collapse .btn-login-collapse:hover,
.btns-slide .btn-login-slide:hover,
.btns-fade .btn-login-fade:hover,
.btns-collapse .btn-login-collapse:focus-visible,
.btns-slide .btn-login-slide:focus-visible,
.btns-fade .btn-login-fade:focus-visible {
  border-color: var(--theme-cta-secondary-hover);
  color: var(--theme-cta-secondary-text);
  background: var(--theme-cta-secondary-hover);
}
#promo,
#promotion,
#promo-block,
#promo-facts {
  color: var(--theme-text);
  background: var(--theme-bg);
}
#promo p,
#promotion p,
#promo-block p,
#promo-facts p,
.content-section p,
.content-section li,
.games-copy p,
.games-copy li {
  color: var(--theme-muted);
}
.site-toc__panel,
.site-toc__bar,
.site-toc--tiles .site-toc__panel,
.site-toc--tiles .site-toc__link,
.site-toc--sticky-lsi .site-toc__link,
.pros-cons-card,
.game-card,
.game-item,
.gm1 .tab {
  border-color: var(--theme-border);
  color: var(--theme-text);
  background: var(--theme-surface);
}
.welcome-bonus-text:not(:empty) {
  color: var(--theme-cta-primary-bg);
}
.promo-facts {
  --promo-facts-border: rgba(var(--theme-border-soft-rgb), .58);
  --promo-facts-divider: rgba(var(--theme-border-soft-rgb), .38);
}
.faq-template {
  --faq-surface: var(--theme-surface);
  --faq-surface-soft: var(--theme-surface-soft);
  --faq-border: rgba(var(--theme-border-soft-rgb), .72);
  --faq-border-strong: var(--theme-border);
  --faq-text: var(--theme-text);
  --faq-muted: var(--theme-muted);
  --faq-accent: var(--theme-cta-primary-bg);
  --faq-accent-text: var(--theme-cta-primary-text);
  --faq-shadow: 0 14px 34px rgba(var(--theme-chrome-rgb), .16);
}
.site-toc--sticky-lsi {
  background: rgba(var(--theme-bg-rgb), .94);
}
.site-toc__link,
.site-toc--sticky-lsi .site-toc__title,
.site-toc__item--sub .site-toc__link {
  color: var(--theme-muted);
}
.site-toc__link:hover,
.site-toc__link:focus-visible,
.content-section a {
  color: var(--theme-text);
}
.site-toc--sticky-lsi .site-toc__link:hover,
.site-toc--sticky-lsi .site-toc__link:focus-visible,
.site-toc--sticky-lsi .site-toc__link.is-active,
.gm1 .tab.active,
.gm1 .tab:hover,
.gm1 .tab:focus-visible,
.gm2 .slider-nav button {
  border-color: var(--theme-cta-primary-bg);
  color: var(--theme-cta-primary-text);
  background: var(--theme-cta-primary-bg);
}
.promo-facts__panel {
  border-color: var(--promo-facts-border);
  background: var(--promo-facts-divider);
}
.promo-facts__item {
  border-color: var(--promo-facts-border);
  background: var(--theme-surface);
}
.promo-facts__label {
  color: var(--theme-muted);
}
.promo-facts__value,
.game-card p,
.game-item p {
  color: var(--theme-text);
}
.content-section h2::after,
#games h2::after,
.section-title::after {
  background: var(--theme-border);
}
.pros-cons-card {
  --pc-bg: var(--theme-surface);
  --pc-border: var(--theme-border);
  --pc-text: var(--theme-muted);
  --pc-heading: var(--theme-text);
}
.pros-cons--plus-minus .pros-cons-card,
.pros-cons--dark-signal .pros-cons-card {
  --pc-bg: var(--theme-surface);
  --pc-border: var(--theme-border);
  --pc-text: var(--theme-muted);
  --pc-heading: var(--theme-text);
}
.header-collapse,
.header-slide,
.header-fade,
.nav-collapse,
.nav-slide-wrapper,
.nav-fade-wrapper,
.f1-footer,
.f2,
.f3 {
  color: var(--theme-chrome-text);
  background: var(--theme-chrome-bg);
}
.nav-collapse .header-menu__submenu,
.nav-slide .header-menu__submenu {
  border-color: var(--theme-border);
  background: var(--theme-surface);
}
.nav-collapse a,
.nav-slide a,
.nav-fade a,
.burger-collapse span,
.burger-slide span,
.burger-fade span,
.close-slide::before,
.close-slide::after,
.close-fade::before,
.close-fade::after {
  color: var(--theme-chrome-text);
}
.burger-collapse span,
.burger-slide span,
.burger-fade span,
.close-slide::before,
.close-slide::after,
.close-fade::before,
.close-fade::after {
  background: var(--theme-chrome-text);
}
.nav-collapse .header-menu__sublink,
.nav-slide .header-menu__sublink,
.nav-fade .header-menu__sublink {
  color: var(--theme-muted);
}
.nav-collapse .header-menu__sublink:hover,
.nav-collapse .header-menu__sublink:focus-visible,
.nav-slide .header-menu__sublink:hover,
.nav-slide .header-menu__sublink:focus-visible,
.nav-fade .header-menu__sublink:hover,
.nav-fade .header-menu__sublink:focus-visible {
  color: var(--theme-text);
  background: rgba(var(--theme-accent-rgb), .14);
}
.f1-badges,
.f2-payments-ribbon,
.f2-certs-ribbon {
  border-color: var(--theme-border);
  background: var(--theme-footer-badges-bg);
}
.f2-bottom,
.f2-responsible {
  border-color: var(--theme-border);
  background: var(--theme-surface);
}
.f1-contact,
.f1-contact a,
.f1-list a,
.f1-small,
.f2-grid a,
.f2-bottom-inner,
.f2-responsible-inner p,
.f2-responsible-inner a,
.f3-menu a,
.f3-email,
.f3-legal-links a,
.f3-legal p,
.footer-disclosure,
.footer-disclosure p {
  color: var(--theme-muted);
}
.f1-col .f1-h,
.f2-grid h4,
.f3-menu a:hover,
.f3-menu a:focus-visible,
.f1-contact a:hover,
.f1-list a:hover,
.f1-small a,
.f2-grid a:hover,
.f2-grid a:focus-visible,
.f2-responsible-inner a:hover,
.f3-email:hover,
.f3-legal-links a:hover,
.f3-legal-links a:focus-visible,
.f3-legal a,
.footer-disclosure a {
  color: var(--theme-text);
}
.f1-list a::after {
  background: linear-gradient(90deg, var(--theme-cta-primary-bg), var(--theme-accent-soft));
}
.footer-lang {
  border-top-color: var(--theme-border);
  background: rgba(var(--theme-chrome-rgb), .72);
}
.footer-lang__link {
  border-color: var(--theme-border);
  color: var(--theme-muted);
  background: var(--theme-surface);
}
.footer-lang__link:hover,
.footer-lang__link:focus,
.footer-lang__link[aria-current="page"] {
  border-color: var(--theme-accent);
  color: var(--theme-text);
  background: rgba(var(--theme-accent-rgb), .18);
}
.site-toc__panel,
.site-toc__bar,
.site-toc--tiles .site-toc__panel,
.site-toc--tiles .site-toc__link,
.site-toc--sticky-lsi .site-toc__link {
  background: transparent;
}
.site-toc--sticky-lsi {
  background: rgba(var(--theme-bg-rgb), .82);
}
.site-toc--sticky-lsi .site-toc__link:hover,
.site-toc--sticky-lsi .site-toc__link:focus-visible,
.site-toc--sticky-lsi .site-toc__link.is-active,
.site-toc--tiles .site-toc__link:hover,
.site-toc--tiles .site-toc__link:focus-visible {
  border-color: var(--theme-accent);
  color: var(--theme-accent);
  background: transparent;
}
.content-section--registration > ol {
  --registration-step-size: 34px;
  --registration-step-gap: 12px;
  --registration-step-border: rgba(var(--theme-border-soft-rgb, 216, 216, 216), .66);
  --registration-step-bg: var(--theme-surface, var(--color-surface));
  --registration-step-bg-soft: var(--theme-surface-soft, var(--color-surface-soft));
  counter-reset: registration-step;
  list-style: none;
  padding-left: 0;
}
.content-section--registration > ol > li {
  counter-increment: registration-step;
  margin-top: 0;
}
.content-section--registration > ol > li + li {
  margin-top: 0;
}
.content-section--registration > ol {
  display: grid;
  gap: 12px;
}
.content-section--registration > ol > li {
  position: relative;
  min-width: 0;
  padding: 15px 16px 15px 58px;
  border: 1px solid var(--registration-step-border);
  border-radius: 8px;
  color: var(--theme-muted, var(--color-muted));
  background: var(--registration-step-bg);
}
.content-section--registration > ol > li::before {
  content: counter(registration-step);
  position: absolute;
  top: 15px;
  left: 16px;
  display: inline-grid;
  width: 30px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--theme-cta-primary-text, #ffffff);
  background: var(--theme-cta-primary-bg, var(--color-text));
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 575px) {
  .content-section--registration > ol {
    gap: 10px;
  }
  .content-section--registration > ol > li {
    padding: 13px 14px 13px 52px;
  }
  .content-section--registration > ol > li::before {
    top: 13px;
    left: 14px;
    width: 28px;
  }
}
@media (min-width: 768px) {
  .content-section--registration > ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-section--registration > ol > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}