* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-size: 16px;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a:hover {
  text-decoration: none;
}

img {
  display: block;
  vertical-align: middle;
  shape-margin: 1rem;
  height: auto;
  max-width: 100%;
  font-style: italic;
  background-size: cover;
  background-repeat: no-repeat;
}

p {
  margin-top: 1rem;
}

html {
  scroll-behavior: smooth;
}

ol,
ul {
  margin-top: 1rem;
  padding-left: 16px;
}

:root {
  --color-text: #000;
  --color-accent: #07df41;
  --color-heading: #000;
  --color-background: #fff;
  --color-background-transpatent: #FFFFFF26;
  --color-background-transpatent-10: rgba(255, 255, 255, 0.1);
  --color-background-light: #424549;
  --color-background-body: #f3f3f6;
  --color-header:#eef0f8;
  --container-witdh: 1272px;
  --offsets: 16px;
  --ff-primary: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen-sans, ubuntu, cantarell, "Helvetica Neue", sans-serif;
  --background-primary-button: linear-gradient(180deg,rgba(109,47,224,0) 21.22%,#6d2fe0 78.49%),linear-gradient(270deg,#8447f6 49.98%,#5617cb 50%);
  --background-secondary-button: linear-gradient(180deg,rgba(84,191,35,0) 21.22%,#46b62c 78.49%),linear-gradient(270deg,#6acf15 49.98%,#209b44 50%);
	--accent: #3959d9
}

.hidden_svg {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

body {
  --sb-track-color: #000;
  --sb-thumb-color: #8447f6;
  --sb-size: 14px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  border-radius: 3px;
  background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.page,
.post,
.error404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--ff-primary);
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-text);
  background: var(--color-background-body);
}

* + .wp-block-heading {
  margin-top: 1rem;
}

.wp-block-heading {
  color: var(--color-heading);
}

h1 {
  font-weight: 700;
  font-size: 44px;
  line-height: normal;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

@media (width <= 1023px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}
* + .wp-block-list {
  margin-top: 1rem;
}

.wp-block-list {
  display: grid;
  list-style: none;
  padding: 0;
  gap: 8px;
}

ol.wp-block-list {
  counter-reset: olNum;
}
ol.wp-block-list li {
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-style: normal;
}
ol.wp-block-list li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  position: absolute;
  left: 5px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: var(--accent, #07df41);
}

ul.wp-block-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 400;
}
ul.wp-block-list li::before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='6' fill='%233959d9'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 0;
}

.get-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.sf-link {
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-main {
  display: grid;
  flex-grow: 1;
  gap: 40px;
}

.container {
  margin: 0 auto;
  padding: 0 var(--offsets);
  max-width: calc(var(--container-witdh) + 2 * var(--offsets));
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 16px;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: var(--color-heading);
  transition: all 0.2s ease 0s;
  cursor: pointer;
  gap: 8px;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.8;
  }
}
.btn--primary {
  background: var(--background-primary-button);
}
.btn--secondary {
  background: var(--background-secondary-button);
}
.btn--transparent {
  border: 1px solid var(--color-heading);
  background: transparent;
  backdrop-filter: blur(7px);
}
.btn--gray {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 16px;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
  color: var(--color-heading);
  background: var(--color-background-transpatent);
  gap: 8px;
}
.btn--gray::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='9' viewBox='0 0 18 9' fill='none'%3E%3Cpath d='M17.3536 4.85355C17.5488 4.65829 17.5488 4.34171 17.3536 4.14645L14.1716 0.964466C13.9763 0.769204 13.6597 0.769204 13.4645 0.964466C13.2692 1.15973 13.2692 1.47631 13.4645 1.67157L16.2929 4.5L13.4645 7.32843C13.2692 7.52369 13.2692 7.84027 13.4645 8.03553C13.6597 8.2308 13.9763 8.2308 14.1716 8.03553L17.3536 4.85355ZM0 5H17V4H0V5Z' fill='white'/%3E%3C/svg%3E");
  transition: all 0.2s ease 0s;
}
.btn--content:not(.btn--gray) {
  margin-top: 1rem;
  min-width: 240px;
  font-size: 18px;
}
@media (width <= 575px) {
  .btn--content:not(.btn--gray) {
    width: 100%;
  }
}
@media (hover: hover) {
  .btn--gray:hover::after {
    translate: 10px 0;
  }
}
.btn svg {
  display: inline-block;
  height: 24px;
  min-width: 24px;
  max-width: 24px;
}

* + .wp-block-table {
  margin-top: 1rem;
}

.wp-block-table {
  overflow-x: auto;
  scrollbar-width: thin;
}

.wp-block-table table {
  border-spacing: 4px;
  width: 100%;
  height: auto;
}

