:root {
  --body-color:#27343F;
  --title-color:#FFF;
  --text-color:#E0E0E0;
  --header-color:#19232C;
  --offset:16px;
  --accent-color:#44BE4C;
  --second-color:#7DAA2F;
  --stroke:1px solid #4a5b68;
  --container-width:1200px;
  --green:#44BE4C;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--body-color);
}

a:not([class]) {
  color: var(--accent-color);
}

.sectionWrapper {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.mainHeader {
  background-color: var(--header-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--stroke);
}

.headerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.siteLogo img {
  height: 40px;
}

.navItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 20px;
}

.navAnchor {
  color: var(--title-color);
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.navAnchor:hover {
  color: var(--accent-color);
}

.headerActions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.backTopButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--header-color);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: var(--stroke);
  z-index: 99;
}

.backTopButton svg {
  fill: var(--accent-color);
}

.backTopButton.show {
  opacity: 1;
  visibility: visible;
}

.backTopButton:hover {
  background-color: #212c38;
}

.btnCenterAlign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.uiButton {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.bigBtn {
  padding: 16px 24px;
  font-size: 18px;
}

.uiButton:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.uiButton:hover {
  opacity: 0.8;
}

.orangeBtn {
  background-color: var(--accent-color);
  color: var(--title-color);
}

.greenBtn {
  color: #fff;
  border: var(--stroke);
}

.purpleBtn {
  font-weight: 700;
  background-color: #5c1d9c;
  color: #fff;
}

.mobileToggleBtn {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.mobileToggleBtn.mobile-menu-button--active {
  position: fixed;
  top: 24px;
  right: 24px;
}

.mobileToggleBtn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--title-color);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.mobileToggleBtn span:nth-child(1) {
  top: 0;
}

.mobileToggleBtn span:nth-child(2) {
  top: 10px;
}

.mobileToggleBtn span:nth-child(3) {
  top: 20px;
}

.mobile-menu-button--active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}

.mobile-menu-button--active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button--active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

.introBanner {
  padding: 60px 0;
}

.heroPic {
  max-width: 100%;
  height: auto;
  grid-row: 1;
  grid-column: 1/2;
}

.introBonus {
  grid-row: 1/3;
}

.introTitle {
  font-size: 36px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 20px;
  max-width: 800px;
}

.navLinks {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px 0;
}

.linkListBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.linksListItem {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.externalBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background-color: var(--header-color);
  color: var(--title-color);
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.externalBtn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.externalBtn svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-color);
}

.gameSlots {
  padding: 40px 0;
}

.blockTitle {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 30px;
  padding-bottom: 6px;
  position: relative;
}

.blockTitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
}

.slotItems {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
}

.slotItemBlock {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.slotItemBlock:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.slotItemBlock img {
  width: 100%;
  height: auto;
  display: block;
}

.slotTextBlock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.slotItemBlock:hover .slotTextBlock {
  opacity: 1;
}

.playSlotBtn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  padding: 8px 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

.slotLabel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 15px;
  color: var(--title-color);
  font-weight: 500;
}

.slotItemBlock:hover .slotLabel {
  opacity: 0;
}

.promoBonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rewardContent {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 190, 76, 0.85)), to(rgba(68, 190, 76, 0.98)));
  background: linear-gradient(180deg, rgba(68, 190, 76, 0.85), rgba(68, 190, 76, 0.98));
  border-radius: 12px;
  padding: 90px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
  overflow: hidden;
  color: #19232c;
}

.rewardContent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url();
}

.rewardImage {
  max-width: 200px;
  margin-bottom: -70px;
  position: relative;
  z-index: 5;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  -webkit-animation: shake 4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  animation: shake 4s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
}

