@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
: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;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: linear-gradient(135deg, #3e3c13, #141201);
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #f2ce74;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #141201;
  padding: 20px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  font-size: 28px;
  font-weight: 700;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.header .container .auth .btn-1 {
  background: #df2dbd;
}
.header .container .auth .btn-1:hover {
  background: #e946cb;
}
.header .container .auth .btn-2 {
  background: linear-gradient(253.67deg, #fffb00 2.27%, #c0ff03 94.48%);
  color: #000;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #55ff70 94.48%);
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.main .cards .card {
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.main .cards .card:hover .card__hover {
  opacity: 1;
}
.main .cards .card .card__img img {
  margin: 0;
  border-radius: 10px;
}
.main .cards .card .card__hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(217deg, rgba(129, 8, 224, 0.7) 0%, rgba(255, 57, 176, 0.7) 100%, rgba(255, 57, 176, 0.7) 100%);
}
.main .cards .card .card__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #fffb00;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main .cards .card .card__hover .title {
  text-align: center;
}
.main .cards .card .card__wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.main .cards .card .card-btn {
  background: url("../img/play.svg") center/cover no-repeat;
  width: 50px;
  height: 50px;
  display: block;
}
.main .cards .card .card-btn:hover {
  background: url("../img/play-hover.svg") center/cover no-repeat;
}
.main .content {
  border: 1px solid #df2dbd;
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
  background: rgba(51, 40, 81, 0.43);
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .payments {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 16px;
  background-color: rgba(0, 0, 0, 0.4784313725);
  border-radius: 6px;
}
.main .payments .payment {
  cursor: pointer;
  transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
  transition: fill 0.4s ease-in-out;
}
.main .payments .payment:nth-child(1):hover {
  filter: drop-shadow(0px 0px 16px #1f46ff);
}
.main .payments .payment:nth-child(1):hover svg path {
  fill: #1f46ff;
}
.main .payments .payment:nth-child(2):hover {
  filter: drop-shadow(0px 0px 16px #ff8000);
}
.main .payments .payment:nth-child(2):hover svg path {
  fill: #ff8000;
}
.main .payments .payment:nth-child(3):hover {
  filter: drop-shadow(0px 0px 16px #ffc200);
}
.main .payments .payment:nth-child(3):hover svg path {
  fill: #ffc200;
}
.main .payments .payment:nth-child(4):hover {
  filter: drop-shadow(0px 0px 16px #f7931a);
}
.main .payments .payment:nth-child(4):hover svg path {
  fill: #f7931a;
}
.main .payments .payment:nth-child(5):hover {
  filter: drop-shadow(0px 0px 16px #c718e3);
}
.main .payments .payment:nth-child(5):hover svg path {
  fill: #c718e3;
}
.main .payments .payment:nth-child(6):hover {
  filter: drop-shadow(0px 0px 16px #28d49f);
}
.main .payments .payment:nth-child(6):hover svg path {
  fill: #28d49f;
}
.main__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  width: 250px;
  margin: 25px auto;
  background: linear-gradient(253.67deg, #fffb00 2.27%, #c0ff03 94.48%);
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.main__btn a:hover {
  background: linear-gradient(253.67deg, #cdff63 2.27%, #55ff70 94.48%);
}
.main__btn a::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transition: none;
  animation: _ngcontent-wlc-app-c30_sheen 2.5s infinite;
}
.main .faq {
  margin: 50px auto;
  padding: 40px;
  max-width: 70vw;
  background-color: #141201;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.main .faq__item {
  border-top: 1px solid rgb(86, 66, 141);
  padding: 24px 0;
}
.main .faq__item.active .faq__body {
  display: block;
}
.main .faq__item.active .faq__question-button {
  background-color: rgb(86, 66, 141);
}
.main .faq__item.active .faq__icon {
  transform: translateY(-50%) rotate(45deg);
}
.main .faq__title {
  font-size: 30px;
  font-weight: 600;
}
.main .faq__body {
  margin-top: 40px;
  display: none;
}
.main .faq__body p {
  margin: 15px 0;
}
.main .faq__question {
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 44px;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}
.main .faq__question-button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  z-index: 1;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #df2dbd;
}
.main .faq__icon {
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 8px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.main .faq__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #141201;
}
.footer .container {
  display: flex;
  justify-content: center;
}
.footer .container .flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer .container .icons img {
  height: 40px;
}

.scroll-btn {
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
}
.scroll-btn svg {
  border-radius: 6px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .main {
    padding: 30px 0;
  }
  .main .cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
  }
  .main .content img {
    max-width: 100%;
  }
  .main .faq {
    max-width: 100%;
    margin: 30px 0;
    gap: 30px;
  }
  .main .faq__title {
    font-size: 24px;
  }
  .main .faq__question {
    font-size: 16px;
  }
  .main .faq__question-button {
    width: 30px;
    height: 30px;
  }
  .main .faq__icon {
    width: 14px;
    height: 14px;
  }
  .main .faq__body {
    margin-top: 20px;
    font-size: 14px;
  }
}
@keyframes _ngcontent-wlc-app-c30_sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  50%, 100% {
    transform: skewX(-45deg) translateX(22em);
    transition: all 0.5s ease-in-out;
  }
}