: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);
}

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

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

.headerLayout {
  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;
}

.brandLogo img {
  height: 40px;
}

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

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

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

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

.scrollTopBtn {
  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;
}

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

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

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

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

.baseButton {
  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;
}

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

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

.baseButton:hover {
  opacity: 0.8;
}

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

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

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

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

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

.menuToggle 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;
}

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

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

.menuToggle 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;
}

.heroSection {
  padding: 60px 0;
}

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

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

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

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

.linksGroup {
  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;
}

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

.linkButton {
  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;
}

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

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

.slotBlock {
  padding: 40px 0;
}

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

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

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

.slotEntry {
  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;
}

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

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

.slotInfo {
  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;
}

.slotEntry:hover .slotInfo {
  opacity: 1;
}

.slotBtn {
  -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;
}

.slotTitle {
  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;
}

.slotEntry:hover .slotTitle {
  opacity: 0;
}

.bonusBlock {
  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;
}

.bonusTextBlock {
  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;
}

.bonusTextBlock::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;
}

.bonusVisual {
  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;
}

.bonusActionBtn {
  -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);
  }
}
.bonusTextBlock {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

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

.bonusDetails {
  margin-bottom: 20px;
}

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

.footerWrapper {
  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;
}

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

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

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

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

.footerNavEntry {
  margin-bottom: 10px;
}

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

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

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

.faqBlock {
  padding: 40px 0;
}

.faqItems {
  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;
}

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

.faqQuery {
  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;
}

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

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

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

.tocWrapper.hidden .tocItems {
  max-height: 0;
  overflow: hidden;
  padding: 0;
}

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

.tocHeading {
  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;
}

.tocItems {
  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;
}

.tocEntry {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.textMediaBlock {
  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;
}

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

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

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

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

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

.textMediaBlock.reverseOrder {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (min-width: 767.98px) {
  .heroContentBox {
    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) {
  .headerLayout {
    display: grid;
    row-gap: 8px;
    grid-template-columns: 1fr auto;
  }
  .headerNav {
    grid-column: span 2;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .menuItem {
    margin-bottom: 15px;
  }
  .heroHeading {
    font-size: 28px;
  }
  .sectionHeading {
    font-size: 24px;
  }
  .textMediaBlock, .textMediaBlock.reverseOrder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .mediaBlock {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .video-v2__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .headerLayout {
    grid-template-columns: 1fr auto auto;
    gap: 15px;
  }
  .headerNav {
    display: none;
  }
  .headerNav.active {
    display: block;
  }
  .headerNav.active .menuList {
    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;
  }
  .menuToggle {
    display: block;
  }
  .heroVisual {
    width: 100%;
  }
  .bonusBlock {
    margin-bottom: 32px;
  }
}
@media (max-width: 520px) {
  .headerLayout {
    grid-template-columns: 1fr auto;
  }
  .headerControls {
    grid-row: 1;
    grid-column: span 2;
  }
  .headerControls > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
@media (max-width: 480px) {
  .heroHeading {
    font-size: 24px;
  }
  .footerNavItems {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}
@media (max-width: 479.98px) {
  .centeredButton .baseButton {
    width: 100%;
  }
  .footerHeader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}