@charset "UTF-8";
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-VariableFont_wght.ttf") format("woff");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lexend";
  font-size: 18px;
  line-height: 1.5;
  color: #1A1A1A;
  overflow-x: hidden;
  padding: 50px 20px;
  background: #F5F6F5 url("../images/top.webp") left top no-repeat;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

table button a {
  padding-top: 4px;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

button {
  background-color: #FF6F00;
  border-radius: 82px;
  transition: box-shadow 0.3s ease;
}
button:hover {
  box-shadow: 0 0 15px #FF6F00;
}

h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
}

h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 150%;
  letter-spacing: 0%;
}

.highlight {
  color: #FF6F00;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.image-container {
  aspect-ratio: 30/20;
}

.copy-notification {
  position: fixed;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF6F00;
  color: black;
  padding: 12px 24px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
}

.copy-notification.show {
  bottom: 20px;
  opacity: 1;
}

.copy-notification::before {
  content: "✓";
  margin-right: 8px;
}

.sections {
  flex: 1;
  min-width: 0;
}

.loader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6F00;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  body {
    padding: 10px 10px;
  }
  .copy-notification {
    width: 90%;
    left: 5%;
    transform: none;
  }
  h2 {
    text-align: center;
    font-size: 30px;
  }
  h1 {
    font-size: 35px;
  }
}
.header {
  background-color: #0D1A26;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  border-radius: 100px;
  border: 1px #262626 solid;
}
.header__logo-container {
  width: 60px;
  height: 60px;
  background-color: #F5F6F5;
  border-radius: 50%;
  text-align: center;
}
.header__button {
  width: 200px;
  height: 50px;
}
.header__logo {
  width: 40px;
  height: 40px;
  align-self: center;
}
.header .image-container {
  display: flex;
  justify-content: center;
}
.header a {
  width: fit-content;
}