.wp-block-table thead {
  background-color: var(--color-background);
}

.wp-block-table th {
  padding: 20px 8px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: var(--color-heading);
}
.wp-block-table th:first-child {
  border-radius: 8px 0 0 8px;
}
.wp-block-table th:last-child {
  border-radius: 0 8px 8px 0;
}

.wp-block-table td {
  border-radius: 8px;
  padding: 16px 8px;
  line-height: 120%;
  text-align: center;
  color: var(--color-text);
  background: var(--color-background-transpatent-10);
}

.wp-block-table td:has(img) {
  min-width: 200px;
  white-space: nowrap;
}

.wp-block-table td img {
  display: inline-block;
  margin-right: 6px;
  width: fit-content;
  max-height: 18px;
  object-fit: contain;
  translate: 0 -2px;
}

.wp-block-table td > *:first-child {
  margin-top: 0;
}

.wp-block-table td ol,
.wp-block-table td ul {
  text-align: left;
}

@media (width <= 767px) {
  .wp-block-table td:has(img) {
    min-width: auto;
  }
  .wp-block-table td img {
    display: block;
    margin: 0 auto 5px;
    translate: none;
  }
}
.breadcrumbs {
  padding: 10px 0;
  background-color: var(--color-background);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__item::after {
  content: url("data:image/svg+xml,%3Csvg width='5' height='13' viewBox='0 0 5 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.6733 0.340908L1.39205 12.5312H0.318182L3.59943 0.340908H4.6733Z' fill='%23C4CED7'/%3E%3C/svg%3E%0A");
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs__link {
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: var(--color-text);
}
.breadcrumbs__link--no-active {
  color: var(--color-accent);
}

@media (hover: hover) {
  .breadcrumbs__link:hover {
    color: var(--color-accent);
  }
}
.payments-systems {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.payments-systems__item {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
}

.payments-systems__item img {
  width: fit-content;
  max-height: 35px;
  object-fit: contain;
}

@media (width <= 767px) {
  .payments-systems {
    justify-content: space-between;
  }
  .payments-systems__item {
    flex-grow: 0;
  }
  .payments-systems__item img {
    max-height: 25px;
  }
}
.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.social__title {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-heading);
}

.scroll-to-top {
  position: fixed;
  right: var(--offsets);
  bottom: 80px;
}

.scroll-to-top__button {
  border-radius: 8px;
  width: 40px;
  height: 40px;
  box-shadow: 0 0 24.5px 0 rgba(0, 0, 0, 0.15);
  color: var(--color-background);
  background-color: var(--accent);
  transition: color 0.2s ease-in-out;
}

.scroll-to-top__button svg {
  fill: currentcolor;
  pointer-events: none;
}

@media (hover: hover) {
  .scroll-to-top__button:hover {
    color: var(--color-accent);
  }
}
.mobile-button {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 6px;
}

.mobile-button--main {
  background: linear-gradient(270deg, #3E3078 11.64%, #684AF2 100%);
}

.mobile-button--app {
  background: linear-gradient(90deg, #6ACF15 0%, #209B44 100%);
}

.mobile-button--main img {
  flex-shrink: 0;
  margin: -10px 0;
  width: fit-content;
  max-height: 56px;
  object-fit: contain;
}

.mobile-button--app img {
  position: absolute;
  left: 12px;
  width: fit-content;
  max-width: 48px;
  object-fit: contain;
}

.mobile-button--app:has(img) {
  padding-left: 70px;
}

.mobile-button__content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 5px;
}

.mobile-button__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: var(--color-heading);
}

.mobile-button__text {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.mobile-button__text span {
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  -webkit-text-stroke-color: #FFD213;
  color: #FFD213;
}

.mobile-button__rating {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 6px;
}

.mobile-button__rating span {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: rgba(255, 255, 255, 0.8);
}

.mobile-button__link {
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  color: #24262B;
  gap: 8px;
}

@media (width >= 767px) {
  .mobile-button {
    display: none;
  }
}
.languages-switcher {
  position: relative;
  z-index: 15;
  display: flex;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 5px;
  width: fit-content;
  min-width: 40px;
  color: #ccc;
  background: var(--color-background);
}

.languages-switcher__list-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  width: 100%;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.languages-switcher__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  margin: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--color-background);
}

.languages-switcher__item {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  width: 100%;
  height: 32px;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-heading);
  gap: 6px;
}

.languages-switcher__lang {
  display: flex;
  align-items: center;
  gap: 5px;
}

.languages-switcher__lang::before {
  content: "";
  position: absolute;
  inset: 0;
}

.languages-switcher._show .languages-switcher__list-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

