* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #fff;
  font-size: 18px;
}

html, body {
  touch-action: manipulation;
}

body {
  background: #00100E;
}



.wrapper {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
  text-align: center;
}

button {
  transition: .3s;
  cursor: pointer;
  background: none;
  border: none;
}

button:hover {
  opacity: .8;
}

ul, ol {
  padding-left: 24px;
  margin: 32px 0;
}

li {
  margin-bottom: 8px;
  color: #fff;
}

a {
  text-decoration: none;
  transition: .3s;
}

a:hover {
  color: #FF2400;
}

section .mb0 {
  margin-bottom: 0;
}

header {
  padding: 20px 0;
  margin-bottom: 24px;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
}

header .iconsAndButtons {
  display: flex;
  gap: 20px;
  align-items: center;
}

header .icons {
  display: flex;
  gap: 5px;
}

header .icons button {
  background: none;
  border: none;
}

header .buttons {
  display: flex;
  gap: 20px;
}

button.reg, button.log {
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px #FF2400 solid;
  font-size: 18px;
  font-weight: bold;
}

button.reg {
  background: #FF2400;
}

button.log {
  background: none;
}

.banner .wrapper {
  position: relative;
  height: 353px;
  padding: 60px 40px;
  background: url(/banner-bg.webp)no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}

.banner .wrapper .image {
  position: absolute;
  bottom: -5px;
  right: 161px;
}

.banner .wrapper .text-mob {
  display: none;
}

.banner .button-block {
  width: 608px;
  max-width: 75%;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
  background: rgba(80, 11, 136, 1);
  border: 2px solid rgba(255, 228, 140, 1);
  border-radius: 20px;
}

.banner .button-block img {
  display: block;
  max-width: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  max-width: 70%;
  line-height: 1;
  margin-bottom: 32px;
}

.banner button {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 8px;
  text-transform: uppercase;
}


footer {
  padding: 30px 0;
}


footer p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

footer ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-left: 0;
}

footer li a {
  font-size: 13px;
}

footer li {
  margin: 0 8px;
  list-style: none;
}

footer .copyright {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid #80858F;
}

footer .copyright span {
  font-size: 12px;
}

footer .copyright a {
  color: #FF2301;
  margin-left: 8px;
}

section {
  margin-top: 32px;
  padding: 32px 40px;
  background: rgba(14, 25, 30, 1);
  border-radius: 20px;
}

section.purple {
  box-shadow: 0px 0px 20px 0px rgba(115, 4, 115, 1) inset;
}

section.green {
  box-shadow: 0px 0px 20px 0px rgba(1, 109, 105, 1) inset;
}

section p {
  color: #fff;
  margin-bottom: 32px;
}

section p:last-child {
  margin-bottom: 0px;
}

.general-table-wrapper {
  overflow: auto;
  margin-bottom: 32px;
}

.general-table {
  overflow-x: auto;
}

table tr:first-child td {
  background: #006D69;
  font-size: 20px;
  font-weight: bold;
}

section.purple tr:first-child td {
  background: rgba(118, 39, 124, 1);
}

table tr:first-child td:first-child {
  border-radius: 12px 0 0 0;
}

table tr:first-child td:last-child {
  border-radius: 0 12px 0 0;
}

table td {
  padding: 16px 12px 16px 24px;
  border-left: 1px rgba(0, 109, 105, 1) solid;
  border-right: 1px rgba(0, 109, 105, 1) solid;
}

section.purple table td {
  border-color: rgba(118, 39, 124, 1);
}

table tr:nth-child(odd):not(:first-child) td {
  background: #00100E;
}

table tr:nth-child(even) td {
  background: #0E191E;
}

table td:not(:first-child) {
  border-left: none;
}

table tr:last-child td {
  border-bottom: 1px rgba(0, 109, 105, 1) solid;
}

section.purple table tr:last-child td {
  border-color: rgba(118, 39, 124, 1);
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

.divisions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.divisions .division {
  padding: 20px 0;
  width: 315px;
  text-align: center;border-radius: 20px;
  background: #003331;
}

.divisions .division img {
  display: block;
  margin: 0 auto;
}

.divisions .division span {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: bold;
}

.advantages-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  margin: 32px 0;
  gap: 20px 20px;
}

