* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

 :root {
  --hero-bg: url('/image/banner-mob.webp') center/cover no-repeat; /* <- МОБІЛКА */
}

@media (min-width: 640px) {
  :root {
    --hero-bg: url('/image/banner.webp') center/cover no-repeat; /* <- ДЕСКТОП */
  }
}

.hero {
  display: block;
  min-height: 100vh;
  width: 100%;
  background: var(--hero-bg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -50%);
  width: 45vw;
  height: 70vh;
  background: radial-gradient(ellipse, rgba(80,30,160,0.55) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero__img { display: none !important; }
.hero__img--mobile { display: none !important; }

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 32px;
  gap: 0;
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.hero__logo-text {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero__logo-num { color: #d4f53c; }

.hero__logo-img {
  height: 50px;   /* <-- міняй висоту під своє лого */
  width: auto;
  display: block;
}

/* === ПРОМО === */
.hero__promo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
  align-items: center;
  text-align: center;
  margin-top: auto;
}
.hero__take {
  font-size: clamp(22px, 6vw, 48px);
  font-weight: 900;
  color: #d4f53c;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.15;
}
.hero__amount {
  font-size: clamp(60px, 16vw, 110px);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -2px;
}
.hero__currency {
  font-size: 0.36em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}
.hero__fs {
  font-size: clamp(30px, 8vw, 52px);
  font-weight: 900;
  color: #d4f53c;
  line-height: 1.1;
}

/* === CTA === */
.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.hero__cta-label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.hero__cta-btn {
  display: block;
  width: 100%;
  background: #d4f53c;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  padding: 17px 32px;
  border-radius: 8px;
  text-transform: uppercase;
  box-shadow: 0 4px 28px rgba(212,245,60,0.4);
  transition: 0.2s all;
}
.hero__cta-btn:hover {
  background: #eeff55;
  box-shadow: 0 4px 40px rgba(212,245,60,0.65);
  transform: translateY(-2px);
}
.hero__login-hint { color: rgba(255,255,255,0.5); font-size: 13px; }
.hero__login-link { color: #d4f53c; text-decoration: underline; }

.hero__features {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  padding-top: 36px;
  margin-top: auto;
}
.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.hero__feature-diamond {
  position: relative;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__feature-diamond svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero__feature-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1;
}
.hero__feature-label {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero__inner {
    display: grid;
    grid-template-areas:
      "logo     cta"
      "promo    cta"
      "features cta";
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto auto auto;
    min-height: 100vh;
    padding: 44px 60px 44px;
    column-gap: 60px;
    row-gap: 0;
  }

  .hero__logo {
    grid-area: logo;
    align-self: start;
    margin-bottom: 0;
  }

  .hero__promo {
    grid-area: promo;
    align-self: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  .hero__cta-wrap {
    grid-area: cta;
    align-self: center;
    width: 280px;
    margin-bottom: 0;
    align-items: center;
  }
  .hero__cta-label { text-align: center; }
  .hero__cta-btn { width: 100%; }

  .hero__features {
    grid-area: features;
    align-self: end;
    padding-top: 28px;
    gap: 36px;
    flex-wrap: nowrap;
    justify-content: end;
  }
  .hero__feature { flex: 0 0 auto; min-width: 80px; }
  .hero__feature-diamond { width: 66px; height: 66px; }
  .hero__feature-icon { font-size: 22px; }
  .hero__feature-label { font-size: 10px; }
}

@media (min-width: 1024px) {
  .hero__inner {
    padding: 50px 80px;
    grid-template-columns: 1fr 35%;
    column-gap: 0px;
  }
  .hero__cta-wrap { width: 300px; }
}
.header {
  position: fixed;
  transform: translateY(-200px);
  transition: 0.2s all;
  width: 100%;
  z-index: 1000;
}
.header--active {
  position: fixed;
  transform: translateY(0px);
}
.header-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  background-color: #0f0f0f;
  width: 100%;
}

.btn {
  width: 100%;
  display: block;
  background: #c9f2f2;
  color: #000 !important;
  border: 1px solid #0f0f0f;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 1px 0px 3px 2px#4e4e4e84;
  transition: 0.2s all;
  min-width: 250px;
  text-align: center;
}
.btn:hover {
  background: #000;
  color: #c9f2f2 !important;
  border: 1px solid #c9f2f2;
  transform: translateY(-2px);
  box-shadow: 1px 0px 8px 3px#4e4e4e;
}
.btn--reg {
  background: #D4F53C;
  color: #000;
  border: 1px solid #D4F53C;
  box-shadow: 1px 0px 3px 2px#38573a8e;
}
.btn--reg:hover {
  background: #000;
  color: #D4F53C;
  border: 1px solid #000;
  box-shadow: 1px 0px 8px 3px#38573a;
}
.btn--login {
  background: #ffffff;
  color: #000;
  border: 1px solid #ffffff;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--login:hover {
  background: #000;
  color: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 1px 0px 8px 3px#ffffff;
}
.btn--invite {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--invite:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 1px 0px 8px 3px#fff;
}

.content {
  max-width: 900px;
  margin: 20px auto;
  padding: 1px 20px;
  /* background-color: #0f0f0f; */
  border-radius: 10px;
}

.content h1,
.content h2,
.content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 10px;
}
.content h4,
.content h5,
.content h6 {
  margin-bottom: 5px;
  margin-top: 15px;
  padding-bottom: 2px;
}
.content h1 {
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(35px, 5vw, 45px);
  color: #D4F53C;
  padding-bottom: 10px;
  border-bottom: 1px solid #D4F53C;
}
.content h2 {
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
}
.content h3 {
  font-size: clamp(20px, 5vw, 30px);
  line-height: clamp(25px, 5vw, 35px);
}
.content h4 {
  font-size: clamp(18px, 5vw, 25px);
  line-height: clamp(23px, 5vw, 30px);
}
.content h5 {
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(21px, 5vw, 25px);
}
.content h6 {
  font-size: clamp(16px, 5vw, 18px);
  line-height: clamp(21px, 5vw, 23px);
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #D4F53C;
  border-bottom: 1px solid #D4F53C;
}
.content p {
  margin-bottom: 15px;
  font-size: clamp(12px, 2vw, 16px);
  line-height: clamp(25px, 2vw, 30px);
}
.content a {
  color: #4a4cfa;
}
.content a:hover {
  color: #37399c;
}
.content ol,
.content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.content table {
  overflow-x: auto;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.content thead {
  color: #D4F53C;
}
.content thead,
.content tbody {
  width: 100%;
}
.content tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.content th {
  font-size: clamp(17px, 2vw, 22px);
  line-height: clamp(25px, 2vw, 30px);
}
.content td {
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(21px, 2vw, 25px);
}
.content thead tr {
  border-bottom: 1px solid #D4F53C;
}
.content tbody tr:nth-last-child(2n + 1) {
  background-color: #4e4e4e;
}
.content th,
.content td {
  min-width: 100px;
  padding: 10px;
}
.content img {
  width: 100%;
}
.сards {
  margin: 20px auto;
  max-width: 900px;
  padding: 1px 20px;
}
.cards__title {
  color: #D4F53C;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 20px;
}
.cards__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(150px, 1fr));
  grid-template-rows: repeat(6, minmax(100px, 1fr));
}
.cards__item {
  transition: 0.2s all;
  background: linear-gradient(90deg, #313392, #5052d6);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px;
  text-decoration: none;
}
.cards__item:hover {
  background: linear-gradient(180deg, #313392, #5052d6);
  scale: 1.01;
}
.cards__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
.cards__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.start {
  margin: 20px auto;
  max-width: 860px;
  padding: 40px 20px;
  background-color: #D4F53C;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 0;
}
.start__title {
  color: #fff;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 10px;
}
.start__description {
  font-weight: 600;
  max-width: 500px;
  text-align: center;
}
.footer {
  background-color: #0f0f0f;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__disclaimer,
.footer__text {
  max-width: 300px;
  font-size: 14px;
}
.footer__text {
  margin-bottom: 10px;
}
@media (min-width: 375px) {
  .cards__grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-template-rows: repeat(3, minmax(100px, 1fr));
  }
}
@media (min-width: 575px) {
  .btn {
    width: auto;
  }
  .hero__img {
    display: block;
  }
  .hero__img--mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .content thead,
  .content tbody {
    display: block;
  }
  .cards__grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-template-rows: repeat(2, minmax(100px, 1fr));
  }
}
@media (min-width: 860px) {
  .start {
    border-radius: 10px;
    margin-bottom: 20px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 20px;
}
.footer__nav a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-decoration: none;
}
.footer__nav a:hover {
  color: #fff;
}