@media (width <= 767px) {
  .languages-switcher._show .languages-switcher__list-wrapper {
    position: static;
  }
  .languages-switcher {
    flex-direction: column;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  background: var(--color-header);
}

.header__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__buttons {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-left: auto;
  gap: 8px;
}

.header__burger {
  position: relative;
  display: none;
  order: -1;
  width: 27px;
  height: 21px;
  cursor: pointer;
}

.header__burger::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 4px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}

.header__burger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease 0s;
}

.header__burger span {
  position: absolute;
  right: 0;
  top: 50%;
  border-radius: 4px;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

@media (width <= 1023px) {
  .header__burger {
    display: block;
  }
}
@media (width <= 575px) {
  .header__content {
    flex-wrap: wrap;
  }
  .header__logo {
    order: -3;
  }
  .header__burger {
    order: -2;
    margin-left: auto;
  }
  .header__buttons {
    flex-basis: 100%;
  }
  .header__buttons .btn {
    flex-grow: 1;
  }
}
.footer {
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: var(--color-header);
}
.footer--enable-mobile-button {
  padding-bottom: 80px;
}

.footer__container {
  display: grid;
  gap: 40px;
}

.footer__other-links {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

.footer__hr {
  border: none;
  width: 100%;
  height: 1px;
  background-color: var(--color-background-transpatent);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__center {
  display: grid;
  grid-template: "menu social download";
  grid-template-columns: 1fr minmax(180px, 220px) 1fr;
  gap: 80px;
}

.footer__social {
  position: relative;
  grid-area: social;
}

* + .footer__social::before,
* + .footer__buttons::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-background-transpatent);
}

.footer__buttons {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: download;
  border-radius: 12px;
  padding: 16px 16px 16px 164px;
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.06);
  background: var(--color-background);
  gap: 8px;
}

.footer__buttons::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 164px;
  background-image: url("../img/phone-footer.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
}

.footer__buttons-title {
  margin: 0 0 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: var(--color-heading);
}

.footer__buttons .btn {
  margin: 0;
}

.footer__copyright {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.page-footer__dmca {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

@media (width <= 1023px) {
  .footer__container {
    gap: 20px;
  }
  .footer__center {
    grid-template: "menu" "download" "social";
    grid-template-columns: 1fr;
    gap: 20px;
  }
  * + .footer__buttons::before {
    display: none;
  }
  * + .footer__social {
    margin-top: 20px;
  }
  * + .footer__social::before {
    left: 0;
    top: -20px;
    width: 100%;
    height: 1px;
    background-color: var(--color-background-transpatent);
  }
}
@media (width <= 767px) {
  .footer__top {
    flex-direction: column;
  }
}
@media (width <= 575px) {
  .footer__buttons {
    padding: 16px 16px 180px;
  }
  .footer__buttons::after {
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 180px;
  }
}
.main-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.main-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sub-menu__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-menu__arrow svg {
  transition: all 0.2s ease-in-out;
}

.main-nav__link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--color-heading);
  transition: color 0.2s ease-in-out;
  gap: 6px;
}

.sub-menu__link {
  display: flex;
  align-items: center;
  padding: 6px 0;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s ease-in-out;
  gap: 6px;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  border-radius: 12px;
  padding: 10px;
  min-width: 100px;
  background: var(--color-background-transpatent);
}

@media (hover: hover) {
  .main-nav__item:has(:hover) .main-nav__link {
    color: var(--color-accent);
  }
  .main-nav__item:has(:hover) .sub-menu__arrow svg {
    rotate: 180deg;
  }
  .main-nav__item:hover .sub-menu {
    display: block;
  }
  .main-nav__link:hover {
    color: var(--color-accent);
  }
  .sub-menu__link:hover {
    color: var(--color-heading);
  }
}
@media (width <= 1023px) {
  .main-nav {
    position: absolute;
    right: 50%;
    bottom: 0;
    z-index: 5;
    display: none;
    overflow-y: auto;
    padding: 20px 16px;
    width: 100vw;
    height: calc(100vh - var(--height));
    height: calc(100svh - var(--height));
    max-width: 100vw;
    background: var(--color-header);
    transform: translate(50%, 100%);
  }
  .burger-active .main-nav {
    display: block;
  }
  .main-nav__list {
    flex-direction: column;
    gap: 0;
  }
  .main-nav__item {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .main-nav__item .sub-menu__arrow {
    flex-grow: 1;
    justify-content: flex-end;
  }
  .main-nav__item:not(:last-child) {
    border-bottom: 1px solid var(--color-background-transpatent);
  }
  .main-nav__item.active .sub-menu__arrow svg {
    rotate: 180deg;
  }
  .main-nav__item.active > .main-nav__link {
    padding-bottom: 10px;
  }
  .main-nav__item.active .sub-menu {
    display: block;
  }
  .main-nav__link {
    padding: 16px 0;
    width: 100%;
  }
  .main-nav__item--has-children > .main-nav__link {
    width: fit-content;
  }
  .sub-menu {
    position: static;
    flex-basis: 100%;
    border-radius: 0;
    padding: 0 0 10px 10px;
    background: none;
  }
}
.footer-nav__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-nav__link {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  color: var(--color-heading);
}

span.footer-nav__link {
  color: var(--color-accent);
}

@media (hover: hover) {
  .footer-nav__link:hover {
    color: var(--color-accent);
  }
}
@media (width <= 575px) {
  .footer-nav__list {
    grid-template-columns: 1fr;
  }
}
.wrapper {
  overflow: hidden;
}

.wrapper > * {
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container-witdh);
}

