
@font-face {
  font-family: 'Montserrat';
  src: url('assets/asset-013.woff2') format('woff2'),
       url('assets/asset-012.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/asset-015.woff2') format('woff2'),
       url('assets/asset-016.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/asset-011.woff2') format('woff2'),
       url('assets/asset-010.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scrollbar-color: rgba(255,255,255,.6) transparent;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #14141e;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.48;
  color: #fff;
  -webkit-text-size-adjust: 100%;
}

ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.content-container { max-width: 1280px; margin: 0 auto; }

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
  background: #1c1b29;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar__left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; }
.top-bar__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.top-bar__logo { display: flex; align-items: center; flex-shrink: 0; }
.top-bar__logo-img { display: block; }

.burger {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: #fff; cursor: pointer;
  padding: 8px; border-radius: 4px; transition: background .2s; flex-shrink: 0;
}
.burger:hover { background: rgba(255,255,255,.1); }

.top-bar__links { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.top-bar__links::-webkit-scrollbar { display: none; }
.top-bar__links-item-link {
  display: block; padding: 6px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,.8); transition: color .2s, background .2s;
}
.top-bar__links-item-link:hover { color: #fff; background: rgba(255,255,255,.08); }

.user-top__auth-btns { display: flex; align-items: center; gap: 12px; }
.user-top__signin-ic-wr {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; transition: background .2s;
}
.user-top__signin-ic-wr:hover { background: rgba(255,255,255,.1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border: none; border-radius: 6px;
  font-family: Montserrat, sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: opacity .2s, transform .1s; white-space: nowrap;
}
.btn:hover { opacity: .9; }
.btn:active { transform: scale(.98); }
.btn--three-color { background: linear-gradient(90deg, #74dcd2, #5b9cf6, #c471ed); color: #14141e; }
.btn--dark { background: rgba(255,255,255,.1); color: #fff; }
.btn--dark:hover { background: rgba(255,255,255,.18); }
.btn--lg { padding: 10px 24px; font-size: 14px; }
.btn--run-animated {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, #74dcd2, #5b9cf6); color: #14141e;
}
.btn--run-animated::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn--run-animated:hover::before { transform: translateX(100%); }
.btn__text { position: relative; z-index: 1; }

.mobile-nav {
  position: fixed; top: 0; left: -280px; width: 280px; height: 100%;
  background: #1c1b29; z-index: 200; padding: 60px 24px 24px;
  transition: left .3s ease; overflow-y: auto;
}
.mobile-nav.is-open { left: 0; }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 8px; border-radius: 4px;
}
.mobile-nav__close:hover { background: rgba(255,255,255,.1); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__list a {
  display: block; padding: 12px 16px; border-radius: 6px;
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85);
  transition: background .2s, color .2s;
}
.mobile-nav__list a:hover { background: rgba(255,255,255,.08); color: #fff; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 199; }
.mobile-nav-overlay.is-visible { display: block; }

.main__main-slider-wr { padding: 16px; }
.main-slider { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 5; background: #1c1b29; }
.main-slider__inner {
  display: flex; height: 100%; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth;
}
.main-slider__inner::-webkit-scrollbar { display: none; }
.main-slider__item { min-width: 100%; scroll-snap-align: start; position: relative; overflow: hidden; }
.main-slider__item-bg-wr { position: absolute; inset: 0; }
.main-slider__item-bg { position: absolute; inset: 0; }
.main-slider__item-bg .custom-picture__img { width: 100%; height: 100%; object-fit: cover; }
.main-slider__item-img { position: absolute; bottom: 0; right: 5%; width: 40%; max-height: 100%; }
.main-slider__item-img .custom-picture__img { width: 100%; height: 100%; object-fit: contain; object-position: bottom right; }
.main-slider__item-text-wr { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); max-width: 55%; z-index: 2; }
.main-slider__item-subtitle { margin-bottom: 8px; }
.main-slider__item-subtitle-text {
  display: inline-block; background: rgba(255,255,255,.15);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.main-slider__item-chant { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.main-slider__item-title { font-size: clamp(20px, 3vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.main-slider__item-title--large { font-size: clamp(18px, 2.5vw, 40px); }
.main-slider__item-title--accent { color: #74dcd2; }
.main-slider__item-text { font-size: clamp(12px, 1.2vw, 18px); color: rgba(255,255,255,.8); margin-bottom: 20px; }
.main-slider__item-text--large { font-size: clamp(13px, 1.4vw, 20px); }
.main-slider__item-btn { position: absolute; bottom: 24px; left: 5%; z-index: 2; padding: 12px 28px; font-size: 14px; }
.main-slider__prev, .main-slider__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(0,0,0,.4); border: none; color: #fff; cursor: pointer;
  width: 40px; height: 60px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.main-slider__prev:hover, .main-slider__next:hover { background: rgba(0,0,0,.7); }
.main-slider__prev { left: 0; border-radius: 0 6px 6px 0; }
.main-slider__next { right: 0; border-radius: 6px 0 0 6px; }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .2s, transform .2s; cursor: pointer; border: none; padding: 0; }
.slider-dot.is-active { background: #74dcd2; transform: scale(1.2); }

.container-sidebar__payments { padding: 12px 16px; }
.payment-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-list__item { flex-shrink: 0; }
.payment-list__img { width: auto; height: 32px; object-fit: contain; filter: brightness(.8); transition: filter .2s; }
.payment-list__img:hover { filter: brightness(1); }

.section-games { padding: 24px 16px; }
.section-games__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-games__title-wr { display: flex; align-items: center; gap: 10px; }
.section-games__title { font-size: 18px; font-weight: 700; margin: 0; }
.section-games__title-ic { width: 24px; height: 24px; flex-shrink: 0; }
.section-games__header-btn { font-size: 13px; padding: 8px 16px; }
.section-games__content { position: relative; }
.section-games__list-scroll { overflow-x: auto; scrollbar-width: none; }
.section-games__list-scroll::-webkit-scrollbar { display: none; }
.section-games__item-group { display: flex; gap: 12px; min-width: max-content; }
.section-games__list-item { width: 200px; flex-shrink: 0; }
.section-games__list-item-content { position: relative; border-radius: 8px; overflow: hidden; background: #1c1b29; cursor: pointer; }
.section-games__list-item-img-wr { display: block; aspect-ratio: 309 / 207; }
.section-games__list-item-img-wr .custom-picture__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.section-games__list-item-content:hover .custom-picture__img { transform: scale(1.04); }
.section-games__list-item-footer { padding: 8px 10px; }
.section-games__list-item-footer-title { font-size: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.section-games__list-item-footer-provider { font-size: 11px; color: rgba(255,255,255,.5); }
.section-games__list-item-overlay { position: absolute; inset: 0; z-index: 5; }

.promotions-cta { margin: 24px 16px; background: linear-gradient(135deg, #1c1b29, #2a2356); border-radius: 12px; padding: 40px 32px; text-align: center; }
.promotions-cta__title { font-size: clamp(20px, 3vw, 36px); font-weight: 700; margin: 0 0 12px; }
.promotions-cta__text { font-size: 15px; color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 24px; }
.promotions-cta__btn { padding: 14px 36px; font-size: 16px; }

.seo-block { padding: 32px 16px; border-top: 1px solid rgba(255,255,255,.08); }
.seo-block-wrapper { max-width: 900px; margin: 0 auto; }
.seo-block-content h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin: 0 0 20px; color: #fff; }
.seo-block-content h2 { font-size: clamp(16px, 2.2vw, 22px); font-weight: 700; margin: 28px 0 12px; color: #74dcd2; }
.seo-block-content h3 { font-size: clamp(14px, 1.8vw, 18px); font-weight: 600; margin: 20px 0 10px; color: rgba(255,255,255,.9); }
.seo-block-content p { margin: 0 0 16px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; }
.seo-block-content ol, .seo-block-content ul { padding-left: 24px; margin: 0 0 16px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; }
.seo-block-content li { margin-bottom: 8px; }
.seo-block-content a { color: #74dcd2; transition: opacity .2s; }
.seo-block-content a:hover { opacity: .8; }

.main-footer { background: #0f0e1a; padding-top: 32px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.provider-list-section { padding: 24px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
.provider-list__inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: center; max-width: 1000px; margin: 0 auto; }
.provider-list__link { opacity: .6; transition: opacity .2s; }
.provider-list__link:hover { opacity: 1; }
.provider-list__img-img { width: auto; height: 32px; object-fit: contain; }
.main-footer__payment-list { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-menu { display: flex; flex-wrap: wrap; gap: 4px 16px; padding: 24px 0 16px; }
.footer-menu__item-link { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-menu__item-link:hover { color: #fff; }
.social { padding: 16px 0; }
.social__list { display: flex; gap: 12px; }
.social__link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.social__link:hover { background: rgba(255,255,255,.18); color: #fff; }
.buttons-app { display: flex; gap: 12px; padding: 16px 0; flex-wrap: wrap; }
.buttons-app__item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08); border-radius: 8px; padding: 10px 20px;
  transition: background .2s; color: #fff;
}
.buttons-app__item:hover { background: rgba(255,255,255,.16); }
.buttons-app__item-info { line-height: 1.2; }
.buttons-app__item-download { font-size: 11px; color: rgba(255,255,255,.6); }
.buttons-app__item-os { font-size: 15px; font-weight: 700; }
.main-footer__license { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.06); }
.main-footer__license-text p { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.6; margin: 0 0 8px; }
.main-footer__gaming { display: flex; align-items: center; gap: 20px; padding: 16px 0; flex-wrap: wrap; }
.main-footer__gaming-img { height: 40px; width: auto; opacity: .7; }
.main-footer__gaming-item:hover .main-footer__gaming-img { opacity: 1; }
.main-footer__text { font-size: 12px; color: rgba(255,255,255,.4); padding: 12px 0; border-top: 1px solid rgba(255,255,255,.06); }
.main-footer__copyright { font-size: 13px; color: rgba(255,255,255,.5); padding: 12px 0 24px; font-weight: 600; }

.breadcrumbs { padding: 12px 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumbs a { color: #74dcd2; transition: opacity .2s; }
.breadcrumbs a:hover { opacity: .8; }
.breadcrumbs__sep { margin: 0 8px; }
.breadcrumbs__current { color: rgba(255,255,255,.75); }

.page-hero { background: linear-gradient(135deg, #1c1b29, #2a2356); padding: 40px 24px; text-align: center; }
.page-hero__title { font-size: clamp(24px, 4vw, 48px); font-weight: 700; margin: 0 0 16px; }
.page-hero__subtitle { font-size: clamp(14px, 1.8vw, 20px); color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 24px; }
.page-hero__cta { padding: 14px 40px; font-size: 16px; }
.page-content { max-width: 900px; margin: 0 auto; padding: 32px 24px; }
.page-content h1 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin: 0 0 20px; }
.page-content h2 { font-size: clamp(16px, 2.2vw, 22px); font-weight: 700; margin: 28px 0 12px; color: #74dcd2; }
.page-content h3 { font-size: clamp(14px, 1.8vw, 18px); font-weight: 600; margin: 20px 0 10px; }
.page-content p { margin: 0 0 16px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.7; }
.page-content ol, .page-content ul:not(.payment-list) { padding-left: 24px; margin: 0 0 16px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.7; }
.page-content li { margin-bottom: 8px; }

.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.info-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.info-table td:first-child { font-weight: 600; color: rgba(255,255,255,.5); width: 40%; }

.steps-list { counter-reset: steps; padding-left: 0; list-style: none; }
.steps-list li { counter-increment: steps; display: flex; gap: 14px; margin-bottom: 16px; color: rgba(255,255,255,.78); font-size: 15px; }
.steps-list li::before {
  content: counter(steps); display: flex; align-items: center; justify-content: center;
  min-width: 28px; height: 28px; background: #74dcd2; color: #14141e;
  border-radius: 50%; font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 2px;
}

.bonus-card { background: #1c1b29; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.bonus-card__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: #74dcd2; }
.bonus-card__text { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
  .top-bar { padding: 0 12px; }
  .top-bar__links { display: none; }
  .main__main-slider-wr { padding: 8px; }
  .main-slider { aspect-ratio: 16 / 9; }
  .section-games { padding: 16px 8px; }
  .section-games__list-item { width: 150px; }
  .seo-block { padding: 24px 12px; }
  .promotions-cta { padding: 28px 20px; margin: 16px 8px; }
  .container { padding: 0 12px; }
  .footer-menu { gap: 4px 12px; }
  .page-hero { padding: 28px 16px; }
  .page-content { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .main-slider__item-text-wr { max-width: 70%; }
  .main-slider__item-img { width: 30%; }
}
@media (min-width: 769px) {
  .burger { display: none; }
  .top-bar__links { display: flex; }
}

.custom-picture { display: block; }
.custom-picture__img { display: block; width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid #74dcd2; outline-offset: 2px; }