@font-face {
  font-family: 'Alexandria';
  font-weight: 400;
  font-display: swap;
  src: url("assets/asset-003.ttf") format('truetype');
}
@font-face {
  font-family: 'Alexandria';
  font-weight: 700;
  font-display: swap;
  src: url("assets/asset-004.ttf") format('truetype');
}
@font-face {
  font-family: 'AlfaSlabOne';
  font-weight: 400;
  font-display: swap;
  src: url("assets/asset-005.ttf") format('truetype');
}

*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { font-size: 16px; line-height: 1.5; font-family: 'Alexandria', sans-serif; color: var(--text-color-1); background-color: var(--bg-level-1); scroll-behavior: smooth; }
body { width: 100%; min-height: 100vh; background-repeat: no-repeat; background-size: 100%; background-position: top; }
img { border: 0; max-width: 100%; height: auto; display: block; }
a { background-color: transparent; }
a:link, a:visited, a:hover, a:active { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5, h6 { line-height: 1.2; }
p + p { margin-top: 1rem; }
table { border-collapse: collapse; width: 100%; }

:root {
  --bg-level-1: #FFFFFF;
  --bg-level-2: #F3EFF9;
  --bg-level-3: #EBE5F5;
  --bg-level-4: #6C40D5;
  --bg-level-5: #F8506F;
  --bg-level-6: #C1B1E3;
  --bg-level-7: #BF6AEB;
  --bg-menu: #F3F3F3;
  --button-primary-active: #FFFF01;
  --button-primary-disabled: rgba(255,255,1,.4);
  --button-primary-hover: #E3E30A;
  --button-secondary-active: #000000;
  --button-secondary-disabled: rgba(0,0,0,.4);
  --button-secondary-hover: #353535;
  --hyperlink-1: #FFFF01;
  --hyperlink-2: #6C40D5;
  --text-color-1: #000000;
  --text-color-2: #FFFFFF;
  --successful: #3A9C48;
  --warning: #FFC300;
  --wrong: #DC3148;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: 10px 15px;
}
.page-container { position: relative; margin-top: 80px; margin-bottom: 80px; }
@media (max-width: 767px) {
  .container { max-width: 100%; overflow: auto; }
  .page-container { margin-top: 60px; margin-bottom: 60px; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { justify-content: center; align-items: center; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-4 { gap: 4px; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.w-50 { width: 50%; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-60 { z-index: 60; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-no-underline { text-decoration: none; }
.uppercase { text-transform: uppercase; }
.text-color-1 { color: var(--text-color-1); }
.text-color-2 { color: var(--text-color-2); }
.text-12 { font-size: .75rem; }
.text-14 { font-size: .875rem; }
.font-weight-400 { font-weight: 400; }
.font-weight-500 { font-weight: 500; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.mr-6 { margin-right: 6px; }
.mr-10 { margin-right: 10px; }
.mr-14 { margin-right: 14px; }
.mr-20 { margin-right: 20px; }
.mr-32 { margin-right: 32px; }
.mb-2 { margin-bottom: 2px; }
.mb-4 { margin-bottom: 4px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-80 { margin-bottom: 80px; }
.mt-32 { margin-top: 32px; }
.sm\:mr-0 { margin-right: 0; }

@media (max-width: 767px) {
  .sm\:hidden { display: none !important; }
  .sm\:flex { display: flex !important; }
  .sm\:block { display: block !important; }
  .sm\:w-100 { width: 100%; }
  .sm\:text-center { text-align: center; }
  .sm\:mr-0 { margin-right: 0; }
  .sm\:flex-col-reverse { flex-direction: column-reverse; }
  .sm\:p-20 { padding: 20px; }
  .sm\:m-auto { margin: 0 auto; }
  .sm\:items-center { align-items: center; }
  .sm\:mb-8 { margin-bottom: 8px; }
  .sm\:mb-10 { margin-bottom: 10px; }
  .sm\:mb-12 { margin-bottom: 12px; }
  .sm\:mb-40 { margin-bottom: 40px; }
}
@media (max-width: 991px) {
  .md\:hidden { display: none !important; }
}

.btn {
  display: inline-flex;
  border-radius: 15px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  border: none;
  font-family: 'Alexandria', sans-serif;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
  font-weight: 700;
  transition: background .3s;
}
.btn--primary,
.btn--primary-sm {
  background: var(--button-primary-active);
  color: var(--text-color-1);
  padding: 10px 24px;
}
.btn--primary { width: 220px; height: 50px; font-size: 1rem; }
.btn--primary-big { width: 220px; height: 60px; font-size: 1rem; background: var(--button-primary-active); color: var(--text-color-1); padding: 10px 24px; border: none; border-radius: 15px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-family: 'Alexandria', sans-serif; font-weight: 700; transition: background .3s; }
.btn--primary-sm { width: 120px; height: 40px; font-size: .875rem; }
.btn--primary:hover,
.btn--primary-sm:hover,
.btn--primary-big:hover { background: var(--button-primary-hover); }
.btn--secondary,
.btn--secondary-sm {
  background: var(--button-secondary-active);
  color: var(--text-color-2);
  padding: 10px 24px;
}
.btn--secondary { width: 220px; height: 50px; font-size: 1rem; }
.btn--secondary-sm { width: 120px; height: 40px; font-size: .875rem; }
.btn--secondary:hover,
.btn--secondary-sm:hover { background: var(--button-secondary-hover); }

.header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-sizing: border-box;
  background: var(--bg-level-2);
  display: flex;
  align-items: center;
}
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 0; padding-bottom: 0; }
.header__logo img { display: block; }
.header__links { display: flex; flex-direction: row; gap: 32px; }
.header__links--item { padding: 10px; color: var(--text-color-1); font-size: .75rem; font-weight: 600; text-decoration: none; }
.header__links--item:hover { opacity: .7; }
.header__auth { display: flex; flex-direction: row; gap: 10px; }
.header__menu-trigger { cursor: pointer; display: flex; align-items: center; }

.side-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 40;
}
.side-menu-overlay.open { display: block; }

.side-menu {
  width: 300px;
  box-sizing: border-box;
  background: var(--bg-menu);
  overflow-y: auto;
  position: fixed;
  top: 60px;
  left: 0;
  transform: translateX(-100%);
  transition: transform .3s;
  z-index: 50;
  height: calc(100vh - 60px);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.side-menu.open { transform: translateX(0); }
.side-menu__auth { display: flex; flex-direction: row; gap: 10px; margin-bottom: 20px; }
.side-menu__auth .btn--secondary-sm,
.side-menu__auth .btn--primary-sm { width: 50%; }
.side-menu__actions { display: flex; flex-direction: row; gap: 10px; margin-bottom: 20px; }
.side-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.side-menu__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-color-1);
  text-decoration: none;
  cursor: pointer;
}
.side-menu__item:hover { background: var(--bg-level-3); }
.side-menu__item img { width: 20px; height: 20px; }

.mobile-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--bg-level-2);
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 20px;
  z-index: 60;
}
.mobile-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-color-1);
  text-align: center;
  text-decoration: none;
}
.mobile-menu__item img { width: 24px; height: 24px; display: block; margin: 0 auto 2px; }
.mobile-menu__item--primary img { width: 40px; height: 35px; }
@media (max-width: 767px) {
  .mobile-menu { display: flex; }
}

.banner-slider {
  position: relative;
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}
.banner-slider__track {
  display: flex;
  transition: transform .4s ease;
}
.banner-slider__slide { min-width: 100%; }
.home-slider {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: var(--bg-level-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  overflow: hidden;
  box-sizing: border-box;
}
.home-slider.slide-2 { background: var(--bg-level-4); }
.home-slider.slide-3 { background: var(--bg-level-7); }
.home-slider.slide-4 { background: var(--bg-level-4); }
.home-slider.slide-5 { background: var(--bg-level-4); }
.home-slider__content { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; height: 100%; }
.home-slider__content .name { font-size: 1.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-color-2); margin-bottom: 24px; }
.main__prize-pool { font-size: 4.375rem; font-weight: 400; font-family: 'AlfaSlabOne', serif; color: var(--text-color-2); text-transform: uppercase; margin-bottom: 10px; line-height: 1.1; }
.home-slider__img { flex-shrink: 0; max-width: 45%; display: flex; }
.home-slider__img .img-sm { display: none; }
.home-slider__img .img-lg { display: block; }
.banner-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner-slider__btn:hover { background: rgba(255,255,255,.6); }
.banner-slider__btn--prev { left: 10px; }
.banner-slider__btn--next { right: 10px; }
.banner-slider__dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.banner-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; border: none; }
.banner-slider__dot.active { background: #fff; }

@media (max-width: 767px) {
  .home-slider { height: auto; flex-direction: column-reverse; padding: 20px; }
  .home-slider__content { align-items: center; text-align: center; margin-bottom: 12px; width: 100%; }
  .home-slider__content .name { font-size: .875rem; margin-bottom: 8px; }
  .main__prize-pool { font-size: 2.375rem; }
  .home-slider__img { max-width: 100%; }
  .home-slider__img .img-lg { display: none; }
  .home-slider__img .img-sm { display: block; }
}

.jackpot { display: flex; flex-direction: column; padding: 0 60px; margin-bottom: 80px; }
.jackpot__top { display: flex; flex-direction: row; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 36px; }
.jackpot__top--title { font-size: 1.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 60px; }
.jackpot__top--prize { font-size: 4.375rem; font-weight: 400; font-family: 'AlfaSlabOne', serif; }
.jackpot__top .right img { width: 100%; max-width: 300px; }
@media (max-width: 767px) {
  .jackpot { padding: 0 15px; margin-bottom: 40px; }
  .jackpot__top { flex-direction: column-reverse; margin-bottom: 20px; text-align: center; }
  .jackpot__top--title { font-size: .875rem; margin-bottom: 10px; }
  .jackpot__top--prize { font-size: 2.375rem; }
}

.vip-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: var(--bg-level-4);
  border-radius: 20px;
  margin-bottom: 80px;
  overflow: hidden;
}
.vip-section__content { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; }
.vip-section__content .name { font-size: 1.75rem; font-weight: 700; color: var(--text-color-2); margin-bottom: 24px; }
.vip-section__content .main__prize-pool { margin-bottom: 32px; }
.vip-section__img { flex-shrink: 0; max-width: 45%; }
.vip-section__img img { width: 100%; object-fit: contain; }
.vip-section__img .img-sm { display: none; }
@media (max-width: 767px) {
  .vip-section { flex-direction: column-reverse; padding: 20px; margin-bottom: 40px; }
  .vip-section__content { align-items: center; text-align: center; margin-bottom: 12px; }
  .vip-section__content .name { font-size: .875rem; margin-bottom: 8px; }
  .vip-section__img { max-width: 100%; }
  .vip-section__img .img-lg { display: none; }
  .vip-section__img .img-sm { display: block; }
}