@media (width <= 1304px) {
  .wrapper > * {
    margin-right: var(--offsets);
    margin-left: var(--offsets);
    max-width: calc(100% - var(--offsets) * 2);
  }
}
.wrapper--bg {
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), url("../img/triangles2.svg") 50%/contain repeat;
}

.wp-admin .wrapper--bg {
  background: none;
}

@media (width <= 1023px) {
  .wrapper--bg {
    display: flex;
    flex-direction: column;
    padding: 30px 16px;
    gap: 16px;
  }
  .wrapper--bg:has(.h1-block) {
    padding-right: 0;
    padding-left: 0;
  }
  .wrapper--bg .text-image,
  .wrapper--bg .text-image.reversed {
    display: contents;
  }
  .wrapper--bg .text-image > .get-image,
  .wrapper--bg .text-image > img {
    margin-top: 0;
  }
  .wrapper--bg h1.wp-block-heading {
    order: -10;
  }
  .wrapper--bg .wp-block-columns {
    order: -8;
    margin-right: 0;
    margin-left: 0;
    max-width: 100%;
  }
  .wrapper--bg .block-of-links {
    margin: 0;
    max-width: 100%;
  }
}
* + .grid {
  margin-top: 1rem;
}

.grid .wp-block-heading {
  grid-area: title;
}

.grid .btn--gray {
  grid-area: link;
}

.grid > *:not(.wp-block-heading, .btn--gray) {
  grid-area: block;
}

.grid {
  display: grid;
  column-gap: 1rem;
  align-items: center;
  grid-template: "title link" auto "block block" 1fr/1fr 160px;
}

@media (width <= 1023px) {
  .grid {
    display: grid;
    column-gap: 1rem;
    align-items: center;
    grid-template: "title" "block" "link";
    grid-template-columns: 1fr;
  }
  .grid .btn--gray {
    margin: 1rem auto 0;
  }
}
@media (width <= 575px) {
  .grid {
    display: grid;
    column-gap: 1rem;
    align-items: center;
    grid-template: "title" "block" "link";
    grid-template-columns: 1fr;
  }
  .grid .btn--gray {
    margin: 1rem 0 0;
    width: 100%;
  }
}
* + .text-image {
  margin-top: 20px;
}

.text-image {
  display: grid;
  grid-template: "title media" auto "content media" 1fr/1fr 1fr;
  gap: 16px;
}

.text-image.reversed {
  grid-template: "media title" auto "media content" 1fr/1fr 1fr;
}

.text-image.no-image {
  grid-template: "title" auto "content" 1fr/1fr;
}

.text-image > .wp-block-heading {
  grid-area: title;
}

.text-image__content {
  grid-area: content;
}

.text-image__content > *:first-child {
  margin-top: 0;
}

.text-image > .get-image,
.text-image > img {
  grid-area: media;
  width: 100%;
}

@media (width <= 1023px) {
  .text-image,
  .text-image.reversed {
    grid-template-areas: "title" "media" "content";
    grid-template-columns: 1fr;
  }
}
* + .block-of-links {
  margin-top: 30px;
}

.block-of-links__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.block-of-links__item {
  display: grid;
  column-gap: 8px;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 67px 1fr;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 6px 24px 6px 6px;
  background: var(--color-background-transpatent);
  transition: all 0.4s ease 0s;
}

.block-of-links__item > img,
.block-of-links__item > svg {
  max-width: 67px;
  max-height: 56px;
  object-fit: contain;
}

.block-of-links__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-heading);
  gap: 12px;
}

