@font-face {
  font-family: 'Rubik';
  src: url('/assets/fonts/rubik-var-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Rubik';
  src: url('/assets/fonts/rubik-var-latin-ext.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --font-base: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --bg-page: #f6fbff;
  --bg-surface: #ffffff;
  --bg-header: #4f338b;
  --bg-header-hover: #402579;
  --bg-dropdown: #884ed8;
  --bg-dropdown-hover: #6b4eaa;
  --bg-drawer: rgba(82, 37, 82, 0.8);
  --bg-toolbar: #4f338b;
  --bg-glass: rgba(255, 255, 255, 0.2);
  --bg-glass-strong: rgba(255, 255, 255, 0.5);

  --brand: #4f338b;
  --brand-mid: #564895;
  --brand-line: #a47ae7;
  --divider-drawer: #d07ced;

  --text-title: #4f338b;
  --text-body: #8c7ab4;
  --text-muted: #8c7ab4;
  --text-white: #ffffff;

  --accent-pink: #f12bba;
  --accent-red: #ff4853;
  --accent-orange: #ffa843;
  --accent-green: #14d53f;

  --shadow-brand: rgba(53, 51, 139, 0.3);
  --shadow-ink: rgba(0, 0, 0, 0.15);
  --shadow-drop: drop-shadow(rgba(0, 0, 0, 0.15) 1px 2px 0px);
  --text-shadow-btn: rgba(0, 0, 0, 0.15) 1px 2px 0px;

  --grad-pill: linear-gradient(229.66deg, #e0d8e9 24.01%, #ffffff 70.16%);
  --grad-primary: radial-gradient(68.25% 26.25% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 100% at 50% 0%, #30e96f 0%, #28e874 17.19%, #14d53f 100%);
  --grad-primary-hover: radial-gradient(68.25% 26.25% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 100% at 50% 0%, #19d659 0%, #11cb5b 17.19%, #07ba2e 100%);
  --grad-secondary: radial-gradient(68.25% 26.25% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(100% 100% at 50% 0%, #ffb444 0%, #e96115 100%);
  --grad-warn: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  --grad-warn-hover: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), #564895;
  --grad-badge: linear-gradient(207.43deg, #ff4853 11.74%, #f12bba 84.23%);
  --grad-support-frame: linear-gradient(135deg, #6a4db6 0%, #c9b6ff 100%);
  --grad-support-face: linear-gradient(#9830ff 0%, #8000ff 100%);
  --support-glow: #ae8df4;

  --size-2: 2px;
  --size-4: 4px;
  --size-6: 6px;
  --size-8: 8px;
  --size-10: 10px;
  --size-12: 12px;
  --size-16: 16px;
  --size-20: 20px;
  --size-24: 24px;
  --size-26: 26px;
  --size-32: 32px;
  --size-40: 40px;
  --size-60: 60px;

  --radius-4: 4px;
  --radius-6: 6px;
  --radius-8: 8px;
  --radius-9: 9px;
  --radius-12: 12px;
  --radius-16: 16px;

  --fs-10: 10px;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-20: 20px;

  --header-height: 56px;
  --toolbar-height: 56px;
  --container-max: 1680px;
  --footer-max: 944px;
  --page-x: 24px;

  --z-header: 19;
  --z-float: 15;
  --z-overlay: 4000;
  --z-drawer: 4900;
  --z-toolbar: 5000;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  overflow-x: hidden;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-base);
  font-size: var(--fs-14);
  line-height: 1.4;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-base);
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
}

ul,
ol {
  list-style: none;
}

img {
  height: auto;
}

button {
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

::selection {
  background: var(--brand);
  color: var(--text-white);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.main {
  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-x);
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

.sp-link {
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  color: var(--brand);
}

.sp-section-title {
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-title);
}

.sp-shine::before,
.sp-shine::after {
  content: '';
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  pointer-events: none;
}

.sp-shine::before {
  left: 0;
  width: 18px;
  height: 100%;
  background-image: url('/assets/image/site/button-left-side.svg');
}

.sp-shine::after {
  right: 3px;
  width: 13px;
  height: 11px;
  background-image: url('/assets/image/site/button-right-side.svg');
}

@media (min-width: 1024px) {
  :root {
    --page-x: 40px;
  }

  body {
    font-size: var(--fs-12);
  }
}

@media (min-width: 1280px) {
  :root {
    --header-height: 72px;
    --toolbar-height: 0px;
  }
}

@media (min-width: 1440px) {
  :root {
    --page-x: 60px;
    --footer-max: 1320px;
  }
}

.head-bar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: var(--z-header);
}

.head-bar__bar {
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding-inline: var(--size-24);
  background: var(--bg-header);
}

.head-bar__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  width: 100%;
}

.head-bar__left {
  display: flex;
  align-items: center;
  gap: var(--size-8);
  justify-self: start;
}

.head-bar__burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-brand) 1px 3px, var(--text-white) 0 3px 15px inset;
  filter: var(--shadow-drop);
  color: var(--text-white);
}

.head-bar__burger-glyph {
  display: flex;
  width: 19px;
}

.head-bar__burger-glyph svg {
  width: 100%;
  height: auto;
}

.head-bar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-height);
  aspect-ratio: 5 / 3;
}

.head-bar__logo picture,
.head-bar__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.head-bar__nav {
  display: none;
}

.head-bar__menu {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  max-width: 580px;
  margin-inline-start: var(--size-26);
}

.head-bar__links {
  display: flex;
  align-items: center;
  gap: var(--size-8);
  padding-block: var(--size-10);
  padding-inline: var(--size-2) 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.head-bar__links::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.head-bar__link {
  position: relative;
  display: inline-block;
  flex: 1 0 auto;
  padding: var(--size-4) var(--size-6);
  border-radius: var(--radius-4);
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-white);
  white-space: nowrap;
}

.head-bar__link:hover {
  background: var(--bg-header-hover);
}

.head-bar__item {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: var(--radius-4);
  transition: 0.3s;
}

.head-bar__item:hover {
  background: var(--bg-header-hover);
}

.head-bar__caret {
  display: flex;
  width: 16px;
  height: 8px;
  margin-inline-end: 5px;
  color: #c9b6ff;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.head-bar__caret svg {
  width: 16px;
  height: 8px;
}

.head-bar__item:hover .head-bar__caret {
  transform: rotate(360deg);
}

.head-bar__drop-wrap {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 100;
  display: none;
  padding-top: 20px;
}

.head-bar__item:hover .head-bar__drop-wrap {
  display: block;
}

.head-bar__drop {
  background: var(--bg-dropdown);
  border-radius: var(--radius-8);
}

.head-bar__sublink {
  display: block;
  padding: var(--size-10);
  border-bottom: 1px solid var(--brand-line);
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 120%;
  text-transform: uppercase;
  text-shadow: rgba(0, 0, 0, 0.05) 1px 2px 0;
  color: var(--text-white);
  white-space: nowrap;
}

.head-bar__sublink:first-child {
  border-radius: var(--radius-8) var(--radius-8) 0 0;
}

.head-bar__sublink:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius-8) var(--radius-8);
}

.head-bar__sublink:hover {
  background: var(--bg-dropdown-hover);
}

.head-bar__badge {
  position: relative;
  top: -1px;
  inset-inline-start: var(--size-6);
  display: inline;
  padding: var(--size-4);
  border-radius: var(--radius-8);
  background: var(--grad-badge);
  box-shadow: #ff8cb4 0 -2px 3px inset;
  font-weight: 700;
  font-size: var(--fs-12);
  line-height: 100%;
  text-shadow: rgba(0, 0, 0, 0.25) 1px 2px 0;
  color: var(--text-white);
}

