/* Tema: Forest — organik yeşil */
.theme-forest .bgr-bg-layer::before {
  background:
    radial-gradient(ellipse 85% 60% at 30% -20%, color-mix(in srgb, var(--bgr-primary) 30%, transparent), transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 70%, color-mix(in srgb, var(--bgr-secondary) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 90%, rgba(6, 78, 59, 0.4), transparent 50%);
  animation: bgr-forest-sway 26s ease-in-out infinite alternate;
}
@keyframes bgr-forest-sway {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-1%, 1.5%); }
}
.theme-forest .bgr-float-orb:nth-child(1) { animation-duration: 17s; }
.theme-forest .bgr-float-orb:nth-child(2) { animation-duration: 19s; animation-delay: -7s; }
.theme-forest .bgr-hero-img { animation-duration: 28s; }