.hero {
  margin-top: 100px;
}
.hero__container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 50px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.hero__button {
  margin-top: 10px;
  width: 230px;
  height: 55px;
  margin-left: 8px;
}
.hero__tittle {
  grid-area: ls;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hero__img {
  grid-area: hd;
}
.hero__img img {
  border-radius: 50px;
}
.hero__img .image-container {
  acpect-ratio: 16/9;
}
@media (max-width: 1500px) {
  .hero {
    margin-top: 40px;
  }
  .hero .container {
    height: fit-content;
    justify-content: center;
  }
  .hero .hero__tittle {
    text-align: center;
  }
  .hero .hero__button {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero .container {
    gap: 60px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
  }
}

.content {
  margin-top: 100px;
}
.content__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
  color: #F5E574;
}
.content li {
  width: fit-content;
  height: fit-content;
  background-color: #0D1A26;
  border-radius: 100px;
  border: #262626 solid 1px;
  padding: 14px 40px;
  max-width: 378px;
}
.content h2 {
  font-weight: 500;
  font-size: 30px;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .content {
    margin-top: 50px;
  }
  .content h2 {
    text-align: center;
  }
  .content__list {
    gap: 20px;
    justify-content: center;
  }
  .content li {
    text-align: center;
    max-width: none;
    width: 100%;
  }
}

.why {
  margin-top: 100px;
}
.why h2 {
  margin-bottom: 20px;
}
.why__container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.why__text {
  font-weight: 200;
  line-height: 150%;
  grid-area: hd;
}
.why__text ul {
  list-style: disc;
}
.why__text ul a {
  text-decoration: underline;
  color: #007BFF;
}
.why__text .why__note {
  font-weight: 400;
  margin: 20px 0 0 -20px;
}
.why__img {
  grid-area: ls;
  max-height: 344px;
}
.why__img .image-container {
  aspect-ratio: 3/2;
  align-items: center;
}
.why__img img {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 50px;
}
.why__second {
  margin-top: 100px;
}
.why__img.second {
  grid-area: hd;
}
.why__img.second .image-container {
  aspect-ratio: 16/9;
}
.why__text.second {
  grid-area: ls;
}
.why__text.second ul {
  margin-left: 25px;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .why__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
  }
  .why__text {
    margin: 20px;
  }
  .why__text.second {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .why p {
    font-size: 16px;
  }
  .why {
    margin-top: 60px;
  }
  .why__img {
    max-height: none;
  }
  .why__img img {
    width: 100%;
  }
  .why__second {
    margin-top: 60px;
  }
}

.best {
  margin-top: 100px;
}
.best__block {
  font-weight: 200;
  display: grid;
  grid-template-columns: repeat(7, 2fr);
  grid-column-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd" "ld ld ld ld hl hl hl";
  margin-top: 20px;
}
.best .image-container {
  max-width: 890px;
}
.best__list {
  grid-area: ls;
}
.best__list.second {
  grid-area: ld;
}
.best__list .best__list-item {
  background: linear-gradient(90deg, #F4A261, #84AACF);
  border-radius: 50px 16px;
  padding: 32px;
  color: #1A1A1A;
  width: 100%;
  height: fit-content;
  margin-bottom: 30px;
}
.best__list ul {
  list-style: disc;
  margin-left: 25px;
}
.best__list .best__list-item-number {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: solid #F5E574 12px;
  background-color: #1A1B1B;
  color: #FF6F00;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
}
.best__list h3 {
  display: inline;
  margin-left: 20px;
  font-weight: 700;
}
.best__list .image-container {
  aspect-ratio: 1/1;
}
.best__list figure {
  width: 23px;
  height: 23px;
}
.best .info {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: #E8F0FE;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 400;
}
.best .text p {
  margin-bottom: 20px;
}
.best__text-side {
  grid-area: hd;
}
.best__text-side.promo {
  grid-area: hl;
  height: 544px;
  position: relative;
}
.best__text-side a {
  text-decoration: underline;
  color: #007BFF;
}
.best__text-side ul {
  list-style-type: disc;
  margin-left: 25px;
}
.best h3 {
  font-weight: 500;
  font-size: 30px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.best__promo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: sticky;
  top: 20px; /* Отступ от верха при "прилипании" */
  height: fit-content;
}
.best .copy {
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
  background-color: #0D1A26;
  border-radius: 84px;
  border: #262626 solid 1px;
  align-items: center;
  padding: 12px 17px;
}
.best .copy p {
  font-weight: 400;
  font-size: 20px;
  color: #F5E574;
}
.best .copy .promocode {
  cursor: pointer;
  margin-left: 20px;
  background-color: #E4E4E7;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: black;
}
.best .copy .promocode p {
  font-weight: 700;
  margin-left: 10px;
  color: #1A1A1A;
}
.best .copy .promocode.copied {
  background-color: #FF6F00;
}
.best .copy .promocode.copied .clip {
  background-image: none;
}
.best .copy .clip {
  background-color: #FF6F00;
  border-radius: 0 19px 19px 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
.best .copy .clip img {
  margin-left: 3px;
}
.best__button {
  width: 226px;
  height: 55px;
  transition: background-color 0.3s ease-in-out;
}
.best__button:hover {
  background-color: #FF6F00;
}
@media (max-width: 1200px) {
  .best__block {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "ld" "hd" "hl";
    grid-gap: 15px;
  }
  .best .bonus-list {
    text-align: left;
  }
  .best .best__text-side {
    margin: 0 auto;
  }
  .best__text-side {
    grid-area: hd;
  }
  .best__text-side.promo {
    height: fit-content;
    position: unset;
  }
  .best__promo {
    position: unset;
    height: fit-content;
  }
}
@media (max-width: 500px) {
  .best p {
    font-size: 16px;
  }
  .best {
    margin-top: 60px;
  }
  .best h3 {
    font-size: 25px;
  }
  .best .info {
    align-items: flex-start;
  }
}

.table {
  margin-top: 100px;
}
.table__container {
  margin-top: 20px;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.table__container p {
  font-weight: 400;
}
.table .table-container {
  grid-area: ls;
  overflow-x: auto;
}
.table .table-container.second {
  grid-area: hd;
}
.table .table-container.second h3 {
  font-size: 30px;
  font-weight: 500;
}
.table__title {
  grid-area: hd;
}
.table__title ul {
  list-style: disc;
  margin-left: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
.table__title.second {
  grid-area: ls;
}
.table__title.second ul {
  margin-top: 20px;
}
.table .image-container {
  aspect-ratio: 1/1;
}
.table figure {
  width: 23px;
  height: 23px;
}
.table .info {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: #E8F0FE;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .table__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
  }
  .table .exchanges-table {
    margin: 20px auto;
  }
}

.exchanges-table {
  overflow-x: auto;
  margin: 20px 0;
  font-family: "Lexend";
  max-width: 890px;
}
.exchanges-table table {
  width: 100%;
  border-radius: 4px;
  border: #5B5B5B 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.exchanges-table table th, .exchanges-table table td {
  padding: 0.5rem;
  text-align: left;
  border: 1px solid black;
  width: 33.33%;
}
.exchanges-table table th {
  background-color: #A6CFFF;
  font-weight: 600;
  font-size: 12px;
  color: #1A1A1A;
  white-space: nowrap;
  text-align: center;
  border-top: 1px solid #FF6F00;
  border-left: 1px solid #FF6F00;
  border-right: 1px solid #FF6F00;
}
.exchanges-table table .bootom {
  border-bottom: 1px solid #5B5B5B;
}
.exchanges-table table .left {
  text-align: left;
}
.exchanges-table table tr {
  transition: background-color 0.3s ease;
  background-color: white;
}
.exchanges-table table tr:hover {
  background-color: rgba(58, 12, 163, 0.05);
}
.exchanges-table table tr td {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 768px) {
  .exchanges-table table {
    min-width: 100%;
  }
  .exchanges-table table th, .exchanges-table table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
  .table {
    margin-top: 60px;
  }
}
.top {
  margin-top: 100px;
}
.top__container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 30px;
}
.top__container li {
  background: linear-gradient(90deg, #F4A261, #84AACF);
  border-radius: 20px;
  padding: 32px;
  color: #1A1A1A;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-size: 24px;
}
.top__container li .image-container {
  aspect-ratio: 1/1;
}
.top__container li figure {
  width: 35px;
  height: 35px;
}
.top__container li .best__list-item-number {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: solid #F5E574 12px;
  background-color: #1A1B1B;
  color: #FF6F00;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.top__container li .ethereum-icon {
  width: 20px;
  height: 35px;
}
.top__container .last_item {
  grid-column: 1/-1;
}
@media (max-width: 1300px) {
  .top__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
    text-align: center;
  }
  .top .best__list-item-number {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .top li {
    font-size: 20px;
  }
  .top li .best__list-item-number {
    width: 65px;
    height: 65px;
    border: solid #F5E574 6px;
  }
  .top li .best__list-item-number figure {
    width: 25px;
    height: 25px;
  }
  .top li .best__list-item-number .ethereum-icon {
    width: 17px;
    height: 25px;
  }
}

.bonus {
  margin-top: 100px;
  max-width: 1600px;
  margin: 0 auto;
}
.bonus .container {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(#262626, #262626) padding-box, linear-gradient(95.43deg, rgba(202, 255, 51, 0.2) 0%, rgba(202, 255, 51, 0) 5.36%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.bonus .container p {
  font-weight: 400;
  font-size: 40px;
  color: #FF6F00;
}
.bonus .container button {
  width: 250px;
  height: 55px;
}
.bonus .image-container {
  aspect-ratio: 1/1;
}
.bonus figure {
  width: 23px;
  height: 23px;
}
.bonus .info {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background-color: #E8F0FE;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 400;
  width: fit-content;
}
@media (max-width: 768px) {
  .bonus .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .bonus p {
    text-align: center;
  }
  .bonus {
    margin-top: 60px;
  }
  .bonus .info {
    align-items: flex-start;
  }
}

.faq {
  margin-top: 100px;
}
.faq__container {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.faq__card {
  max-width: 800px;
  border-radius: 14px;
  border: #A6CFFF solid 1px;
  padding: 20px;
}
.faq h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  padding-bottom: 10px;
}
.faq p {
  padding-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #1A1A1A;
}
.faq .faq__header {
  border-bottom: #A6CFFF solid 1px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .faq__container {
    grid-template-columns: 1fr;
  }
  .faq {
    margin-top: 60px;
  }
}

.start {
  margin-top: 100px;
}
.start__container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 30px;
  grid-template-areas: "ls ls ls ls hd hd hd";
}
.start p {
  padding-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.start button {
  width: 320px;
  height: 55px;
  margin: 0 auto;
}
.start__text {
  grid-area: ls;
}
.start__text ol {
  list-style: decimal;
  margin-top: 20px;
  margin-left: 25px;
}
.start__button {
  grid-area: hd;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media (max-width: 800px) {
  .start__container {
    grid-template-columns: 1fr;
    grid-template-areas: "ls" "hd";
    grid-gap: 15px;
  }
  .start {
    margin-top: 60px;
  }
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border: 1px solid #262626;
  border-radius: 100px;
  padding: 16px 30px;
}
.footer p {
  color: #B3B3B3;
  font-weight: 300;
}
.footer__logo {
  width: 55px;
  height: 55px;
}
.footer a {
  width: 55px;
}
.footer p {
  color: #F5E574;
  font-weight: 200;
}

/*# sourceMappingURL=main.css.map */