.head-bar__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 17px;
  color: var(--text-white);
}

.head-bar__arrow svg {
  width: 10px;
  height: 17px;
  filter: var(--shadow-drop);
}

.head-bar__arrow::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 70px;
  height: 40px;
  z-index: -1;
}

.head-bar__arrow--prev {
  left: 0;
}

.head-bar__arrow--prev svg {
  transform: rotate(180deg);
}

.head-bar__arrow--prev::after {
  left: 0;
  background: linear-gradient(90deg, var(--bg-header) 30%, rgba(0, 0, 0, 0) 100%);
}

.head-bar__arrow--next {
  right: 0;
}

.head-bar__arrow--next::after {
  left: -60px;
  background: linear-gradient(270deg, var(--bg-header) 30%, rgba(0, 0, 0, 0) 100%);
}

.head-bar__arrow.is-hidden {
  display: none;
}

.head-bar__actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.head-bar__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-white);
  border-radius: var(--radius-8);
  background: var(--bg-glass);
  box-shadow: var(--shadow-brand) 1px 3px, var(--text-white) 0 3px 8px inset;
  color: var(--text-white);
  justify-self: end;
}

.head-bar__search svg {
  width: 20px;
  height: 20px;
}

.head-bar--no-search-m .head-bar__search {
  display: none;
}

.sp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: var(--radius-8);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: var(--text-shadow-btn);
  color: var(--text-white);
  transform: translateY(0);
  transition: 0.3s;
}

.sp-btn:hover {
  transform: translateY(4px);
}

.sp-btn::before {
  content: '';
  position: absolute;
  left: -3px;
  top: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: var(--radius-12);
  z-index: -1;
}

.sp-btn--warn {
  background-color: rgba(53, 51, 139, 0.2);
  background-image: var(--grad-warn);
}

.sp-btn--warn:hover {
  background-image: var(--grad-warn-hover);
}

.sp-btn--warn::before {
  border: 3px solid var(--text-white);
}

.sp-btn--small {
  min-width: 72px;
  min-height: 30px;
  padding: var(--size-6) 17px;
}

.sp-btn__title {
  display: block;
  font-size: var(--fs-14);
  line-height: 17px;
}

.sp-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  background: rgba(20, 6, 30, 0.35);
  backdrop-filter: blur(10px);
  transition: opacity 0.2s;
}

.sp-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sp-drawer {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  max-width: 351px;
  height: 100%;
  padding-inline: var(--size-40) var(--size-24);
  padding-block: 28px 100px;
  z-index: var(--z-drawer);
  overflow-y: auto;
  background: var(--bg-drawer);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sp-drawer::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.sp-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.sp-drawer__close {
  position: absolute;
  top: 10px;
  inset-inline-start: var(--size-24);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-brand) 1px 3px, var(--text-white) 0 3px 15px inset;
  color: var(--text-white);
}

.sp-drawer__close svg {
  width: 16px;
  height: 16px;
}

.sp-drawer__inner {
  display: flex;
  flex-direction: column;
  padding-top: 62px;
}

.sp-drawer__group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.sp-drawer__group > .sp-drawer__link:last-child {
  margin-bottom: var(--size-60);
}

.sp-drawer__group::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 30px;
  width: 214px;
  height: 2px;
  background: var(--divider-drawer);
}

.sp-drawer__group--last > .sp-drawer__link:last-child {
  margin-bottom: var(--size-20);
}

.sp-drawer__group--last::after {
  content: none;
}

.sp-drawer__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--size-12);
  margin-bottom: var(--size-20);
  border-radius: var(--radius-4);
  font-weight: 700;
  font-size: var(--fs-20);
  line-height: 30px;
  text-transform: uppercase;
  color: var(--text-white);
}

.sp-drawer__icon,
.sp-drawer__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.sp-drawer__bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--size-20);
  padding-top: var(--size-6);
}

.sp-chat {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--size-4);
  border-radius: var(--radius-8);
  background: var(--grad-support-frame);
  box-shadow: var(--shadow-brand) 0 3px;
}

.sp-chat::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: var(--radius-6);
  background: var(--grad-support-face);
  box-shadow: var(--support-glow) 0 4px 8px inset;
}

.sp-chat__pic,
.sp-chat__img {
  position: relative;
  z-index: 2;
  display: block;
}

.sp-chat__text {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  padding-inline: 5px;
  font-weight: 700;
  font-size: var(--fs-12);
  line-height: 14px;
  text-transform: uppercase;
  color: var(--text-white);
}

.sp-chat--small {
  width: 48px;
  height: 48px;
}

.sp-chat--small .sp-chat__img {
  width: 26px;
}

.sp-chat--medium {
  height: 52px;
  min-width: 100px;
  padding-inline: 14px;
}

.sp-chat--medium .sp-chat__text {
  text-transform: capitalize;
}

.sp-chat--medium .sp-chat__img {
  width: 24px;
}

.sp-chat--large {
  height: 52px;
  min-width: 151px;
  width: fit-content;
}

.sp-chat--large .sp-chat__img {
  width: 40px;
  margin-inline-start: var(--size-8);
}

.sp-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--size-4);
}

.sp-lang__pic {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-4);
}

.sp-lang__title {
  flex-grow: 1;
  padding-inline: 5px;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 19px;
  color: var(--brand);
  opacity: 0.8;
}

.sp-lang--short {
  min-width: 48px;
  height: 48px;
  border: 2px solid var(--text-white);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-brand) 1px 3px, var(--text-white) 0 3px 15px inset;
}

.sp-lang--short .sp-lang__pic img {
  width: 25px;
  height: 17.5px;
}

.sp-lang--full {
  min-width: 151px;
  height: 52px;
  border: 3px solid var(--text-white);
  border-radius: var(--radius-12);
  background: var(--grad-pill);
  box-shadow: var(--shadow-brand) 0 4px, var(--text-white) 0 3px 8px inset;
}

.sp-lang--full .sp-lang__pic img {
  width: 44px;
  height: 32px;
}

.sp-lang-box {
  position: relative;
}

.sp-lang__caret {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.15s ease;
}

.sp-lang__caret svg {
  width: 100%;
  height: 100%;
}

.sp-lang__toggle[aria-expanded="true"] .sp-lang__caret {
  transform: rotate(180deg);
}

.sp-lang--short .sp-lang__caret {
  margin-inline-start: var(--size-2);
  color: var(--text-white);
}

.sp-lang--full .sp-lang__caret {
  margin-inline-end: var(--size-2);
  color: var(--brand);
  opacity: 0.8;
}

.sp-lang-menu {
  position: absolute;
  inset-inline-start: 0;
  bottom: calc(100% + var(--size-8));
  z-index: 20;
  display: grid;
  gap: var(--size-2);
  width: max-content;
  min-width: 100%;
  padding: var(--size-4);
  border-radius: var(--radius-8);
  background: var(--bg-surface);
  box-shadow: var(--shadow-ink) 0 8px 24px;
}

.sp-lang-menu[hidden] {
  display: none;
}

.sp-lang-item {
  display: flex;
  align-items: center;
  gap: var(--size-8);
  padding: var(--size-8);
  border-radius: var(--radius-4);
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 17px;
  white-space: nowrap;
  color: var(--text-title);
}

.sp-lang-item .sp-lang__pic {
  flex: none;
}