.block-of-links__text::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='12' viewBox='0 0 22 12' fill='none'%3E%3Cpath d='M21.5303 6.53033C21.8232 6.23744 21.8232 5.76257 21.5303 5.46967L16.7574 0.696701C16.4645 0.403807 15.9896 0.403807 15.6967 0.696701C15.4038 0.989594 15.4038 1.46447 15.6967 1.75736L19.9393 6L15.6967 10.2426C15.4038 10.5355 15.4038 11.0104 15.6967 11.3033C15.9896 11.5962 16.4645 11.5962 16.7574 11.3033L21.5303 6.53033ZM-6.55671e-08 6.75L21 6.75L21 5.25L6.55671e-08 5.25L-6.55671e-08 6.75Z' fill='%2307DF41'/%3E%3C/svg%3E");
  transition: all 0.2s ease 0s;
}

@media (hover: hover) {
  .block-of-links__item:hover {
    border: 1px solid var(--color-accent);
  }
  .block-of-links__item:hover .block-of-links__text::after {
    transform: translateX(10px);
  }
}
@media (width <= 767px) {
  .block-of-links__list {
    gap: 10px;
  }
}
* + .slots {
  margin-top: 1rem;
}

.slots {
  display: grid;
  grid-area: block;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 16px;
}

.slots__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
}

.slots__item .get-image,
.slots__item img {
  width: 100%;
  height: 100%;
}

.slots__item img {
  width: 100%;
  height: 100%;
}

.slots__item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  gap: 10px;
}

.slots__item-content:not(:has(*)) {
  display: none;
}

.slots__item:hover .slots__item-content {
  opacity: 1;
}

.slots__item-name {
  margin: 0 0 auto;
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  text-align: center;
  color: var(--color-heading);
}

.slots__game {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  flex-direction: column;
  height: 100vh;
  box-shadow: 8px 0 500px 0 #c8c9d5;
  background: rgba(0, 0, 0, 0.6588235294);
}

.slots__game.show {
  display: flex;
}

.slots__game-container {
  position: fixed;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  width: 100%;
  max-width: 1420px;
  background: #000;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  aspect-ratio: 16/9;
}

.slots__game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}

.slots__game-header-name {
  margin: 0 20px 0 0;
  font-weight: 900;
  font-size: 22px;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff;
}

.slots__game-header-aff {
  display: none;
  margin: 0;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  cursor: pointer;
}

.slots__close-game {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: none;
  background: 0 0;
  cursor: pointer;
}

.slots__iframe iframe {
  margin: 0 auto;
  border: none;
  border-radius: 0 0 8px 8px;
  width: 100%;
  height: 690px;
  object-fit: contain;
}

.slots__game.show .slots__game-container {
  visibility: visible;
}

.slots__link::after {
  content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M12.5003 0.29248C18.9661 0.29248 24.2076 5.53403 24.2076 11.9998C24.2076 18.4656 18.9661 23.7071 12.5003 23.7071C6.03451 23.7071 0.792969 18.4656 0.792969 11.9998C0.792969 5.53403 6.03451 0.29248 12.5003 0.29248ZM18.6468 12.5068C19.0371 12.2815 19.0371 11.7183 18.6468 11.493L9.86633 6.42354C9.47607 6.19823 8.98828 6.47985 8.98828 6.93046V17.0694C8.98828 17.52 9.47607 17.8016 9.86633 17.5763L18.6468 12.5068Z' fill='%23ffffff'/></svg>");
  display: inline-block;
  width: 25px;
  height: 24px;
}

.slots__link,
.slots__demo {
  padding: 10px;
}

@media (width <= 767px) {
  .slots__game-container {
    inset: 0;
    flex-direction: column;
    transform: none;
    aspect-ratio: auto;
  }
  .slots__iframe {
    flex-grow: 1;
  }
  .slots__iframe iframe {
    height: 100%;
  }
  .slots__game-header-name {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (width <= 575px) {
  .slots__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
* + .sports {
  margin-top: 16px;
}

.sports {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.sports__item {
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 18px;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  background: var(--color-background);
  transition: all 0.4s ease 0s;
  cursor: pointer;
  gap: 10px;
}

.sports__item svg,
.sports__item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

@media (hover: hover) {
  .sports__item:hover {
    border: 1px solid var(--color-accent);
  }
}
@media (width <= 575px) {
  .sports {
    grid-template-columns: repeat(2, 1fr);
  }
  .sports__item {
    flex-direction: column;
  }
}
* + .winners {
  margin-top: 16px;
}

.winners {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 20px;
  background: var(--color-background);
}

.winners::after, .winners::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 20px;
}

.winners::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-background), transparent);
}

.winners::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-background), transparent);
}

.winners__list {
  display: flex;
  gap: 20px;
}

.winners__item {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  width: 90px;
}

.winners__nickname {
  overflow: hidden;
  margin-top: 8px;
  text-align: center;
  text-overflow: ellipsis;
  color: var(--color-heading);
}

.winners__value {
  font-weight: 700;
  text-align: center;
  color: var(--color-accent);
}

