body, #allrecords {
  background-color: #0a0908 !important;
}
body, #allrecords {
  background-color: #0a0908 !important;
}

/* ===== −20%: типографика + glow (pm-offers) ===== */
/* Тексты и кнопку не трогаем. Перебивает плоский color у .pm-offers__pct */

.pm-offers__main-num {
  position: relative;
  isolation: isolate;
}

/* Свечение за цифрой */
.pm-offers__main-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 140%;
  height: 140%;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 150, 106, 0.28) 0%,
    rgba(201, 150, 106, 0.1) 38%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

/* Цифра −20% */
.pm-offers__pct {
  position: relative;
  z-index: 1;
  margin: 2px 0 0;
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;

  background: linear-gradient(
    165deg,
    #e8c4a0 0%,
    var(--pmo-accent, #d4a574) 42%,
    #b8895a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 8px 24px rgba(201, 150, 106, 0.25));
}

/* Подпись «на первый сеанс» поверх glow */
.pm-offers__pct-small {
  position: relative;
  z-index: 1;
}

/* На телефоне подпись под цифрой скрыта — как у вас */
@media (max-width: 899px) {
  .pm-offers__card--main .pm-offers__pct-small {
    display: none;
  }
}