.sp-lang-item .sp-lang__pic img {
  width: 25px;
  height: 17.5px;
}

.sp-lang-item:hover {
  background: var(--bg-page);
}

.sp-lang-item--active {
  background: var(--bg-page);
  color: var(--brand);
}

@media (min-width: 1024px) {
  .head-bar__search {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-inline-start: var(--size-12);
  }

  .sp-btn--small {
    padding: var(--size-8) var(--size-20) 7px;
  }

  .sp-btn--small .sp-btn__title {
    font-size: var(--fs-16);
    line-height: 19px;
  }
}

@media (min-width: 1280px) {
  .head-bar__content {
    display: flex;
  }

  .head-bar__left {
    display: none;
  }

  .head-bar--burger .head-bar__left {
    display: flex;
  }

  .head-bar__nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    margin-inline-end: 25px;
  }

  .head-bar__actions {
    display: flex;
    gap: 18px;
  }

  .head-bar__arrow {
    display: flex;
  }

  .head-bar__arrow.is-hidden {
    display: none;
  }

  .head-bar--no-search .head-bar__search {
    display: none;
  }

  .head-bar--no-search-m .head-bar__search {
    display: flex;
  }

  .sp-overlay,
  .sp-drawer {
    display: none;
  }

  .head-bar--burger ~ .sp-overlay,
  .head-bar--burger ~ .sp-drawer {
    display: block;
  }
}

@media (min-width: 1760px) {
  .head-bar__menu {
    max-width: none;
  }

  .head-bar__links {
    overflow: visible;
  }

  .head-bar__arrow {
    display: none;
  }
}

.f-out {
  position: relative;
  z-index: 5;
  margin-bottom: 116px;
  padding: var(--size-24) 0 var(--size-32);
  background: var(--bg-surface);
  font-size: var(--fs-10);
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

.f-out__shell {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-x);
  position: relative;
}

.f-out__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-12);
  height: 52px;
  margin: 0 auto;
}

.f-out__grid {
  display: flex;
  flex-direction: column;
  column-gap: var(--size-6);
  margin: var(--size-32) 0;
}

.f-col {
  position: relative;
}

.f-col__title {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 52px;
  margin-bottom: var(--size-12);
  padding-block: var(--size-20);
  padding-inline: var(--size-20) var(--size-40);
  border-radius: var(--radius-8);
  box-shadow: var(--shadow-brand) 0 3px;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-align: start;
  text-transform: capitalize;
  color: var(--text-muted);
}

.f-col__title::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: var(--radius-8);
  background: var(--grad-pill);
  z-index: -1;
}

.f-col__chevron {
  position: absolute;
  inset-inline-end: var(--size-20);
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(90deg);
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.f-col__chevron svg {
  width: 8px;
  height: 14px;
}

.f-col.is-open .f-col__chevron {
  transform: translateY(-50%) rotate(-90deg);
}

.f-col__list {
  display: none;
}

.f-col.is-open .f-col__list {
  display: block;
}

.f-col__item {
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  margin-bottom: var(--size-20);
}

.f-col__item:last-child {
  margin-bottom: var(--size-12);
}

.f-col__link {
  text-decoration: underline;
  color: var(--text-muted);
}

.f-col--flat .f-col__list {
  display: block;
}

.f-col--flat .f-col__item {
  margin-bottom: 0;
}

.f-col__title--link {
  text-decoration: none;
}

.f-pay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -18px var(--size-20);
}

.f-pay__item {
  width: 60px;
  margin: var(--size-10) var(--size-6);
}

.f-pay__img {
  display: block;
  margin: 0 auto;
}

.f-pay__more {
  display: inline-flex;
  align-items: center;
  gap: var(--size-4);
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 144%;
  text-transform: capitalize;
  color: #f93b82;
}

.f-pay__more-icon {
  display: flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
}

.f-pay__more-icon svg {
  width: 8px;
  height: 14px;
}

.f-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-20);
  max-width: 706px;
  margin: 0 auto;
}

.f-legal__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.f-legal__icon {
  margin: 0 var(--size-16);
}

.f-legal__icon img {
  display: block;
  height: 32px;
  width: auto;
}

.f-legal__text {
  display: grid;
  gap: var(--size-12);
  text-align: center;
  font-size: var(--fs-14);
  line-height: 140%;
  color: var(--text-muted);
}

.sp-float {
  position: fixed;
  bottom: var(--size-60);
  inset-inline-end: 22px;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--size-12);
}

.sp-float__up {
  position: relative;
  inset-inline-end: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-12);
  background-image: linear-gradient(160.35deg, #a3abfe 21.22%, #5157af 83.83%);
  box-shadow: #4a2ff0 0 -2px 6px inset;
  color: var(--text-white);
  pointer-events: none;
  transition: inset-inline-end 0.3s;
}

.sp-float__up svg {
  width: 17px;
  height: 10px;
  filter: drop-shadow(rgba(0, 0, 0, 0.15) 1px 2px 0);
}

.sp-float__up.is-visible {
  inset-inline-end: 0;
  pointer-events: auto;
}

@media (max-width: 1023px) {
  .sp-float--slim .sp-float__up {
    display: none;
  }

  .sp-float--slim .sp-chat--medium {
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding-inline: var(--size-4);
  }

  .sp-float--slim .sp-chat--medium .sp-chat__img {
    width: 20px;
  }

  .sp-float--slim .sp-chat--medium .sp-chat__text {
    display: none;
  }
}

.sp-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--z-toolbar);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  min-height: 56px;
  padding: var(--size-2) var(--size-20);
  background: linear-gradient(#642764 0%, #4f1c4f 100%);
}

@media (min-width: 1024px) {
  .f-out {
    padding: var(--size-40) 0;
    font-size: var(--fs-12);
  }

  .f-out__shell {
    max-width: var(--footer-max);
    padding: 0;
  }

  .f-out__top {
    gap: var(--size-24);
  }

  .f-out__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto 1fr 1fr;
    grid-template-areas:
      'general casino live sport specials privacy'
      'payments casino live sport specials terms'
      'payments casino live sport specials terms';
    gap: var(--size-24);
    margin: 42px 0;
  }

  .f-col {
    text-align: center;
  }

  .f-col--general {
    grid-area: general;
  }

  .f-col--casino {
    grid-area: casino;
  }

  .f-col--live {
    grid-area: live;
  }

  .f-col--sport {
    grid-area: sport;
  }

  .f-col--specials {
    grid-area: specials;
  }

  .f-col--privacy {
    grid-area: privacy;
  }

  .f-col--terms {
    grid-area: terms;
  }

  .f-col--payments {
    grid-area: payments;
  }

  .f-col__title {
    height: auto;
    margin-bottom: var(--size-26);
    padding: 0;
    box-shadow: none;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    color: var(--brand);
    pointer-events: none;
  }

  .f-col__title--link {
    pointer-events: auto;
    text-decoration: underline;
  }

  .f-col__list {
    display: block;
    text-align: center;
  }

  .f-col__link:hover {
    color: var(--brand);
  }

  .f-pay {
    margin: 0 0 var(--size-20);
  }

  .f-pay__item {
    width: 88px;
  }
}

@media (min-width: 1280px) {
  .f-out {
    margin-bottom: 0;
  }

  .sp-float {
    bottom: 25px;
  }

  .sp-toolbar {
    display: none;
  }
}

.sp-seo {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--size-20) var(--size-24) var(--size-40);
}

.sp-seo__item {
  margin-bottom: var(--size-16);
  padding: var(--size-20);
  border-radius: var(--radius-8);
  background: var(--grad-pill);
  box-shadow: var(--shadow-brand) 0 3px;
}