.advantages-list .advantage {
  width: 315px;
  padding: 36px 16px;
  background: linear-gradient(104.36deg, #21021A 5.29%, #3C0C48 46.18%, #2B033D 69.75%, #210218 100.06%);
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 0px 12px 0px rgba(192, 0, 173, 1) inset;
  height: 196px;
}

.advantages-list.altered .advantage {
  width: 248px;
}

.advantages-list .advantage .icon {
  font-size: 46px;
  line-height: 1;
}

.advantages-list .advantage p {
  display: block;
  margin-top: 16px;
  font-size: 16px;
}

.faq-container .faq-item {
  padding: 24px 0;
  background: linear-gradient(104.36deg, #21021A 5.29%, #3C0C48 46.18%, #2B033D 69.75%, #210218 100.06%);
  box-shadow: 0px 0px 12px 0px rgba(192, 0, 173, 1) inset;
  border-radius: 20px;
  margin-bottom: 20px;
}

.faq-container input {
  display: none;
}

.faq-container h3 {
  margin: 20px 0;
  font-size: 16px;
}

.faq-container p {
  padding: 0 24px;
  font-size: 16px;
}

.fixedButtons {
  display: none;
}

@media (max-width: 1440px) {

  .wrapper {
    padding: 0 20px;
  }

  .banner .wrapper .image {
    right: 0;
  }

}

@media (max-width: 840px) {

  header {
    margin-bottom: 12px;
  }

  h1 {
    font-size: 28px;
  }

  .banner .wrapper {
    height: 288px;
  }

  .banner .wrapper .image {
    right: 0px;
    height: 227px;
  }

  .banner .wrapper .image img {
    max-height: 100%;
  }

  section {
    margin-top: 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }

}

@media (max-width: 640px) {

  * {
    font-size: 16px;
  }

  .wrapper {
    padding: 0 10px;
  }

  section {
    padding: 24px 16px;
  }

  header .buttons {
    display: none;
  }

  .banner .wrapper {
    height: auto;
    padding: 24px 16px 0;
  }

  .banner .button-block {
    width: 100%;
    max-width: 100%;
    padding: 20px 10px;
  }

  .banner .button-block button {
    width: 100%;
  }
  
  .banner .wrapper .text-mob {
    display: block;
    width: 100%;
  }

  .banner .wrapper .text-desktop {
    display: none;
  }

  .banner .wrapper .image {
    position: relative;
    right: 0;
    bottom: 0;
    margin-bottom: -5px;
  }

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

  h1 {
    text-align: center;
    font-size: 22px;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .banner button {
    font-size: 16px;
    width: 100%;
    padding: 15px 0;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  ul, ol {
    margin: 20px 0;
  }

  section p {
    font-size: 16px;
    margin-bottom: 22px;
  }

  table tr:first-child td {
    font-size: 16px;
  }

  .divisions {
    gap: 6px;
  }

  .divisions .division {
    width: 48%;
  }

  .divisions .division span {
    font-size: 16px;
  }

  .divisions .division img {
    max-width: 120px;
  }

  .advantages-list {
    margin: 20px 0;
  }

  .advantages-list .advantage {
    height: auto;
  }

  .faq-container .faq-item {
    padding: 24px 16px;
  }

  .faq-container p {
    padding: 0;
  }

  footer li {
    margin: 8px 20px;
  }

  .fixedButtons {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    gap: 8px;
    padding: 10px;
    width: 100%;
    justify-content: center;
    z-index: 6;
    background: #000;
  }

  .fixedButtons button {
    flex-grow: 1;
  }

  button.reg, button.log {
    padding: 12px 0px;
    width: 50%;
    font-size: 16px;
  }

}

@media (max-width: 360px) {

  .advantages-list.altered .advantage {
    width: 100%;
  }

  .divisions {
    gap: 12px;
  }

  .divisions .division {
    width: 100%;
  }

}

.scrollToTop {
  background: rgba(255, 36, 0, 1);
  box-shadow: 0 0 12px 0 rgba(173, 0, 255, 0.26);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 70px;
  right: 20px;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.androidBlock {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 18px 0;
  border-radius: 8px;
  background: linear-gradient(104.36deg, #02211D 5.29%, #0C4841 46.18%, #033D36 69.75%, #02211D 100.06%);
}

.androidBlock .text {
  display: flex;
  flex-flow: column wrap;
  gap: 12px;
  position: relative;
  text-align: center;
  justify-content: center;
  z-index: 3;
  max-width: 460px;
}

.androidBlock .text p {
  font-size: 24px;
  font-weight: bold;
}

.androidBlock .text button {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 90%;
  text-transform: uppercase;
  font-size: 18px;
}

.androidBlock .android {
  position: absolute;
  right: 10%;
  bottom: -18px;
}

@media (max-width: 1120px) {

  .androidBlock .android {
    right: -5%;
  }

}

@media (max-width: 720px) {

  .androidBlock .text {
    max-width: 360px;
  }

  .androidBlock .android {
    right: -15%;
  }


}

@media (max-width: 480px) {

  .androidBlock .android {
    right: -25%;
  }

  .androidBlock .text p {
    margin: 0 auto;
    max-width: 90%;
    font-size: 22px;
  }

  .androidBlock .text button {
    font-size: 16px;
  }

}

@media (max-width: 360px) {

  .androidBlock .android {
    right: -35%;
  }

}

main .toc.wrapper { 
    margin: 12px auto 32px;
    border: 1px solid #FF2400;
    padding: 20px;
    width: 640px;
    max-width: 95%;
    border-radius: 8px;
}
.toc p.big { font-size: 18px; font-weight: bold; }
.toc ul { padding-left: 0; }
.toc li { list-style: inside; list-style-type: disc; }
.toc li a {
    color: #fff;
    font-size: 15px;
    transition: .3s;
}
.toc li a:hover { color: #FF2400; }




.double_inner {display: grid; gap: 12px 24px; grid-template-columns: repeat(2, 1fr); height: 300px;}
.double_left {background: url(/double-left.webp)no-repeat; background-size: cover;}
.double_right {background: url(/double-right.webp)no-repeat; background-size: cover;}
.double_left, .double_right {position: relative; box-shadow: 0px 0px 20px 0px #3C1044 inset; border-radius: 20px; padding: 32px;}
.double button {background: rgba(255, 36, 0, 1); border-radius: 6px; padding: 16px 24px; color: rgba(255, 255, 255, 1); font-size: 16px;
    font-weight: bold; text-transform: uppercase; position: relative; z-index: 2;}
.double_info {display: flex; gap: 8px; flex-direction: column; margin-bottom: 20px;}
.double_info span.bold {font-weight: bold; font-style: italic; font-size: 32px; text-transform: uppercase;}
.double_info span.italic {font-style: italic; font-size: 32px; text-transform: uppercase;}
.double_info span.thick {font-style: italic; font-size: 20px; text-transform: uppercase; font-weight: bold;}
.double_info span.marked {color: #FF9100; text-shadow: 5px 1px 5px rgba(255,198,0,0.21);} 
.double_left_img {position: absolute; bottom: 0; right: 20px; width: 180px; height: 284px; z-index: 1;
    background: url(/double-left-img.webp)no-repeat; background-size: cover;}
.double_right_img {position: absolute; bottom: 0; right: 56px; width: 180px; height: 284px; z-index: 1;
    background: url(/double-right-img.webp)no-repeat; background-size: cover;}

@media (max-width: 1280px) {
    .double_inner {height: 240px;}
    .double_right_img {right: 0px;}
    .double_info {gap: 6px; margin-bottom: 16px;}
    .double_info span.bold, .double_info span.italic {font-size: 24px;}
    .double button {font-size: 14px; padding: 12px 20px;}
    .double_left, .double_right {padding: 16px 24px;}
    .double_left_img {width: 133px; height: 210px;}
    .double_right_img {width: 136px;height: 215px;}
}
@media (max-width: 840px) {
    .double_inner {grid-template-columns: 1fr; height: auto;}
    .double_left_img {right: 8px;}
    .double_left, .double_right {padding: 16px 16px;}
}

.newmenu {
  margin: 32px 0 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.newmenu .column {
  width: 25%;
}

.newmenu .column span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.newmenu .column a {
  display: block;
  font-size: 14px;
  max-width: 75%;
  margin-bottom: 8px;
}

@media (max-width: 840px) {

  footer p {
    font-size: 16px;
  }

  .newmenu .column { 
    width: 50%; 
    margin-bottom: 24px;
  }

  .newmenu .column:nth-child(3),
  .newmenu .column:nth-child(4) {
    margin-bottom: 0;
  }

}

@media (max-width: 480px) {
  .newmenu .column { 
    width: 100%; 
  }

  .newmenu .column:nth-child(3) {
    margin-bottom: 24px;
  }

}

.important {
  padding: 20px;
  border: 3px #FF2301 solid;
  border-radius: 8px;
}

.columns {
  display: flex;
  justify-content: space-between;
}

.columns .column {
  width: 48%;
}

.columns .column h3 {
  text-align: left;
}

@media (max-width: 640px) {

  .columns {
    flex-wrap: wrap;
  }

  .columns .column {
    width: 100%;
  }

}

.button-block {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 32px 0;
}

.button-block button {
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px #FF2400 solid;
  font-size: 18px;
  font-weight: bold;
  background: #FF2400;
  text-transform: uppercase;
}

.heading {
  text-align: center;
}

.heading h2 {
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slotsList .buttons {
  margin: 32px 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 32px;
}

.slotsList .buttons .button-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.slotsList .buttons .button-item button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.slotsList .buttons .button-item img {
  max-width: 28px;
}

.slotsList .buttons .button-item span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
}

.games {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden;
}

.games .game {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
}

.games .game .overlay {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,.7);
  transform: translateY(200%);
  transition: .2s;
  opacity: 0;
  z-index: -1;
}

.games.viewed .game .overlay {
  background: rgba(0,0,0,.4);
}

.games.viewed .game .overlay .overlay-btns button:nth-child(2n) {
  display: none;
}

.games .game img {
  max-width: 100%;
}

.games.viewed .game .overlay,
.games .game:hover .overlay {
  transform: translateY(0);
  opacity: 1;
  z-index: 2;
}

.games .game .overlay .overlay-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.games .game .overlay .overlay-btns button {
  min-width: 240px;
}

@media (max-width: 790px) {

  .games {
    gap: 1%;
  }

  .games .game {
    width: 24%;
  }

  .games .game .overlay .overlay-btns {
    gap: 12px;
    width: 100%;
  }

  .games .game .overlay .overlay-btns button:nth-child(2n) {
    display: none;
  }

  .games .game .overlay{
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
    background: rgba(0,0,0,.4);
  }

  .games .game .overlay .overlay-btns button {
    min-width: auto;
    width: 90%;
    font-size: 12px;
    padding: 6px 12px;
  }

}

@media (max-width: 580px) {

  .games .game {
    width: 48%;
  }

}

.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    margin-right: 15px;
}

.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ff2400;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active .burger-line:nth-child(1) {
    display: none;
}

.burger-btn.active .burger-line:nth-child(2) {
    display: none;
}

.burger-btn.active .burger-line:nth-child(3) {
    display: none;
}

.burger-btn:hover .burger-line {
    background-color: #ff2400;
}

.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.burger-menu.active {
    visibility: visible;
    opacity: 1;
}

.burger-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.burger-menu__content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
    border-left: 1px solid rgba(212, 167, 84, 0.2);
    padding: 80px 30px 40px;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.burger-menu.active .burger-menu__content {
    right: 0;
}
.burger-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(212, 167, 84, 0.3);
    border-radius: 50%;
    color: #ff2400;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-menu__close:hover {
    background: rgba(212, 167, 84, 0.1);
    border-color: #ff2400;
}

.burger-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.burger-menu__link {
    display: block;
    padding: 14px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.aurelia-nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-menu__link:hover {
    color: #f8f6f3;
    background: rgba(191, 94, 83, 0.1);
    border-left-color: #ff2400;
}

@media screen and (min-width: 769px) {
    .burger-btn {
        margin-left: 20px;
    }
}
@media screen and (max-width: 768px) {
    .burger-btn {
        order: 3;
        margin-left: auto;
        margin-right: 0;
    }
    
    .burger-menu__content {
        width: 280px;
        padding: 70px 20px 30px;
    }
    
    .burger-menu__link {
        font-size: 14px;
        padding: 12px 14px;
    }
    .aurelia-nav {
        display: block;
    }
    .aurelia-nav-btn {
        justify-content: space-between;
    }
}