@media (width <= 767px) {
  .winners {
    padding: 16px;
  }
}
* + .providers {
  margin-top: 1rem;
}

.providers {
  position: relative;
  overflow: hidden;
}

.providers::after,
.providers::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 20px;
}

.providers::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-background-body), transparent);
}

.providers::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-background-body), transparent);
}

.providers__list {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 16px;
}

.providers__item {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  padding: 20px 16px;
  background-color: var(--color-background);
}

.providers__item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

* + .about-block {
  margin-top: 1rem;
}

.about-block {
  width: 100%;
}

.about-block tbody {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.about-block__item {
  display: flex;
  flex-direction: column;
}

.about-block__item img {
  width: fit-content;
  max-height: 20px;
  object-fit: contain;
}

.about-block__header {
  display: flex;
  align-items: center;
  border-radius: 12px 12px 0 0;
  padding: 14px 20px;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  background: #424549;
  gap: 8px;
}

.about-block__content {
  flex: 1 1 auto;
  border-radius: 0 0 12px 12px;
  padding: 16px 20px;
  background: var(--bg-card, #2d3035);
}

.about-block__text {
  margin: 0;
  color: var(--color-heading);
}

.about-block__text:has(span, img) {
  display: flex;
  gap: 6px;
}

.about-block__text span {
  color: var(--color-text);
}

* + .about-block__text {
  margin-top: 10px;
}

* + .about-block__list {
  margin-top: 10px;
}

.about-block__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.about-block__list-item {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
  background-color: var(--color-background-transpatent);
  gap: 4px;
}

@media (width <= 767px) {
  .about-block__header {
    padding: 14px 16px;
  }
  .about-block__content {
    padding: 16px;
  }
  .about-block__list-item {
    padding: 8px 16px;
  }
}
* + .advantages {
  margin-top: 1rem;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.advantages__item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background-image: url("../img/pattern.webp");
  background-position: center center;
  background-size: cover;
}

.advantages__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-repeat: no-repeat;
}

.advantages__item-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 16px;
  background: var(--color-background);
  gap: 10px;
}

.advantages__title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: var(--color-heading);
}

.advantages__description > *:first-child {
  margin-top: 0;
}

@media (width <= 767px) {
  .advantages__title {
    font-size: 18px;
  }
}
* + .promo-offers {
  margin-top: 16px;
}

.promo-offers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.promo-offers__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-background);
}

.promo-offers__item img {
  width: 100%;
}

.promo-offers__item-content {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px;
  gap: 4px;
}

.promo-offers__item-content:has(.btn) {
  grid-template-columns: 1fr 170px;
}

.promo-offers__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: var(--color-heading);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.promo-offers__date {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.promo-offers__link {
  grid-row: span 2;
  font-size: 18px;
}

@media (width <= 1023px) {
  .promo-offers {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 var(--offsets);
  }
  .promo-offers__item {
    flex-shrink: 0;
    width: 280px;
  }
  .promo-offers__title {
    font-size: 18px;
    line-height: 24px;
  }
  .promo-offers__item-content:has(.btn) {
    grid-template-columns: 1fr;
  }
  .promo-offers__link {
    order: 3;
    grid-row: auto;
  }
}
* + .how-to {
  margin-top: 1rem;
}

.how-to {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.how-to__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 12px;
  padding: 16px;
  background: var(--color-background);
  gap: 16px;
}

.how-to__item-counter {
  position: absolute;
  left: 16px;
  top: 16px;
  margin-top: 0;
  border-radius: 8px;
  padding: 6px 8px;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: var(--color-accent);
  background: #324940;
}

.how-to__item-content {
  padding-top: 40px;
}

.how-to__item-text > *:first-child {
  margin-top: 0;
}

.how-to__item > .get-image,
.how-to__item > img {
  margin-left: auto;
}

.how-to__link {
  margin-top: 10px;
  width: 100%;
  font-size: 18px;
}

@media (width <= 1023px) {
  .how-to {
    grid-template-columns: 1fr;
  }
}
@media (width <= 767px) {
  .how-to__item-counter {
    position: static;
    width: 100%;
    font-size: 16px;
  }
  .how-to__item {
    grid-template-columns: 1fr;
  }
  .how-to__item-content {
    order: 3;
    padding-top: 0;
  }
  .how-to__item img {
    width: 100%;
  }
}
.toc {
  border-radius: 12px;
  background: var(--color-background);
}

.active .toc__title svg {
  transition: all 0.2s ease-in-out;
  rotate: 180deg;
}

.active .toc__list {
  display: flex;
}

.toc__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding: 20px;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  cursor: pointer;
  gap: 4px;
}

.toc__list {
  display: none;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 20px 20px;
  gap: 10px;
}