.sp-seo__item:last-child {
  margin-bottom: 0;
}

.sp-seo__summary {
  position: relative;
  display: block;
  padding-inline-end: 25px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.sp-seo__summary::-webkit-details-marker {
  display: none;
}

.sp-seo__title {
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--brand);
}

.sp-seo__icon {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(90deg);
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.sp-seo__icon svg {
  width: 8px;
  height: 14px;
}

.sp-seo__item[open] .sp-seo__icon {
  transform: translateY(-50%) rotate(-90deg);
}

.sp-seo__body p {
  margin: var(--size-16) 0;
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: 140%;
  color: var(--text-muted);
}

.sp-seo__body p:first-child {
  margin-top: var(--size-20);
}

.sp-seo__body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .sp-seo {
    padding: var(--size-20) 0 var(--size-40);
  }

  .sp-seo__title {
    font-size: var(--fs-16);
  }
}

.sp-btn--primary::before,
.sp-btn--secondary::before {
  display: none;
}

.sp-btn--primary {
  background-image: var(--grad-primary);
  box-shadow: inset 0 -4px 12px #0b8c84, 0 0 0 4px #a2ffc4, 0 8px 14px rgba(69, 254, 65, 0.45);
}

.sp-btn--primary:hover {
  background-image: var(--grad-primary-hover);
}

.sp-btn--secondary {
  background-image: var(--grad-secondary);
  box-shadow: inset 0 -4px 12px #d22700, 0 0 0 4px #ffd28e, 0 8px 14px rgba(255, 168, 67, 0.45);
}

.sp-btn--large {
  min-width: 164px;
  min-height: 56px;
  padding: 15px 24px;
  border-radius: var(--radius-16);
}

.sp-btn--large::before {
  left: -4px;
  top: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border-radius: var(--radius-16);
}

.sp-btn--large .sp-btn__title {
  font-size: var(--size-24);
  line-height: 29px;
}

.sp-btn--medium {
  min-width: 120px;
  min-height: 40px;
  padding: var(--size-10) var(--size-20);
  border-radius: var(--radius-12);
}

.sp-btn--medium::before {
  border-radius: var(--radius-12);
}

.sp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-8);
  background: var(--bg-glass);
  border: 2px solid #fff;
  box-shadow: 1px 3px 0 var(--shadow-brand), inset 0 3px 8px #fff;
  color: #fff;
  filter: var(--shadow-drop);
}

.sp-arrow--grey {
  background: var(--shadow-brand);
}

.sp-arrow svg {
  display: block;
  width: 11px;
  height: 15px;
}

.sp-arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  padding-bottom: 180px;
}

.hero__frame {
  position: relative;
  display: block;
  height: 440px;
}

.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 2;
}

.hero__frame::after {
  left: 0;
  border-width: 20px 0 0 50vw;
  border-color: transparent transparent transparent var(--bg-page);
}

.hero__frame::before {
  right: 0;
  border-width: 0 0 20px 50vw;
  border-color: transparent transparent var(--bg-page);
}

.hero__inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero__inner--sport {
  background-image: image-set(url('/assets/image/site/wp/hero-bg-2-540.webp') 1x, url('/assets/image/site/wp/hero-bg-2-540.webp') 2x);
}

.hero__inner--casino {
  background-image: image-set(url('/assets/image/site/wp/hero-bg-1-540.webp') 1x, url('/assets/image/site/wp/hero-bg-1-540.webp') 2x);
}

.hero__sheen {
  display: none;
}

.hero__info {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__bubble {
  position: relative;
  width: 270px;
  min-height: 190px;
  padding: 50px 32px 50px 50px;
  text-align: center;
  background-image: linear-gradient(transparent, transparent);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero__kicker {
  margin: 0 0 var(--size-4);
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-title);
  text-shadow: var(--text-shadow-btn);
}

.hero__lead {
  margin: 0 0 var(--size-4);
  font-weight: 700;
  font-size: var(--fs-20);
  line-height: 120%;
  color: var(--text-title);
  text-shadow: rgba(0, 0, 0, 0.15) 1px 3px 0;
}

.hero__value {
  position: relative;
  font-weight: 700;
  font-size: 48px;
  line-height: 115%;
}

.hero__value::after {
  content: attr(data-value);
  position: absolute;
  left: calc(50% + 1px);
  top: 3px;
  z-index: -1;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.15);
  font-size: inherit;
  font-weight: 700;
}

