@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=Poppins:300,regular,500,600,700,800,900&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%;
}

img {
  float: left; 
  margin-right: 20px;
}

/* 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-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #1b152a;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
  border-bottom: 2px solid #ff782d;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px auto;
  text-align: center;
  border-bottom: 1.5px solid #ff782d;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
  border-bottom: 1px solid #c72dff;
  max-width: fit-content;
}

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: #ff782d;
  font-weight: 600;
}

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: #a889ff;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(132, 92, 242, 0.1058823529);
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1b152a;
  padding: 20px 0;
  border-bottom: 1px solid #816aa6;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header .container .logo img {
  max-width: 80px;
}
.header .container .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(180deg, #ffb067 0%, #ff782d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.header .container .logo a .purple {
  background: linear-gradient(180deg, #a889ff 0%, #835cf2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header .container .auth {
  display: flex;
  gap: 15px;
}

.btn-1,
.bottom-navigation .btn-1 {
  background: linear-gradient(90deg, #aa8bff, #511f75);
}
.btn-1:hover,
.bottom-navigation .btn-1:hover {
  animation: none;
  background: #835cf2;
}

.btn-2,
.bottom-navigation .btn-2 {
  background: linear-gradient(315deg, #ff782d, #6f22a6);
}
.btn-2:hover,
.bottom-navigation .btn-2:hover {
  background: #df4e00;
}

.btn,
.bottom-navigation .btn {
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 47px;
  transition: all 0.3s;
  color: #fff;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 0 0 50px;
}
.main .bonus__text a {
  position: relative;
  transition: 0.6s;
  animation: animation-10ham8r 3s infinite ease-in-out forwards;
  filter: drop-shadow(0px 0px 5px #ff782d);
  background: rgba(255, 120, 45, 0.32);
  border: 2px solid #ff782d;
  max-width: 200px;
  white-space: nowrap;
  font-size: 18px;
  overflow: hidden;
}
.main .bonus__text a:hover {
  background-color: #ff782d;
}
.main .bonus__text a::after {
  content: "";
  position: absolute;
  width: 142px;
  height: 100%;
  top: 0;
  left: -142px;
  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 5px #fff);
}
.main .bonus {
  display: flex;
  align-items: center;
  padding: 32px;
  border-radius: 16px;
  background: rgba(129, 106, 166, 0.08);
  position: relative;
  margin: 80px 0 50px 0;
}
.main .bonus__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .bonus .title {
  font-size: 48px;
  font-style: italic;
  font-weight: 800;
}
.main .bonus .title .green {
  color: #68f244;
}
.main .bonus .bonus-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  border-radius: 47px;
  transition: all 0.3s;
  color: #fff;
}
.main .bonus__img {
  position: absolute;
  right: 5%;
  bottom: 0;
  margin-bottom: -5px;
  max-width: 45%;
}
.main .content {
  padding: 50px 0;
}
.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;
}
.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;
}

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

.footer {
  padding: 30px 0;
  border-top: 1px solid #816aa6;
  display: flex;
  justify-content: center;
}

.bottom-navigation {
  display: none;
}

@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%;
  }
  .btn {
    padding: 10px 15px;
  }
  .header .container {
    justify-content: center;
    gap: 15px;
  }
  .header .container .logo img {
    max-width: 50px;
  }
  .header .container .auth {
    display: none;
  }
  .main {
    padding: 0 0 30px;
  }
  .main .bonus {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 32px 16px 0;
    margin: 30px 0;
  }
  .main .bonus .title {
    font-size: 38px;
  }
  .main .bonus__img {
    position: initial;
    max-width: 100%;
  }
  .main .content {
    padding: 30px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .bottom-navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 16px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1b152a;
    border-top: 1px solid #816aa6;
  }
  .bottom-navigation .btn {
    width: 120px;
  }
}
@keyframes animation-10ham8r {
  50% {
    filter: drop-shadow(0px 0px 0px rgba(255, 120, 45, 0));
  }
  100% {
    filter: drop-shadow(0px 0px 5px #ff782d);
  }
}
@keyframes transform {
  0% {
    transform: translate3d(-15px, 0, 0);
  }
  50% {
    transform: translate3d(15px, 0, 0);
  }
  100% {
    transform: translate3d(-15px, 0, 0);
  }
}
@keyframes animation-15c8vog {
  0% {
    left: -141px;
  }
  75% {
    left: -142px;
  }
  100% {
    left: 100%;
  }
}