* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  border: none;
  outline: none;
  box-shadow: none;
}

body {
  background: #0e121e;
}

#landing {
  background-color: #000;
  background: url(bg-desk.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.character {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
}

.character-mob {
  display: none;
}

@media (max-width: 1600px) {
  .character {
    width: 420px;
  }
}

.offer {
  width: 696px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}

.logos {
  display: flex;
  gap: 12px;
}

.logos-item {
  width: calc(50% - 6px);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #172435;
  border-radius: 16px;
}

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 296px;
  background: url(banner-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 16px;
}

.banner-content {
  padding-top: 24px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.percent {
  font-size: 116px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-family: "Commissioner", sans-serif;
  position: relative;
}

.star {
  position: absolute;
}

.star1 {
  bottom: -45px;
  left: -30px;
  transform-origin: center center;
  animation: twinkle1 3s ease-in-out infinite;
}

.star2 {
  top: -35px;
  right: -30px;
  animation: twinkle2 4s ease-in-out infinite;
}

@keyframes twinkle1 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes twinkle2 {
  0%,
  100% {
    opacity: 1;
  }
  60% {
    opacity: 0.3;
  }
}

.subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #b5bbc6;
  line-height: 1;
  font-family: "Commissioner", sans-serif;
}

.text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #b5bbc6;
  padding-top: 4px;
}

.promocode {
  display: flex;
  width: 92%;
  background: #090c12;
  border-radius: 16px;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 24px;
}

.promocode-content {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 4px;
}

.promo-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #172435;
  border-radius: 6px;
  width: 28px;
  height: 28px;
}

.promo-icon-img {
  flex-shrink: 0;
}

.promocode-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promocode-title {
  font-size: 12px;
  color: #556983;
  font-weight: 400;
}

.promocode-code {
  font-size: 16px;
  font-weight: 800;
  color: #b5bbc6;
  font-family: "Commissioner", sans-serif;
}

/* ── Copy button + Copied toast ── */

.copy-btn {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  background: #ffc300;
  border-radius: 8px;
  padding: 10px 0;
  width: 99px;
  cursor: pointer;
  position: relative;
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.2) inset;
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.copy-btn .copy-icon,
.copy-btn .btn-text {
  transition: opacity 0.25s ease;
}

.copy-btn:hover {
  background: #ffd140;
  transform: translateY(-1px);
  box-shadow:
    0px -2px 0px 0px rgba(0, 0, 0, 0.2) inset,
    0px 2px 8px 0px rgba(255, 195, 0, 0.35);
}

.copy-btn:active {
  transform: translateY(1px);
  background: #f0b800;
  box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.2) inset;
}

.copy-btn.copied {
  background: #2ecc71;
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.15) inset;
}

.copied-toast {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.copied-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.btn-text {
  font-size: 12px;
  font-weight: 700;
  color: #0d131c;
}

.coin {
  position: absolute;
  bottom: 0;
  right: 180px;
  pointer-events: none;
  width: 60px;
}

/* ── Main CTA button ── */

.button {
  height: 64px;
  border-radius: 44px;
  background: #ffc300;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.5s ease,
    height 0.5s ease;
}

.button:hover {
  background: #ffd140;
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(255, 195, 0, 0.4),
    0 2px 8px rgba(255, 195, 0, 0.25);
}

.button:hover::before {
  width: 300px;
  height: 300px;
}

.button:active {
  transform: translateY(1px);
  background: #f0b800;
  box-shadow: 0 1px 4px rgba(255, 195, 0, 0.2);
  transition:
    background 0.1s ease,
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

.button-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #0d131c;
  position: relative;
  z-index: 1;
}

.btn-coin {
  position: absolute;
  mix-blend-mode: multiply;
}

.btn-coin-1 {
  left: 54px;
  height: 100%;
  width: auto;
}

.btn-coin-2 {
  top: 0;
  right: 74px;
  width: 40px;
}

.steps {
  display: flex;
  gap: 12px;
}

.step {
  width: calc((100% - 24px) / 3);
  height: 64px;
  border-radius: 16px;
  background: #090c12;
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid #172435;
}

.step-number {
  width: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #172435;
  height: 100%;
  border-radius: 16px 0 0 16px;
  flex-shrink: 0;
}

.step-number-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  font-family: "Commissioner", sans-serif;
  color: #556983;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: "Commissioner", sans-serif;
  color: #b5bbc6;
}

.step-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #556983;
}

@media (max-width: 1024px) {
  #landing {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    align-items: flex-start;
    padding-top: 24px;
  }

  .character {
    display: none;
  }

  .character-mob {
    display: block;
    position: absolute;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  #landing {
    background: url(bg-mob.webp);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    align-items: flex-start;
    padding-top: 24px;
  }

  .character {
    display: none;
  }

  .character-mob {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 270px;
  }

  .offer {
    width: 90%;
    gap: 16px;
  }

  .logos-item {
    height: 50px;
    border-radius: 12px;
  }

  .logo {
    height: 16px;
    width: auto;
  }

  .banner {
    height: 257px;
    border-radius: 12px;
  }

  .percent {
    font-size: 86px;
  }

  .star1 {
    left: -35px;
  }

  .star2 {
    top: -40px;
    right: -35px;
  }

  .subtitle {
    font-size: 24px;
  }

  .text {
    font-size: 14px;
  }

  .promocode {
    border-radius: 16px;
    width: 85%;
  }

  .button {
    height: 52px;
  }

  .button-text {
    font-size: 20px;
  }

  .btn-coin-1 {
    left: 5px;
  }

  .btn-coin-2 {
    right: 40px;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    height: 56px;
    border-radius: 12px;
    width: 100%;
  }

  .step-number {
    width: 44px;
    border-radius: 12px 0 0 12px;
  }

  .step-number-text {
    font-size: 16px;
  }

  .step-title {
    font-size: 14px;
  }

  .step-desc {
    font-size: 11px;
  }

  .coin {
    right: 120px;
    width: 50px;
  }
}

@media (max-width: 375px) {
  .character-mob {
    display: none;
  }
}