.hero__amount {
  margin: 0;
  background: var(--grad-badge);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__terms {
  display: inline-block;
  margin-top: var(--size-4);
  font-size: var(--fs-12);
  font-weight: 500;
  line-height: 17px;
  color: var(--text-title);
  text-decoration: underline;
}

.hero__cta {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 5;
  transform: translateX(-50%);
}

.hero__man {
  position: absolute;
  bottom: -30px;
  inset-inline-end: 1vw;
  z-index: 2;
  width: 170px;
}

.hero__layer {
  position: absolute;
  display: block;
  height: auto;
}

.hero__layer--body {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__layer--hair {
  width: 65.4%;
  left: 15.5%;
  top: -15.2%;
  z-index: 3;
}

.hero__layer--curl {
  width: 12%;
  left: 35%;
  top: 0.8%;
  z-index: 4;
}

.hero__layer--glasses {
  width: 57%;
  left: 19%;
  top: 19%;
  z-index: 6;
}

.hero__layer--ear-l {
  width: 10%;
  left: 15.2%;
  top: 22.6%;
  z-index: 1;
}

.hero__layer--ear-r {
  width: 10%;
  right: 17%;
  top: 23%;
  z-index: 1;
}

.hero__layer--face {
  width: 46%;
  right: 30%;
  top: 12%;
  z-index: 3;
}

.hero__man--football .hero__layer--hair {
  width: 46%;
  left: 28.8%;
  top: 0;
}

.hero__man--football .hero__layer--ear-l {
  width: 6%;
  left: 35.4%;
  top: 19.8%;
}

.hero__man--football .hero__layer--ear-r {
  width: 5.6%;
  right: 27.9%;
  top: 19.8%;
}

.hero__man--football .hero__layer--face {
  width: 24.5%;
  right: 33.5%;
  top: 13.6%;
}

.hero__steps {
  position: absolute;
  left: 50%;
  bottom: -170px;
  z-index: 5;
  display: flex;
  gap: var(--size-8);
  width: 92%;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.hero__step {
  position: relative;
  display: flex;
  flex: 1 1 30%;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  padding: 40px 8px 12px;
  font-weight: 500;
  font-size: var(--fs-12);
  line-height: 140%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: rgba(0, 0, 0, 0.1) 1px 2px 0;
  border-radius: 20% 48% 19% 38% / 21% 35% 28% 63%;
  box-shadow: 0 3px 0 var(--shadow-brand), inset 3px 3px 12px rgba(255, 255, 255, 0.5);
}

.hero__step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 12px;
  width: 100%;
  height: 32px;
  transform: translateX(-50%);
}

.hero__step:nth-child(1) {
  background: radial-gradient(95.16% 104.62% at 73.78% 9.83%, #7c51f1 0%, #6c45d4 29.4%, #cab6ff 100%);
}

.hero__step:nth-child(1)::after {
  background: radial-gradient(50% 50%, #5a3bac 0%, rgba(88, 57, 171, 0) 100%);
}

.hero__step:nth-child(2) {
  background: radial-gradient(246.02% 104% at 51.73% 2.36%, #484bcf 0%, #6671d8 51.1%, #959fff 89.58%);
}

.hero__step:nth-child(2)::after {
  background: radial-gradient(50% 50%, #44489e 0%, rgba(67, 71, 156, 0) 100%);
}

.hero__step:nth-child(3) {
  background: radial-gradient(142.49% 92.49% at 54.88% 13.87%, #ae22bf 0%, #aa3fbd 34.86%, #e582ff 89.58%);
}

.hero__step:nth-child(3)::after {
  background: radial-gradient(50% 50%, #8a3299 0%, rgba(130, 46, 143, 0) 100%);
}

.hero__step-img {
  position: absolute;
  left: 50%;
  top: 4px;
  z-index: 1;
  display: block;
  width: 80px;
  height: auto;
  transform: translate(-50%, -50%);
}

.hero__step-text {
  margin: 0;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
}

.hero__arrow--prev {
  left: 1vw;
}

.hero__arrow--next {
  right: 1vw;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: -4px;
  z-index: 10;
  display: flex;
  gap: var(--size-20);
  width: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(-50%);
}

.hero__dot {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #ff1d53;
  border-radius: 50%;
  background: transparent;
}

.hero__dot.is-active {
  border: none;
  background: var(--grad-badge);
}

@media (max-width: 767px) {
  .hero__arrow {
    display: none;
  }
}

@media (min-width: 540px) {
  .hero__frame {
    height: 460px;
  }

  .hero__man {
    width: 215px;
    bottom: 0;
    inset-inline-start: -32px;
    inset-inline-end: auto;
  }

  .hero__man--football {
    width: 280px;
    bottom: -120px;
    inset-inline-start: -70px;
  }
}

@media (min-width: 768px) {
  .hero__inner--sport {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-2-768.webp') 1x, url('/assets/image/site/wp/hero-bg-2-768.webp') 2x);
  }

  .hero__inner--casino {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-1-768.webp') 1x, url('/assets/image/site/wp/hero-bg-1-768.webp') 2x);
  }
}

@media (min-width: 1024px) {
  .hero__slide {
    padding-bottom: 44px;
  }

  .hero__frame {
    height: 628px;
  }

  .hero__inner--sport {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-2-1280.webp') 1x, url('/assets/image/site/wp/hero-bg-2-1280.webp') 2x);
  }

  .hero__inner--casino {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-1-1280.webp') 1x, url('/assets/image/site/wp/hero-bg-1-1280.webp') 2x);
  }

  .hero__sheen {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hero__sheen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    z-index: 1;
    width: 60%;
    height: 100%;
    opacity: 0.5;
    transform: skew(-20deg);
    background: linear-gradient(188.15deg, #8004ff 4.9%, rgba(126, 0, 255, 0) 93.74%);
  }

  .hero__info {
    top: 120px;
  }

  .hero__bubble {
    width: fit-content;
    min-width: 380px;
    min-height: 300px;
    padding: 70px 50px 70px 42px;
  }

  .hero__kicker {
    font-size: var(--fs-20);
    line-height: 24px;
  }

  .hero__lead {
    font-size: 30px;
    line-height: 36px;
  }

  .hero__value {
    font-size: 52px;
  }

  .hero__terms {
    font-size: var(--fs-14);
  }

  .hero__cta {
    bottom: 190px;
  }

  .hero__man {
    width: 390px;
    bottom: -40px;
    inset-inline-start: -12px;
  }

  .hero__man--football {
    width: 500px;
    bottom: -250px;
    inset-inline-start: -98px;
  }

  .hero__steps {
    left: auto;
    right: 40px;
    bottom: -20px;
    width: auto;
    max-width: 424px;
    transform: none;
  }

  .hero__step {
    min-height: 130px;
    padding: 48px 16px 12px;
    font-size: var(--fs-16);
  }

  .hero__step::after {
    top: 18px;
  }

  .hero__step-img {
    width: 92px;
  }

  .hero__arrow--prev {
    left: 14px;
  }

  .hero__arrow--next {
    right: 14px;
  }
}

@media (min-width: 1280px) {
  .hero__man {
    width: 390px;
    bottom: -56px;
    inset-inline-start: 36px;
  }

  .hero__man--football {
    bottom: -252px;
    inset-inline-start: 10px;
  }
}

@media (min-width: 1440px) {
  .hero__slide {
    padding-bottom: 22px;
  }

  .hero__frame {
    height: 760px;
  }

  .hero__sheen::before {
    width: 30%;
  }

  .hero__info {
    top: 192px;
  }

  .hero__bubble {
    min-width: 420px;
    min-height: 320px;
    padding: 70px 50px 70px 64px;
  }

  .hero__value {
    font-size: 72px;
  }

  .hero__cta {
    bottom: 214px;
  }

  .hero__man {
    width: 460px;
    bottom: -30px;
    inset-inline-start: 40px;
  }

  .hero__man--football {
    width: 660px;
    bottom: -376px;
    inset-inline-start: -48px;
  }

  .hero__steps {
    right: 48px;
    bottom: -16px;
    gap: var(--size-24);
    min-width: 584px;
    max-width: 584px;
  }

  .hero__step {
    min-height: 190px;
    padding: 64px 16px 12px;
    font-size: 19px;
  }

  .hero__step::after {
    top: 34px;
  }

  .hero__step-img {
    width: 140px;
  }

  .hero__dots {
    bottom: 0;
  }
}

@media (min-width: 1440px) {
  .hero__inner--sport {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-2-1680.webp') 1x, url('/assets/image/site/wp/hero-bg-2-1680.webp') 2x);
  }

  .hero__inner--casino {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-1-1680.webp') 1x, url('/assets/image/site/wp/hero-bg-1-1680.webp') 2x);
  }
}

@media (min-width: 1920px) {
  .hero__inner--sport {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-2-2500.webp') 1x, url('/assets/image/site/wp/hero-bg-2-2500.webp') 2x);
  }

  .hero__inner--casino {
    background-image: image-set(url('/assets/image/site/wp/hero-bg-1-2500.webp') 1x, url('/assets/image/site/wp/hero-bg-1-2500.webp') 2x);
  }
}

.container--top {
  padding-top: 30px;
}

.shelf {
  position: relative;
}

.shelf__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--size-12);
}

.shelf__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-title);
}

.shelf__link {
  position: relative;
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  text-transform: capitalize;
  color: var(--brand);
  text-decoration: underline;
}

.shelf__row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.shelf__row::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.shelf__row--top {
  gap: var(--size-8);
  margin-bottom: var(--size-10);
}

.shelf__row--bot {
  gap: var(--size-8);
}

.shelf__row--top .shelf__cell {
  flex: 0 0 104px;
  width: 104px;
}

.shelf__row--bot .shelf__cell {
  flex: 0 0 160px;
  width: 160px;
}

.gcard {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-12);
  background-color: #c29dc8;
  background-image: url('/assets/image/site/wp/logo.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 130px;
}

.gcard::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-12);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.gcard__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-12);
  object-fit: cover;
  object-position: center top;
}

.gcard__tag {
  position: absolute;
  left: 5px;
  bottom: 10px;
  z-index: 3;
  padding: var(--size-4);
  border-radius: var(--radius-8);
  font-weight: 700;
  font-size: var(--fs-12);
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.25) 1px 2px 0;
  background-color: rgba(217, 238, 255, 0.4);
  background-image: linear-gradient(226.43deg, #229341 25.58%, #2fae53 81.6%);
  box-shadow: inset 0 -1.92px 3.84px rgba(158, 255, 191, 0.8);
}

.gcard__drop {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: block;
  width: 65px;
  height: auto;
}

.gcard__tag--live {
  background-image: linear-gradient(36.12deg, #e43e66 16.28%, #ad1e74 83.4%);
  box-shadow: inset 0 -1.92px 3.84px rgba(255, 158, 191, 0.6);
}

.gcard__over {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: var(--radius-12);
  background: radial-gradient(100.44% 103.16% at 79.88% 90.53%, rgba(26, 66, 208, 0.8) 0%, rgba(48, 86, 221, 0.8) 29.4%, rgba(160, 187, 255, 0.8) 100%);
  transition: opacity 0.3s;
}

.gcard:hover .gcard__over,
.gcard:focus-visible .gcard__over {
  opacity: 1;
  visibility: visible;
}

.gcard__fav {
  position: absolute;
  top: 6px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: var(--radius-8);
  box-shadow: 1px 3px 0 var(--shadow-brand), inset 0 3px 8px #fff;
  color: #fff;
}

.gcard__fav svg {
  display: block;
  width: 13px;
  height: 13px;
}

.gcard__play {
  margin-bottom: var(--size-20);
}

.gcard__demo {
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  color: #fff;
  text-decoration: underline;
}

.gcard__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  padding: 0 var(--size-6);
  text-align: center;
}

.gcard__name {
  display: block;
  font-weight: 500;
  font-size: var(--fs-12);
  line-height: 110%;
  color: rgba(255, 255, 255, 0.8);
}

.gcard__brand {
  display: block;
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.shelf__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.shelf__arrow--prev {
  left: -30px;
}

.shelf__arrow--next {
  right: -30px;
}

@media (max-width: 1279px) {
  .shelf__arrow {
    display: none;
  }
}

@media (min-width: 1280px) {
  .container--top {
    padding-top: var(--size-32);
  }

  .shelf__title {
    font-size: var(--fs-20);
    line-height: 24px;
  }

  .shelf__row {
    gap: 0;
    margin-left: -10px;
    margin-right: -10px;
  }

  .shelf__row--top {
    margin-bottom: var(--size-20);
  }

  .shelf__cell {
    padding: 0 10px;
  }

  .shelf__row--top .shelf__cell {
    flex: 0 0 16.666%;
    width: 16.666%;
  }

  .shelf__row--bot .shelf__cell {
    flex: 0 0 18.2%;
    width: 18.2%;
  }

  .shelf__row--bot .gcard {
    height: 100%;
  }

  .shelf__row--bot .shelf__cell {
    height: 360px;
  }
}

.promo {
  position: relative;
  margin: var(--size-24) 0;
  padding: 0 var(--page-x);
}

.promo__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.promo__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.promo__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

.promo__card {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 240px;
  border-radius: var(--size-24);
  color: #fff;
}

.promo__card--rally {
  background-image: image-set(url('/assets/image/site/wp/promo1-mob.webp') 1x, url('/assets/image/site/wp/promo1-tab.webp') 2x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.promo__logo {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 2;
  width: 110px;
  height: auto;
  transform: translateY(-50%);
}

.promo__info {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 180px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.promo__text {
  margin: 0 0 var(--size-4);
  font-size: var(--fs-20);
  line-height: 1.2;
}

.promo__amount {
  margin: 0 0 var(--size-16);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
}

.promo__guy {
  position: absolute;
  right: -20px;
  top: -10px;
  z-index: 1;
  width: 210px;
  height: auto;
}

.promo__bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--size-24);
  object-fit: cover;
  transform: scale(1.05);
}

.promo__content {
  position: absolute;
  left: 24px;
  top: 32px;
  z-index: 10;
  max-width: 60%;
}

.promo__content--shop {
  left: auto;
  right: 24px;
  top: 50%;
  width: 240px;
  max-width: 50%;
  text-align: center;
  transform: translateY(-50%);
}

.promo__title {
  margin: 0 0 var(--size-12);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.promo__lead {
  display: inline-block;
  margin: 0 0 var(--size-16);
  font-size: var(--fs-16);
  line-height: 1.2;
}

.promo__lead-amount {
  display: block;
  margin-top: var(--size-8);
  font-weight: 700;
}

.promo__pic {
  position: absolute;
  right: -30px;
  bottom: -10px;
  z-index: 1;
  width: 200px;
  height: auto;
}

.promo__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
}

.promo__arrow--prev {
  left: 12px;
}

.promo__arrow--next {
  right: 12px;
}

@media (max-width: 1023px) {
  .promo__arrow {
    display: none;
  }
}

@media (min-width: 540px) {
  .promo__card--rally {
    background-image: image-set(url('/assets/image/site/wp/promo1-tab.webp') 1x, url('/assets/image/site/wp/promo1-desk.webp') 2x);
  }
}

@media (min-width: 1024px) {
  .promo {
    margin: var(--size-40) 0;
  }

  .promo__card--rally {
    background-image: url('/assets/image/site/wp/promo1-desk.webp');
  }

  .promo__card {
    height: 340px;
  }

  .promo__logo {
    left: 60px;
    width: 240px;
  }

  .promo__info {
    width: 186px;
  }

  .promo__text {
    font-size: 28px;
  }

  .promo__amount {
    font-size: 40px;
    margin-bottom: var(--size-24);
  }

  .promo__guy {
    width: 500px;
    top: -30px;
  }

  .promo__content {
    left: 80px;
    top: 48px;
    max-width: 440px;
  }

  .promo__content--shop {
    left: auto;
    right: 100px;
    width: 280px;
    max-width: 280px;
  }

  .promo__title {
    font-size: 38px;
  }

  .promo__lead {
    font-size: 24px;
    line-height: 1.2;
  }

  .promo__pic {
    right: 0;
    bottom: -60px;
    width: 460px;
  }

  .promo__arrow--prev {
    left: 30px;
  }

  .promo__arrow--next {
    right: 30px;
  }
}

@media (min-width: 1440px) {
  .promo__card {
    height: 420px;
  }

  .promo__logo {
    left: 120px;
    width: 300px;
  }

  .promo__text {
    font-size: 36px;
    line-height: 43px;
  }

  .promo__amount {
    margin-bottom: 36px;
    font-size: 48px;
    line-height: 57px;
  }

  .promo__guy {
    width: 630px;
    top: -36px;
    right: -20px;
  }

  .promo__content {
    left: 100px;
    top: 60px;
    max-width: 480px;
  }

  .promo__title {
    margin-bottom: var(--size-12);
    font-size: 45px;
    line-height: 54px;
  }

  .promo__lead {
    margin-bottom: var(--size-24);
    font-size: 28px;
    line-height: 33.6px;
  }

  .promo__content--shop .promo__title {
    font-size: 45px;
  }

  .promo__content--shop .promo__lead {
    font-size: 25px;
    line-height: 30px;
  }

  .promo__pic {
    width: 560px;
    bottom: -120px;
    right: 40px;
  }
}

.wins {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--size-24);
}

.wins__title {
  margin: 0 0 var(--size-12);
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-title);
}

.wins__track {
  display: flex;
  gap: var(--size-24);
  overflow-x: auto;
  padding: var(--size-10) 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.wins__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.wins__item {
  position: relative;
  flex: 0 0 281px;
  width: 281px;
  min-height: 84px;
  border-radius: var(--radius-16);
  background-image: linear-gradient(250.53deg, #e2ebff 21.38%, #ecf1fd 69.95%);
}

.wins__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-12);
  height: 100%;
  padding: var(--size-12) var(--size-12) var(--size-12) var(--size-16);
}

.wins__text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.wins__player {
  display: block;
  margin-bottom: var(--size-4);
  font-size: var(--fs-12);
  line-height: 14px;
  color: var(--brand);
}

.wins__amount {
  display: block;
  margin-bottom: var(--size-4);
  font-weight: 700;
  font-size: var(--fs-20);
  line-height: 24px;
  background: var(--grad-badge);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.wins__game {
  display: block;
  font-size: var(--fs-12);
  line-height: 14.4px;
  color: var(--brand);
}

.wins__game-name {
  font-weight: 700;
}

.wins__img {
  display: block;
  flex: 0 0 84px;
  width: 84px;
  height: 56px;
  border-radius: var(--radius-8);
  object-fit: cover;
}

.wins__over {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: var(--radius-16);
  background: radial-gradient(100.44% 103.16% at 79.88% 90.53%, rgba(26, 66, 208, 0.8) 0%, rgba(48, 86, 221, 0.8) 29.4%, rgba(160, 187, 255, 0.8) 100%);
  transition: opacity 0.3s;
}

.wins__item:hover .wins__over,
.wins__item:focus-visible .wins__over {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1280px) {
  .wins {
    margin-bottom: 29px;
  }

  .wins__title {
    font-size: var(--fs-20);
    line-height: 24px;
  }
}

.container--live {
  padding-top: var(--size-8);
  padding-bottom: var(--size-8);
}

.live {
  position: relative;
}

.live__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--size-12);
}

.live__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-title);
}