.toc__link {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-background-transpatent);
  border-radius: 8px;
  padding: 8px 6px;
  font-style: normal;
  text-decoration: none;
  color: var(--color-heading);
  transition: all 0.2s ease 0s;
  gap: 4px;
}

.toc__link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16 14L10 8H4' stroke='white'/%3E%3Cpath d='M10 14H16V8' stroke='white'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  transition: all 0.2s ease 0s;
}

@media (hover: hover) {
  .toc__link:hover {
    color: var(--color-accent);
  }
}
@media (width <= 767px) {
  .toc__title {
    padding: 16px;
  }
  .toc__list {
    padding: 0 16px 16px;
  }
}
* + .wp-block-columns {
  margin-top: 30px;
}

.wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (width <= 1023px) {
  .wp-block-columns {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 16px;
  }
}
* + .bonus {
  margin-top: 1rem;
}

.bonus {
  position: relative;
  margin: auto;
  border-radius: 12px;
  height: 100%;
  min-height: 242px;
  max-width: 700px;
  gap: 10px;
}

.bonus:has(img) {
  display: grid;
  grid-template-columns: 1fr 264px;
}

.bonus--primary {
  background: linear-gradient(180deg, #9432F5 -72.13%, #323738 100%);
}

.bonus--secondary {
  background: linear-gradient(90deg, #214D3A 15.86%, #1E734E 84.14%);
}
.bonus--secondary .bonus__title,
.bonus--secondary .bonus__description {
  text-align: center;
}

.bonus__content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 10px;
}

.bonus__title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-heading);
}

.bonus__description {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text);
}
.bonus__description strong, .bonus__description b {
  font-weight: 700;
  color: #fff;
}
.bonus__description span {
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(94deg, #FFEF7A 10.93%, #FFEF7A 27.06%, #D99C00 43.7%, #FFE47A 50.98%, #FFE47A 65.91%, #AB7B00 83.75%);
  -webkit-background-clip: text;
  background-clip: text;
}

.bonus__timer {
  margin-bottom: 4px;
  border-top: 1px solid var(--color-background-transpatent-10);
  padding-top: 10px;
  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
  text-align: center;
  color: var(--color-heading);
}

.bonus__timer-text {
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-text);
}

.bonus__link {
  margin-top: auto;
  max-width: 260px;
  font-size: 18px;
}

.bonus img,
.bonus .get-image {
  align-self: center;
}

@media (width <= 1240px) {
  .bonus:has(img) {
    grid-template-columns: 1fr 220px;
  }
}
@media (width <= 1023px) {
  .bonus:has(img) {
    grid-template-columns: 1fr 264px;
  }
  .bonus__link {
    max-width: 100%;
  }
}
@media (width <= 767px) {
  .bonus {
    padding: 16px;
    min-height: fit-content;
  }
  .bonus:has(img) {
    grid-template-columns: 1fr 112px;
    grid-template-rows: min-content;
    gap: 0 2px;
  }
  .bonus__content {
    display: contents;
  }
  .bonus__title {
    font-size: 20px;
  }
  .bonus__description span {
    font-size: 26px;
  }
  .bonus--secondary .bonus__title {
    margin-top: auto;
    text-align: left;
  }
  .bonus--secondary .bonus__description {
    text-align: left;
  }
  .bonus__timer {
    grid-column: 1/-1;
  }
  .bonus img,
  .bonus .get-image {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-bottom: auto;
  }
  .bonus__link {
    grid-column: 1/-1;
    margin-top: 16px;
    max-width: 100%;
  }
}
* + .screenshot-gallery {
  margin-top: 16px;
}

.screenshot-gallery {
  position: relative;
  display: grid;
}

.screenshot-gallery::before,
.screenshot-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  width: 60px;
  pointer-events: none;
}

.screenshot-gallery::before {
  left: -1px;
  background: linear-gradient(90deg, var(--color-background-body) 0%, rgba(21, 27, 41, 0) 100%);
}

.screenshot-gallery::after {
  right: -1px;
  background: linear-gradient(270deg, var(--color-background-body) 0%, rgba(21, 27, 41, 0) 100%);
}

.screenshot-gallery__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  overflow-x: auto;
  height: fit-content;
  gap: 10px;
  scrollbar-width: thin;
}

.screenshot-gallery__item {
  flex-shrink: 0;
  width: 280px;
}

.screenshot-gallery__item img {
  width: 100%;
  object-fit: contain;
}

@media (width <= 768px) {
  .screenshot-gallery::before,
  .screenshot-gallery::after {
    width: 30px;
  }
  .screenshot-gallery__list {
    margin-bottom: -8px;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .screenshot-gallery__item {
    flex-shrink: 0;
    width: 128px;
  }
}
* + .casino-game {
  margin-top: 1rem;
}

.casino-game {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.casino-game__item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 16px;
  background: var(--color-background);
  gap: 10px;
}

.casino-game__item img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}