.rewardButton {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
  10%, 2%, 6% {
    -webkit-transform: rotate(-3deg) translateY(-2px);
    transform: rotate(-3deg) translateY(-2px);
  }
  12%, 4%, 8% {
    -webkit-transform: rotate(3deg) translateY(-2px);
    transform: rotate(3deg) translateY(-2px);
  }
  14%, 18% {
    -webkit-transform: rotate(-2deg) translateY(-1px);
    transform: rotate(-2deg) translateY(-1px);
  }
  16%, 20% {
    -webkit-transform: rotate(2deg) translateY(-1px);
    transform: rotate(2deg) translateY(-1px);
  }
  22%, 90% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
  10%, 2%, 6% {
    -webkit-transform: rotate(-3deg) translateY(-2px);
    transform: rotate(-3deg) translateY(-2px);
  }
  12%, 4%, 8% {
    -webkit-transform: rotate(3deg) translateY(-2px);
    transform: rotate(3deg) translateY(-2px);
  }
  14%, 18% {
    -webkit-transform: rotate(-2deg) translateY(-1px);
    transform: rotate(-2deg) translateY(-1px);
  }
  16%, 20% {
    -webkit-transform: rotate(2deg) translateY(-1px);
    transform: rotate(2deg) translateY(-1px);
  }
  22%, 90% {
    -webkit-transform: rotate(0) translateY(0);
    transform: rotate(0) translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(92, 29, 156, 0.7);
    box-shadow: 0 0 0 0 rgba(92, 29, 156, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(91, 204, 25, 0);
    box-shadow: 0 0 0 10px rgba(91, 204, 25, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(100, 223, 29, 0);
    box-shadow: 0 0 0 0 rgba(100, 223, 29, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(92, 29, 156, 0.7);
    box-shadow: 0 0 0 0 rgba(92, 29, 156, 0.7);
  }
  70% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 0 0 10px rgba(91, 204, 25, 0);
    box-shadow: 0 0 0 10px rgba(91, 204, 25, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 rgba(100, 223, 29, 0);
    box-shadow: 0 0 0 0 rgba(100, 223, 29, 0);
  }
}
.rewardContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.rewardTitle {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.rewardDescription {
  margin-bottom: 20px;
}

.pageFooter {
  background-color: var(--header-color);
  padding: 40px 0 20px;
  border-top: var(--stroke);
}

.footerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.footerTopBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.footerLogoMark img {
  height: 40px;
  margin-bottom: 20px;
}

.footerLinks {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footerList {
  list-style: none;
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.footerListItem {
  margin-bottom: 10px;
}

.footerAnchor {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footerAnchor:hover {
  color: var(--accent-color);
}

.footerNotice {
  text-align: center;
  padding-top: 20px;
  border-top: var(--stroke);
  font-size: 14px;
  color: #ccc;
}

.faqSection {
  padding: 40px 0;
}

.faqListBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}

.questionItem {
  background-color: var(--header-color);
  border-radius: 8px;
  overflow: hidden;
}

.questionTitle {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.answerBlock {
  padding: 0 20px 15px;
  color: var(--text-color);
}

.tocArea {
  padding: 30px 0;
  background-color: rgba(255, 255, 255, 0.02);
}

.tableOfContents {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--header-color);
  border-radius: 8px;
}

.tableOfContents.hidden .indexList {
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

.tableOfContents.hidden svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.indexTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  margin-bottom: 0;
  padding: 16px;
  color: var(--title-color);
  cursor: pointer;
  font-weight: 700;
}

.indexList {
  list-style: none;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  padding: 0 16px 8px;
}

.toc__list--active {
  max-height: 500px;
}

.indexItem {
  margin-bottom: 10px;
}

.indexLink {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 16px;
  display: block;
  padding: 8px 0;
}

.indexLink:hover {
  color: var(--accent-color);
}

ul.genericList {
  list-style: none;
  padding-left: 8px;
}

ul.genericList li {
  position: relative;
  padding-left: 24px;
}

ul.genericList li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 99px;
}

ul.genericList li:not(:last-child) {
  margin-bottom: 8px;
}

ol.genericList {
  list-style: none;
  padding-left: 8px;
  counter-reset: myCount;
}

ol.genericList li {
  position: relative;
  padding-left: 24px;
}

ol.genericList li:before {
  content: counter(myCount) ".";
  counter-increment: myCount;
  font-weight: 700;
  color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
}

ol.genericList li:not(:last-child) {
  margin-bottom: 8px;
}

.dataTableWrapper {
  overflow-x: auto;
  border: 1px solid #2e8437;
  border-radius: 8px;
}

.contentTable {
  width: 100%;
  border-radius: 16px;
  border-collapse: collapse;
}

.contentTable th {
  background-color: #2e8437;
  text-align: left;
  color: #fff;
}

.contentTable td, .contentTable th {
  padding: 8px;
}

.contentTable tr:nth-child(odd) td {
  background-color: var(--header-color);
}

.contentTable tr td:not(:last-child), .contentTable tr th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.wideText > :not(:first-child):not(:last-child) {
  margin-bottom: 16px;
}

.wideText img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.textImageCombo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contentTextBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.contentTextBlock > :not(:first-child):not(:last-child) {
  margin-bottom: 16px;
}

.mediaPanel {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.contentHeading {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.imageElement {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.textImageCombo.flippedLayout {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (min-width: 767.98px) {
  .heroPanel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 992.98px) {
  .headerBox {
    display: grid;
    row-gap: 8px;
    grid-template-columns: 1fr auto;
  }
  .mainMenu {
    grid-column: span 2;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .navListItem {
    margin-bottom: 15px;
  }
  .introTitle {
    font-size: 28px;
  }
  .blockTitle {
    font-size: 24px;
  }
  .textImageCombo, .textImageCombo.flippedLayout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mediaPanel {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .video-v2__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .headerBox {
    grid-template-columns: 1fr auto auto;
    gap: 15px;
  }
  .mainMenu {
    display: none;
  }
  .mainMenu.active {
    display: block;
  }
  .mainMenu.active .navItems {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--header-color);
    z-index: 100;
    padding: 80px 20px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .mobileToggleBtn {
    display: block;
  }
  .heroPic {
    width: 100%;
  }
  .promoBonus {
    margin-bottom: 32px;
  }
}
@media (max-width: 520px) {
  .headerBox {
    grid-template-columns: 1fr auto;
  }
  .headerActions {
    grid-row: 1;
    grid-column: span 2;
  }
  .headerActions > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media (max-width: 480px) {
  .introTitle {
    font-size: 24px;
  }
  .footerList {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}
@media (max-width: 479.98px) {
  .btnCenterAlign .uiButton {
    width: 100%;
  }
  .footerTopBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}