@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

ol,
ul,
menu {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: linear-gradient(180deg, #0a0c10, #1d232f);
}

p {
  line-height: 155%;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 28px 0;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 22px auto;
  text-align: center;
  border-bottom: 1.8px solid #ffa54b;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 18px 0;
}

ol {
  list-style: decimal;
  padding: 18px 28px;
}

ul {
  list-style: disc;
  padding: 18px 28px;
}

li {
  line-height: 155%;
}

ol li::marker,
ul li::marker {
  color: #ffa54b;
  font-weight: 700;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #fff;
  padding: 18px;
}
table tr th {
  background-color: #ffa54b;
  color: #2a2a2a;
  font-size: 20px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(100, 100, 100, 0.12);
}

.topbar {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #0a0c10;
  padding: 22px 0;
  box-shadow: 0 0 6px #ffa54b;
}
.topbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.topbar .wrapper .brand {
  flex: 0 0 160px;
}
.topbar .wrapper .brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffbc80 0%, #ff914d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.topbar .wrapper .brand a .purple {
  background: linear-gradient(180deg, #b399ff 0%, #936cf2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.topbar .wrapper .login {
  display: flex;
  gap: 18px;
}
.topbar .wrapper .login .button-primary {
  border: 1px solid #3a454f;
  color: #d9dfe5;
}
.topbar .wrapper .login .button-primary:hover {
  background: #3a454f;
}
.topbar .wrapper .login .button-secondary {
  background-color: #ffa54b;
  color: #2a2a2a;
}
.topbar .wrapper .login .button-secondary:hover {
  background-color: #e6913a;
}

.button {
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 9px;
  transition: all 0.3s;
  color: #fff;
}

.core {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 55px;
}
.core .promo {
  padding: 55px 0;
  position: relative;
  background-color: #0f1114;
  background: linear-gradient(180deg, #3a454f, #2a333c);
  background-position: 100%;
  background-size: contain;
  height: 410px;
  display: flex;
  z-index: 0;
}
.core .promo::before {
  content: "";
  background: url(../img/coins.png) center/cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.35;
}
.core .promo .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  margin: 0 55px;
}
.core .promo .block {
  flex: 0 0 62%;
}
.core .promo .block img {
  animation: transform 5s infinite;
  max-width: 410px;
}
.core .promo__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.core .promo__content h1 {
  margin: 0;
  text-align: left;
}
.core .promo__img {
  text-align: center;
}
.core .promo__action a {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: #ffa54b;
  max-width: 310px;
  white-space: nowrap;
  font-size: 22px;
  overflow: hidden;
  color: #2a2a2a;
  padding: 18px;
  box-shadow: 0 9px 18px 0 rgba(255, 165, 75, 0.22);
  animation: glow 1400ms infinite;
}
.core .promo__action a:hover {
  background-color: #e6913a;
  color: #fff;
}
.core .promo__action a::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 100%;
  top: 0;
  left: -145px;
  background: -webkit-linear-gradient(-40deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, #ffffff 25.2%, #fff 46%, rgba(255, 255, 255, 0) 46.2%, rgba(255, 255, 255, 0) 49%, #ffffff 49.2%, #fff 53.5%, rgba(255, 255, 255, 0) 53.7%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-size: 100% 100%;
  animation: animation-15c8vog 3s infinite ease-in-out forwards;
  filter: drop-shadow(0px 0px 6px #fff);
}
.core .features-section {
  padding: 80px 18px;
  box-shadow: 0 0 6px #926db5;
}
.core .features-section h2 {
  margin: 0 auto 75px;
}
.core .features-section .items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  justify-content: center;
  gap: 22px;
}
.core .features-section .items .item {
  background: rgba(146, 109, 181, 0.09);
  border-radius: 18px;
  padding: 26px;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.core .features-section .items .item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 280px;
  z-index: -1;
}
.core .features-section .items .item:nth-child(1)::before {
  background: url("../img/light.png") center/cover no-repeat;
}
.core .features-section .items .item:nth-child(2)::before {
  background: url("../img/prize.png") center/cover no-repeat;
}
.core .features-section .items .item:nth-child(3)::before {
  background: url("../img/phone.png") center/cover no-repeat;
}
.core .features-section .items .item__heading {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  max-width: 82%;
}
.core .features-section .items .item__description {
  font-size: 20px;
  font-weight: 600;
  max-width: 82%;
}
.core .info {
  padding: 55px 0;
}
.core .info p {
  margin: 18px 0;
}
.core .info img {
  display: flex;
  margin: 0 auto;
  max-width: 510px;
}
.core .payments {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.core .payments .payment {
  cursor: pointer;
  transition: filter 0.4s ease-in-out;
}
.core .payments .payment svg path {
  transition: fill 0.4s ease-in-out;
}
.core .payments .payment:nth-child(1):hover {
  filter: drop-shadow(0px 0px 18px #1f46ff);
}
.core .payments .payment:nth-child(1):hover svg path {
  fill: #1f46ff;
}
.core .payments .payment:nth-child(2):hover {
  filter: drop-shadow(0px 0px 18px #ff8000);
}
.core .payments .payment:nth-child(2):hover svg path {
  fill: #ff8000;
}
.core .payments .payment:nth-child(3):hover {
  filter: drop-shadow(0px 0px 18px #ffc200);
}
.core .payments .payment:nth-child(3):hover svg path {
  fill: #ffc200;
}
.core .payments .payment:nth-child(4):hover {
  filter: drop-shadow(0px 0px 18px #f7931a);
}
.core .payments .payment:nth-child(4):hover svg path {
  fill: #f7931a;
}
.core .payments .payment:nth-child(5):hover {
  filter: drop-shadow(0px 0px 18px #c718e3);
}
.core .payments .payment:nth-child(5):hover svg path {
  fill: #c718e3;
}
.core .payments .payment:nth-child(6):hover {
  filter: drop-shadow(0px 0px 18px #28d49f);
}
.core .payments .payment:nth-child(6):hover svg path {
  fill: #28d49f;
}

.wrapper {
  max-width: 92vw;
  margin: 0 auto;
  padding: 0 18px;
}

.footer {
  padding: 35px 0;
  box-shadow: 0 0 6px #ffa54b;
  background-color: #0a0c10;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  table {
    display: block;
  }
  h1 {
    margin: 22px 0;
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
    margin: 18px 0;
  }
  h3 {
    font-size: 22px;
    margin: 12px 0;
  }
  .wrapper {
    max-width: 100%;
  }
  .button {
    padding: 12px 18px;
  }
  .topbar .wrapper {
    justify-content: center;
    gap: 18px;
    flex-direction: column;
    gap: 22px;
  }
  .topbar .wrapper .brand {
    flex: auto;
  }
  .topbar .wrapper .brand img {
    width: 130px;
  }
  .core {
    padding: 0 0 35px;
  }
  .core .promo {
    height: auto;
    padding: 35px 0;
    background-size: cover;
    padding: 0;
  }
  .core .promo::after {
    content: "";
    background-color: #2a2a2a;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
  }
  .core .promo .wrapper {
    gap: 35px;
    flex-direction: column;
    z-index: 3;
    padding: 22px;
    margin: 0 22px;
  }
  .core .promo__img {
    max-width: 260px;
  }
  .core .promo .block {
    flex: 1 1 auto;
  }
  .core .promo .block img {
    max-width: 100%;
  }
  .core .features-section {
    padding: 50px 0;
  }
  .core .features-section h2 {
    margin: 0 auto 35px;
  }
  .core .features-section .game-item {
    width: 310px;
    height: 310px;
    margin: 0 auto;
  }
  .core .features-section .game-item:not(:last-child) {
    margin-bottom: 55px;
  }
  .core .features-section .game-item_play {
    margin-bottom: 135px;
  }
  .core .info {
    padding: 35px 0;
  }
  .core .info img {
    max-width: 100%;
  }
  .core .payments {
    padding: 0 18px;
    gap: 12px;
    justify-content: space-around;
  }
  .core .payments svg {
    height: 35px;
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 6px #404040;
  }
  50% {
    box-shadow: 0 0 22px #ffa54b;
  }
  100% {
    box-shadow: 0 0 6px #404040;
  }
}