.casino-game__title {
  margin-top: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-heading);
}

.casino-game__list {
  flex: 1 1 auto;
  gap: 6px;
}

.casino-game__list-item {
  position: relative;
  padding-left: 22px;
}

.casino-game__list-item::before {
  content: url("data:image/svg+xml,%3Csvg width='12' height='13' viewBox='0 0 12 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.743652' width='12' height='12' rx='6' fill='%2307DF41'/%3E%3Cpath d='M3.75 6.18467L5.625 8.20264L8.25 5.28467' stroke='%232D3035' stroke-width='1.125' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  position: absolute;
  left: 0;
  top: 0;
}

.casino-game__link {
  margin-top: auto;
  padding: 10px;
  width: 100%;
}

.casino-game__link::after {
  content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'><path fill-rule='evenodd' clip-rule='evenodd' d='M12.5003 0.29248C18.9661 0.29248 24.2076 5.53403 24.2076 11.9998C24.2076 18.4656 18.9661 23.7071 12.5003 23.7071C6.03451 23.7071 0.792969 18.4656 0.792969 11.9998C0.792969 5.53403 6.03451 0.29248 12.5003 0.29248ZM18.6468 12.5068C19.0371 12.2815 19.0371 11.7183 18.6468 11.493L9.86633 6.42354C9.47607 6.19823 8.98828 6.47985 8.98828 6.93046V17.0694C8.98828 17.52 9.47607 17.8016 9.86633 17.5763L18.6468 12.5068Z' fill='%23ffffff'/></svg>");
  display: inline-block;
  width: 25px;
  height: 24px;
}

@media (width <= 575px) {
  .casino-game {
    grid-template-columns: 1fr;
  }
  .casino-game__item {
    display: grid;
    align-items: center;
    grid-template-columns: 140px 1fr;
  }
  .casino-game__link,
  .casino-game__list {
    grid-column: 1/-1;
  }
}
.h1-block {
  display: grid;
  grid-template-columns: 1fr 550px;
  grid-template-rows: min-content 1fr;
  gap: 16px;
}

.h1-block__content > *:first-child {
  margin-top: 0;
}

.h1-block__app-block {
  grid-column: 2/3;
  grid-row: 1/-1;
}

@media (width <= 1023px) {
  .h1-block {
    grid-template-columns: 1fr;
  }
  .h1-block__app-block {
    order: -1;
    grid-column: auto;
    grid-row: auto;
  }
}
.app-block {
  display: grid;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 24.5px 0 rgba(0, 0, 0, 0.15);
  background: var(--color-background);
  gap: 16px;
}

.app-block__title {
  display: none;
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.2px;
  text-align: center;
  color: var(--color-heading);
}

.app-block__header {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 200px;
  border-radius: 8px;
  padding: 10px 10px 0;
  background: #67359E;
  gap: 10px;
}

.app-block__header img {
  margin: 0 auto;
}

.app-block__text {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-heading);
}

.app-block__parameter {
  display: flex;
  justify-content: space-around;
}

.app-block__parameter-item {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.25px;
  color: var(--color-heading);
  gap: 8px;
}

.app-block__parameter-item:not(:last-child) {
  border-right: 1px solid var(--color-background-transpatent);
}

.app-block__parameter-item--rating .app-block__parameter-text {
  display: none;
}

.app-block__parameter-text {
  font-weight: 400;
  color: var(--color-text);
}

.app-block__buttons {
  display: grid;
  gap: 8px;
}

.app-block__buttons .btn {
  margin: 0;
  padding: 13px 10px;
  font-size: 18px;
}

@media (width <= 575px) {
  .app-block__title {
    display: inline;
    order: -10;
  }
  .app-block__parameter {
    flex-direction: column;
    align-items: flex-start;
    order: -8;
    gap: 10px;
  }
  .app-block__parameter-item {
    width: 100%;
  }
  .app-block__parameter-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--color-background-transpatent);
    padding-bottom: 10px;
  }
  .app-block__parameter-item--rating .app-block__parameter-text {
    display: inline;
  }
  .app-block__parameter-text {
    order: -1;
    margin-right: auto;
  }
  .app-block__parameter-text::after {
    content: ":";
  }
  .app-block__header {
    order: 10;
    grid-template-columns: 1fr;
    padding: 16px 16px 0;
    gap: 16px;
  }
  .app-block__text {
    text-align: center;
  }
}
* + .faq {
  margin-top: 1rem;
}

.faq:not(:last-of-type) {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-background-transpatent);
  padding-bottom: 1rem;
}