

/* Start:/local/templates/main/template_styles.css?17665051472070*/
/* =========================
   🎄 NEW YEAR MODE
   Snow (variant 2) + Tree
   ========================= */

/* ❄️ СНЕГ — ВАРИАНТ 2 (ЗАМЕТНЕЕ, ПЛАВНЫЙ) */
html::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;

  /* крупнее и контрастнее */
  background-image:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1.3px, transparent 2.6px),
    radial-gradient(circle, rgba(255,255,255,.75) 0 1.1px, transparent 2.4px),
    radial-gradient(circle, rgba(255,255,255,.55) 0 0.9px, transparent 2.2px);

  background-size: 90px 90px, 140px 140px, 210px 210px;
  background-position: 0 0, 40px 60px, 90px 120px;

  animation: nySnow 12s linear infinite;
  opacity: .85;

  filter: drop-shadow(0 0 1px rgba(255,255,255,.35));
}

@keyframes nySnow{
  from { transform: translateY(-70px) translateX(0); }
  to   { transform: translateY(320px) translateX(18px); }
}

/* 🎄 ЁЛОЧКА — ЛЕВЫЙ НИЖНИЙ УГОЛ */
.ny-tree-badge{
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 997;

  pointer-events: none; /* клики проходят */

  padding: 12px 14px;
  border-radius: 18px;

  background: rgba(0,0,0,.55);
  color: #fff;

  backdrop-filter: blur(8px);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);

  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .2px;
}

.ny-tree-badge span{
  font-size: 22px;
  line-height: 1;
}

.ny-tree-badge small{
  display: block;
  font-size: 12px;
  opacity: .9;
  font-weight: 500;
}

/* 📱 Мобилки — чуть тише */
@media (max-width: 768px){
  html::after{
    opacity: .65;
    animation-duration: 16s;
  }

  .ny-tree-badge{
    left: 8px;
    bottom: 10px;
    transform: scale(.92);
  }
}

/* ♿ Уважение prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  html::after{
    animation: none;
    opacity: .4;
  }
}

/* End */
/* /local/templates/main/template_styles.css?17665051472070 */
