.bjutip-launch-notice {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 9997;
  width: min(390px, calc(100vw - 32px));
  padding: 22px 22px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 244, 0.96));
  color: #171717;
  border: 1px solid rgba(20, 20, 20, 0.09);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14), 0 8px 22px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 16px, 0);
  transition: opacity 420ms cubic-bezier(0.23, 1, 0.32, 1), transform 420ms cubic-bezier(0.23, 1, 0.32, 1), visibility 420ms;
}

.bjutip-launch-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 146, 91, 0.42), transparent);
}

.bjutip-launch-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.bjutip-launch-notice.is-hiding {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 12px, 0);
}

.bjutip-launch-notice__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: #171717;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.bjutip-launch-notice__close:hover,
.bjutip-launch-notice__close:focus {
  background: rgba(0, 0, 0, 0.045);
  border-color: rgba(20, 20, 20, 0.13);
  transform: translateY(-1px);
  outline: none;
}

.bjutip-launch-notice__title {
  margin: 0 42px 10px 0;
  color: #101010;
  font-family: inherit;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.bjutip-launch-notice__message {
  margin: 0;
  color: rgba(23, 23, 23, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.58;
}

.bjutip-launch-notice__message p {
  margin: 0 0 8px;
}

.bjutip-launch-notice__message p:last-child {
  margin-bottom: 0;
}

.bjutip-launch-notice__message a {
  color: #111;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bjutip-launch-notice__message a:hover,
.bjutip-launch-notice__message a:focus {
  color: #6f5f44;
}

.bjutip-launch-notice__action.btn {
  margin-top: 16px;
  min-height: 38px;
  padding-right: 18px;
  padding-left: 18px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .bjutip-launch-notice {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 20px 18px 18px;
  }

  .bjutip-launch-notice__title {
    font-size: 20px;
  }

  .bjutip-launch-notice__message {
    font-size: 12.5px;
  }
}
