.ReleaseAnnouncement {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(110deg, #205fc2 0%, #2979f0 52%, #7657db 100%);
}

.ReleaseAnnouncement::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% -160%, rgba(255, 255, 255, 0.38), transparent 45%);
  content: "";
  pointer-events: none;
}

.ReleaseAnnouncement .container {
  position: relative;
  z-index: 1;
}

.release-announcement__inner {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.release-announcement__message {
  color: #fff;
}

.release-announcement__message strong {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}

@media (max-width: 425px) {
  .release-announcement__inner {
    min-height: 48px;
    font-size: 13px;
  }
}

.sale-price__current {
  display: block;
}

.sale-price__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.sale-price__discount {
  padding: 0 6px;
  border-radius: 4px;
  color: #fff;
  background: #2979f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sale-price__original {
  color: var(--sub);
  text-decoration-thickness: 1px;
}

#tabs .content .block {
  display: flex;
}

#tabs .content .block > .border {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
}

#tabs .content .block > .border > .main {
  flex: 1 1 auto;
}

.static-site-notice {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 24px;
  width: min(520px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  background: #202635;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  font: 14px/1.45 Arial, sans-serif;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.static-site-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