.lobby { display: flex; flex-direction: column; margin-bottom: 80px; }
.lobby__top { display: flex; flex-direction: row; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.lobby__top--title { font-size: 1.5rem; font-weight: 700; }
@media (max-width: 767px) {
  .lobby { margin-bottom: 40px; }
  .lobby__top--title { font-size: 1rem; }
}

.provider { margin-bottom: 24px; }
.provider__wrapper { display: flex; align-items: center; gap: 10px; }
.provider__slider { flex: 1; overflow: hidden; }
.provider__track { display: flex; gap: 10px; transition: transform .4s ease; }
.provider__item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--bg-level-2); border-radius: 10px; padding: 8px 12px; min-width: 108px; }
.provider__item img { width: 80px; height: 40px; object-fit: contain; filter: grayscale(100%) brightness(35%) contrast(120%); }
.provider__arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-level-2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .6;
}
.provider__arrow:hover { opacity: 1; }
.provider__arrow img { width: 24px; height: 24px; }

.footer { box-sizing: border-box; background: var(--bg-menu); }
.footer .menu { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.menu__link { display: block; padding: 4px 8px; font-size: .75rem; }
.payment { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.payment img { height: 40px; width: 60px; object-fit: contain; filter: grayscale(100%) brightness(35%) contrast(120%); }
.copyright { display: flex; flex-direction: row; align-items: center; gap: 16px; margin-bottom: 65px; font-size: .75rem; font-weight: 400; color: var(--text-color-1); }
.copyright__license-logos { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.copyright__text { text-align: left; }

.breadcrumbs { padding: 12px 0; margin-top: 50px;}
.breadcrumbs__list { list-style: none; display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .75rem; }
.breadcrumbs__list a { color: var(--hyperlink-2); }
.breadcrumbs__list li::after { content: "›"; margin-left: 8px; opacity: .5; }
.breadcrumbs__list li:last-child::after { content: ""; }

.content-text { padding: 24px 0 40px; }
.content-text h1 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.content-text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; margin-top: 24px; }
.content-text h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; margin-top: 20px; }
.content-text h1,
.content-text h2,
.content-text h3,
.content-text p { color: var(--text-color-1); }
.content-text p { margin-bottom: 20px; margin-top: 0; font-size: 1rem; font-weight: 500; line-height: 1.6; }
.content-text ol,
.content-text ul { padding-left: 18px; margin-bottom: 20px; }
.content-text li { margin-bottom: 8px; font-size: 1rem; font-weight: 500; line-height: 1.6; }
.content-text td { border: 1px solid var(--bg-level-3); padding: 8px 12px; font-size: .9rem; }
.content-text figure { margin: 0 0 20px; overflow-x: auto; }
.seo-link { color: var(--hyperlink-2) !important; text-decoration: underline !important; font-weight: 600; }
@media (max-width: 767px) {
  .content-text h1 { font-size: 1.25rem; }
  .content-text h2 { font-size: 1rem; }
  .content-text p,
  .content-text li { font-size: .875rem; }
}