/* ---------- ПРИОРИТЕТ СЛОЁВ ---------- */

/* 1. ХЕДЕР — самый верхний слой */
.t228,             /* если хедер — блок T228 */
.tmenu,            /* если меню */
header,            /* общий селектор */
.site-header {     /* если у тебя кастомный хедер */
  position: relative;
  z-index: 50 !important;  /* всегда выше контента и эффекта */
}

/* 2. КОНТЕНТ — выше сферы, ниже хедера */
.t-body,
.t-records,
#allrecords {
  position: relative;
  z-index: 20 !important;
}

/* 3. СФЕРА — под контентом, над фоном */
.nolim-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1 !important;  /* между фоном и контентом */
  overflow: hidden;
}

/* ---------- ЭФФЕКТ ---------- */

.nolim208-934238899 {
  position: absolute;
  left: 0;
  top: 0;
  height: 70vmin;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #FFF28F, #FFEC5C);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  will-change: transform, opacity;
}

.nolimBlur-934238899 {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(7vmax);
  backdrop-filter: blur(7vmax);
  opacity: 0;
  transition: opacity 0.3s;
}

/* Мобильные — отключаем */
@media (max-width: 979px) {
  .nolim-layer,
  .nolim208-934238899,
  .nolimBlur-934238899 {
    display: none !important;
  }
}