.live__link {
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  color: var(--brand);
  text-decoration: underline;
}

.live__tabs {
  display: flex;
  gap: var(--size-8);
  overflow-x: auto;
  margin-bottom: var(--size-12);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.live__tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.live__tab {
  flex: 0 0 auto;
  padding: var(--size-8) var(--size-16);
  border-radius: var(--radius-8);
  font-weight: 700;
  font-size: var(--fs-12);
  line-height: 14px;
  white-space: nowrap;
  color: var(--brand);
  background: var(--grad-pill);
  box-shadow: 0 3px 0 var(--shadow-brand);
}

.live__tab--active {
  color: #fff;
  background: var(--bg-header);
}

.live__wrap {
  position: relative;
}

.live__track {
  display: flex;
  gap: var(--size-16);
  overflow-x: auto;
  padding-bottom: var(--size-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.live__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.live__card {
  display: flex;
  flex: 0 0 300px;
  flex-direction: column;
  width: 300px;
  padding: var(--size-12) var(--size-16) var(--size-16);
  border-radius: var(--radius-16);
  background: var(--bg-surface);
  box-shadow: 0 3px 0 rgba(53, 51, 139, 0.12);
}

.live__meta {
  display: flex;
  align-items: center;
  gap: var(--size-8);
  margin-bottom: var(--size-8);
}

.live__cs {
  padding: 2px var(--size-6);
  border-radius: var(--radius-4);
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  color: var(--brand);
  background: rgba(79, 51, 139, 0.1);
}

.live__flag {
  padding: 2px var(--size-6);
  border-radius: var(--radius-4);
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(36.12deg, #e43e66 16.28%, #ad1e74 83.4%);
}

.live__clock {
  font-weight: 700;
  font-size: var(--fs-12);
  line-height: 14px;
  color: var(--text-body);
}

.live__league {
  margin: 0 0 var(--size-10);
  overflow: hidden;
  font-size: var(--fs-12);
  line-height: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-body);
}

.live__teams {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: var(--size-6);
  margin-bottom: var(--size-12);
}

.live__team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-8);
  margin: 0;
}

.live__name {
  overflow: hidden;
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-title);
}

