.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 10px 16px;
  background: rgba(7, 20, 33, 0.94);
  border-top: 1px solid rgba(1, 164, 128, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.28);
}

.sticky-cta__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr 1fr 190px;
  gap: 12px;
  align-items: center;
}

.sticky-cta__logo {
  font-size: 16px;
  font-weight: 950;
  color: #fff;
}

.sticky-cta__logo img {
  max-width: 108px;
  max-height: 32px;
  display: block;
  margin: 0;
  border-radius: 0;
}

.sticky-cta__bonus,
.sticky-cta__code {
  display: grid;
  gap: 3px;
  padding: 9px 13px;
  border: 1px solid rgba(1, 164, 128, 0.14);
  border-radius: 12px;
  background: rgba(11, 29, 46, 0.58);
}

.sticky-cta__bonus span,
.sticky-cta__code span {
  color: rgba(245, 248, 255, 0.55);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sticky-cta__bonus strong,
.sticky-cta__code strong {
  color: #f5f8ff;
  font-size: 14px;
  font-weight: 900;
}

.sticky-cta__code strong {
  color: var(--accent-2);
}

.sticky-cta__button {
  min-height: 46px;
  border-radius: 13px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff !important;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(1, 164, 128, 0.18);
}

.sticky-cta__code {
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}

.sticky-cta__copy-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;

  transition: 0.25s;
}

.sticky-cta__code:hover .sticky-cta__copy-icon {
  color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.sticky-cta__code.is-copied {
  background: rgba(1, 164, 128, 0.12);
  border-color: rgba(1, 164, 128, 0.55);

  box-shadow: 0 0 18px rgba(1, 164, 128, 0.12);
}

.sticky-cta__code.is-copied .sticky-cta__copy-icon {
  color: var(--accent);
  transform: translateY(-50%) scale(1.2);
}

@media (max-width: 768px) {
  .sticky-cta__inner {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta__logo {
    display: none;
  }

  .sticky-cta__button {
    grid-column: 1 / -1;
  }

  .scroll-top {
    width: 46px;
    height: 46px;

    right: 14px;
    bottom: 130px;
  }
}