.live__score {
  flex: 0 0 auto;
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 17px;
  color: var(--text-title);
}

.live__closed {
  margin: 0;
  padding: var(--size-10) 0;
  font-size: var(--fs-12);
  line-height: 14px;
  text-align: center;
  color: var(--text-muted);
}

.live__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-8);
}

.live__odd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--size-6) var(--size-4);
  border-radius: var(--radius-8);
  background: var(--grad-pill);
  box-shadow: 0 3px 0 var(--shadow-brand);
}

.live__odd-key {
  font-size: 10px;
  line-height: 12px;
  color: var(--text-body);
}

.live__odd-value {
  font-weight: 700;
  font-size: var(--fs-14);
  line-height: 17px;
  color: var(--text-title);
}

.live__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.live__arrow--prev {
  left: -30px;
}

.live__arrow--next {
  right: -30px;
}

@media (max-width: 1279px) {
  .live__arrow {
    display: none;
  }
}

@media (min-width: 1280px) {
  .container--live {
    padding-top: var(--size-16);
    padding-bottom: var(--size-16);
  }

  .live__title {
    font-size: var(--fs-20);
    line-height: 24px;
  }

  .live__card {
    flex: 0 0 316px;
    width: 316px;
  }
}

.tourn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: var(--size-32);
  padding: var(--size-24);
  border-radius: var(--size-24);
  background-image: url('/assets/image/site/wp/tourn-bg-mob.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.tourn__info {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  max-width: 60%;
  color: #fff;
}

.tourn__title {
  margin: 0 0 var(--size-8);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tourn__subtitle {
  margin: 0 0 var(--size-6);
  font-weight: 300;
  font-size: var(--fs-16);
  line-height: 1.2;
}

.tourn__time {
  margin: 0 0 var(--size-6);
  font-weight: 300;
  font-size: var(--fs-14);
  line-height: 1.2;
}

.tourn__prize {
  margin: 0 0 var(--size-12);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
}

.tourn__cta {
  align-self: flex-start;
}

.tourn__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
}

.tourn__image {
  display: block;
  width: 170px;
  height: auto;
}

@media (min-width: 540px) {
  .tourn__image {
    width: 240px;
  }
}

@media (min-width: 768px) {
  .tourn {
    padding: var(--size-32) var(--size-40);
  }

  .tourn__image {
    width: 380px;
  }
}

@media (min-width: 1024px) {
  .tourn {
    padding: var(--size-40) var(--size-60);
    background-image: url('/assets/image/site/wp/tourn-bg-desk.webp');
  }

  .tourn__title {
    font-size: 38px;
    line-height: 46px;
  }

  .tourn__subtitle {
    font-size: var(--fs-20);
    line-height: 24px;
  }

  .tourn__time {
    font-size: var(--fs-20);
    line-height: 24px;
  }

  .tourn__prize {
    font-size: 48px;
    line-height: 58px;
  }

  .tourn__image {
    width: 560px;
  }

  .tourn__pic {
    right: 20px;
  }
}

@media (min-width: 1440px) {
  .tourn {
    padding: var(--size-60) 110px;
  }

  .tourn__info {
    max-width: 480px;
  }

  .tourn__title {
    margin-bottom: var(--size-10);
    font-size: 45px;
    line-height: 54px;
  }

  .tourn__subtitle {
    margin-bottom: var(--size-10);
    font-size: var(--size-24);
    line-height: 28.8px;
  }

  .tourn__time {
    margin-bottom: var(--size-10);
    font-size: var(--size-24);
    line-height: 28.8px;
  }

  .tourn__prize {
    margin-bottom: 14px;
    font-size: 60px;
    line-height: 72px;
  }

  .tourn__image {
    width: 640px;
  }

  .tourn__pic {
    right: 40px;
  }
}

.jack {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: var(--size-20);
  padding: 38px 0 var(--size-40);
  text-align: center;
  color: #fff;
  background-image: url('/assets/image/site/wp/jackpot-top-mob.webp'), linear-gradient(transparent, transparent);
  background-position: 50% 0, 50% 100%;
  background-repeat: no-repeat, no-repeat;
}

.jack__inner {
  position: relative;
  width: 100%;
  max-width: 1095px;
  margin: 0 auto;
  padding: 0 var(--page-x);
}

.jack__board {
  margin-bottom: 25px;
  text-shadow: rgba(0, 0, 0, 0.15) 1px 3px 0;
}

.jack__title {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-transform: uppercase;
}

.jack__prize {
  margin: 0;
  font-weight: 700;
  font-size: var(--size-40);
  line-height: 120%;
}

.jack__cta {
  margin-top: var(--size-10);
}

.jack__slider {
  position: relative;
}

.jack__track {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, auto);
  gap: var(--size-12);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.jack__track::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.jcard {
  position: relative;
  display: block;
  width: 120px;
  overflow: hidden;
  border-radius: var(--radius-12);
  background-color: #c29dc8;
}

.jcard::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-12);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.jcard__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-12);
  object-fit: cover;
  object-position: center top;
}

.jack__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.jack__arrow--prev {
  left: -18px;
}

.jack__arrow--next {
  right: -18px;
}

@media (max-width: 1023px) {
  .jack__arrow {
    display: none;
  }
}

@media (min-width: 1024px) {
  .jack {
    margin-top: 30px;
    padding-top: 70px;
    background-image: url('/assets/image/site/wp/jackpot-top.webp'), linear-gradient(transparent, transparent);
  }

  .jack__inner {
    max-width: 944px;
    padding: 0;
  }

  .jack__title {
    font-size: 48px;
  }

  .jack__prize {
    font-size: 80px;
  }

  .jack__cta .sp-btn__title {
    font-size: 28px;
  }

  .jack__track {
    gap: var(--size-20) var(--size-16);
    padding-bottom: var(--size-20);
  }

  .jcard {
    width: 170px;
  }
}

@media (min-width: 1280px) {
  .jack {
    padding-top: 80px;
  }
}

@media (min-width: 1440px) {
  .jack__inner {
    max-width: 1095px;
  }

  .jack__board {
    margin-bottom: 44px;
  }

  .jcard {
    width: 203px;
  }

  .jack__arrow--prev {
    left: -30px;
  }

  .jack__arrow--next {
    right: -30px;
  }
}

.container--games {
  padding-top: var(--size-24);
}

.allg__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--size-12);
}

.allg__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text-title);
}

.allg__link {
  position: relative;
  font-weight: 500;
  font-size: var(--fs-14);
  line-height: 17px;
  color: var(--brand);
  text-decoration: underline;
}

@media (min-width: 1280px) {
  .container--games {
    padding-top: var(--size-32);
  }

  .allg__title {
    font-size: var(--fs-20);
    line-height: 24px;
  }
}

.allg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-8);
  margin: 0 0 var(--size-32);
  padding: 0;
  list-style: none;
}

.allg__cell {
  position: relative;
}

@media (min-width: 540px) {
  .allg__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .allg__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--size-12);
  }
}

@media (min-width: 1024px) {
  .allg__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--size-16);
  }
}

@media (min-width: 1280px) {
  .allg__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--size-20);
  }
}

.container--more {
  padding-bottom: var(--size-32);
}

.allg__more {
  display: flex;
  justify-content: center;
}

.allg__more .sp-btn--small {
  min-width: 102px;
  min-height: 34px;
  padding: var(--size-8) var(--size-20) 7px;
  border-radius: var(--radius-8);
}

.ab-info {
  position: relative;
  margin-top: calc(-1 * var(--header-height));
  padding-bottom: var(--size-40);
  background-color: var(--bg-page);
  background-image: url('/assets/image/site/wp/ph-service.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 250%;
}

.ab-info__inner {
  margin: 0 var(--size-16);
}

.ab-info__title {
  padding-top: 100px;
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: var(--text-white);
  text-shadow: var(--shadow-ink) 1.4px 4.1971px 0;
  text-transform: uppercase;
  text-align: center;
}

.ab-info__card {
  max-width: 880px;
  padding: var(--size-24) var(--size-16);
  background-color: var(--bg-surface);
  border-radius: 20px;
}

.ab-info__block {
  padding: 0 0 var(--size-16);
}

.ab-info__block:last-child {
  padding: 0;
}

.ab-info__heading {
  margin-bottom: var(--size-20);
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  color: var(--text-title);
  word-break: break-word;
}

.ab-info__text {
  font-size: var(--fs-14);
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--text-body);
}

.ab-info__link {
  color: #0000ee;
  text-decoration: underline;
}

.ab-info__link:hover {
  text-decoration: none;
}

@media (min-width: 375px) {
  .ab-info__heading {
    word-break: normal;
  }
}

@media (min-width: 540px) {
  .ab-info {
    background-size: 180%;
  }

  .ab-info__inner {
    margin: 0 var(--size-24);
  }
}

@media (min-width: 768px) {
  .ab-info {
    background-size: 120%;
  }

  .ab-info__heading {
    font-size: var(--fs-20);
    text-transform: uppercase;
  }
}

@media (min-width: 1024px) {
  .ab-info {
    background-size: 100%;
  }

  .ab-info__inner {
    margin: 0 auto;
  }

  .ab-info__card {
    margin: 0 auto;
    padding: var(--size-40);
  }
}

@media (min-width: 1280px) {
  .ab-info__title {
    padding-top: 130px;
    margin-bottom: var(--size-40);
    font-size: 36px;
  }
}

table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: var(--size-16) 0;
  border-collapse: collapse;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-size: var(--fs-14);
  line-height: 140%;
  text-align: left;
  color: var(--text-body);
}

table::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

thead,
tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 520px;
}

tr {
  display: flex;
  width: 100%;
}

th,
td {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 110px;
  padding: var(--size-8) var(--size-12);
  border-bottom: 1px solid rgba(79, 51, 139, 0.15);
  box-sizing: border-box;
  word-break: break-word;
}

thead th {
  background: var(--bg-surface);
  font-weight: 700;
  color: var(--text-title);
}

tbody tr:nth-child(even) {
  background: rgba(79, 51, 139, 0.04);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}
.sp-text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--size-24) var(--size-40);
}

.sp-text__title {
  margin-bottom: var(--size-16);
  font-weight: 700;
  font-size: var(--fs-20);
  line-height: 120%;
  color: var(--text-title);
}

.sp-text p {
  margin: var(--size-16) 0;
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: 140%;
  color: var(--text-muted);
}

.sp-text__figure {
  margin: var(--size-20) 0;
}

.sp-text__figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-12);
}

.sp-text__figure-caption {
  margin-top: var(--size-8);
  font-weight: 400;
  font-size: var(--fs-12);
  line-height: 140%;
  color: var(--text-muted);
}

.ab-info__figure {
  margin: var(--size-20) 0 0;
}

.ab-info__figure-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-12);
}

.ab-info__figure-caption {
  margin-top: var(--size-8);
  font-weight: 400;
  font-size: var(--fs-12);
  line-height: 140%;
  color: var(--text-muted);
}

.wins__carousel {
  position: relative;
}
.wins__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}

.wins__arrow--prev {
  left: -30px;
}

.wins__arrow--next {
  right: -30px;
}

@media (max-width: 1279px) {
  .wins__arrow {
    display: none;
  }
}
