/* sahne, ağaç ve üstünde kıpırdayan ne varsa */

/* sahne */
.stage {
  position: absolute;
  left: 50%;
  top: 0;
  /* width/height layout.js'ten geliyor */
  transform-origin: top center;
  transform: translateX(-50%) scale(0.6); /* main.js gerçek ölçeği yazıyor */
}

.stage-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

/* süsler domda düğümlerden SONRA duruyor ki tab önce ağaca gelsin
   z-index onları geri yerine koyuyor
   süs > çizgi > düğüm */
.deco { position: absolute; inset: 0; pointer-events: none; transition: opacity 0.45s ease; z-index: var(--z-deco); }
.stage-svg { z-index: 2; }

/* üç derinlik katmanı
   atmosphere.js .stage üstüne --par-x/--par-y ve --gust yazıyor
   dünya kayıyor ağaç duruyor */
.deco-sky {
  transform: translate(calc(var(--par-x, 0) * -14px + var(--gust, 0) * -10px), calc(var(--par-y, 0) * -7px));
}
.deco-hills {
  transform: translate(calc(var(--par-x, 0) * -7px), calc(var(--par-y, 0) * -3px));
}
.deco-motes {
  transform: translate(calc(var(--par-x, 0) * 10px + var(--gust, 0) * 14px), calc(var(--par-y, 0) * 5px));
}
/* sadece atmosphere.js'in gerçekten çalıştığı yerde promote et, aynı koşul
   başka yerde will-change en az hafızası olan cihazlarda sahne boyunda
   gpu texture tutuyor, gereksiz */
@media (pointer: fine) and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .deco-sky, .deco-hills, .deco-motes { will-change: transform; }
}

/* güneşin kendisi tema düğmesi */
.sun-toggle {
  position: absolute;
  top: 30px;
  right: 90px;
  width: 130px;
  height: 130px;
  padding: 0;
  border: none;
  background: none;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.25s var(--pop);
}
.sun-toggle:hover { transform: scale(1.07) rotate(4deg); }
.sun-toggle .sun,
.sun-toggle .moon {
  position: absolute;
  inset: 0;
  transition: opacity 0.55s ease, transform 0.8s var(--smooth);
}
.sun-toggle svg { width: 100%; height: auto; }
.sun-toggle .moon { opacity: 0; transform: translateY(28px) rotate(-40deg); }
[data-theme="night"] .sun-toggle .sun { opacity: 0; transform: translateY(32px) rotate(50deg); }
[data-theme="night"] .sun-toggle .moon { opacity: 1; transform: none; }
.sun-rays {
  transform-origin: 60px 60px;
  animation: sun-spin 60s linear infinite;
}
[data-theme="night"] .sun-toggle .sun-rays { animation-play-state: paused; }
@keyframes sun-spin { to { transform: rotate(360deg); } }

/* yıldızlar, sadece gece uyanık */
.stars {
  position: absolute;
  inset: 0 0 45% 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.stars svg { width: 100%; height: 100%; }
.star-tw1, .star-tw2 {
  transform-box: fill-box;
  transform-origin: center;
  animation: star-twinkle 3.6s ease-in-out infinite alternate;
  animation-play-state: paused; /* görünmüyorken dönmesin */
}
.star-tw2 { animation-duration: 4.4s; animation-delay: 1.2s; }
[data-theme="night"] .stars { opacity: 1; }
[data-theme="night"] .star-tw1,
[data-theme="night"] .star-tw2 { animation-play-state: running; }
/* sadece opacity
   svg child transformları bazı tarayıcılarda compositordan düşüyor
   ve bunlardan 12 tane gece boyu dönüyor */
@keyframes star-twinkle {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.cloud {
  position: absolute;
  width: 170px;
  height: 54px;
  background: var(--cloud);
  border: var(--outline);
  border-radius: 60px;
  box-shadow: 3px 4px 0 rgba(43, 33, 25, 0.12);
  opacity: 0.9;
  transition: background-color 0.5s ease;
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border: inherit;
  border-radius: 50%;
}
.cloud::before { width: 62px; height: 62px; top: -30px; left: 28px; }
.cloud::after { width: 46px; height: 46px; top: -20px; left: 84px; }
.cloud-1 { top: 130px; left: 140px; animation: cloud-drift 80s ease-in-out infinite alternate; }
.cloud-2 { top: 60px; left: 62%; transform: scale(0.72); animation: cloud-drift 65s ease-in-out infinite alternate-reverse; }
@keyframes cloud-drift {
  from { translate: 0 0; }
  to { translate: 160px 12px; }
}

/* buluta bas açılsın. damlalar bulutun içinde duruyor
   böylece yağmur bulutla beraber kayıyor */
button.cloud { pointer-events: auto; cursor: pointer; }
button.cloud:hover { filter: brightness(1.04); }
html.raining .cloud { filter: brightness(0.94) saturate(0.85); }
.cloud .rain {
  position: absolute;
  top: calc(100% + 4px);
  left: 8%;
  right: 8%;
  height: var(--fall, 300px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
/* her buluta ayrı düşme mesafesi, bitler tepelere ulaşsın */
.cloud-1 { --fall: 580px; }
.cloud-2 { --fall: 850px; } /* bu bulut 0.72 ölçekli ve daha yukarda */
/* yukardaki bulutun bitleri uzun mesafede çizgiye dönüşüyordu
   !important çünkü her damlanın süresi inline yazılı */
html.raining .cloud-2 .drop { animation-duration: 2.3s !important; }
/* bit yağıyor, minik 0 ve 1 ler */
.cloud .drop {
  position: absolute;
  top: -16px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  color: var(--rain);
  opacity: 0;
}
html.raining .cloud .rain { opacity: 1; }
html.raining .cloud .drop { animation: drop-fall 1.55s linear infinite; }
/* görünürlük de binary, bitlere yakışıyor */
@keyframes drop-fall {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(var(--fall, 300px)); opacity: 1; }
}

/* düştükleri yerde birikinti oluyor */
.cloud .puddle {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -5px;
  height: 12px;
  border-radius: 50%;
  background: var(--rain);
  border: 2px solid var(--ink);
  opacity: 0;
  transform: scaleX(0.15);
  transition: opacity 0.6s ease, transform 1.6s var(--smooth);
}
html.raining .cloud .puddle {
  opacity: 0.75;
  transform: scaleX(1);
  /* ilk bitler düşene kadar bekliyor */
  transition-delay: 1.2s;
}
/* telefondaki minik gökyüzünün altında zemin yok, orda birikinti de yok */
.vine-cloud .puddle { display: none; }
.vine-cloud { --fall: 300px; }

.hill {
  position: absolute;
  border: var(--outline);
  border-radius: 50%;
  transition: background-color 0.5s ease;
}
.hill-back {
  width: 2000px; height: 560px;
  left: -220px; bottom: -400px;
  background: var(--hill-1);
}
.hill-front {
  width: 1700px; height: 480px;
  left: 120px; bottom: -360px;
  background: var(--hill-2);
}

.pollen {
  position: absolute;
  top: 68%;
  width: 9px; height: 9px;
  background: var(--honey);
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: 0;
  animation: pollen-float 13s linear infinite;
}
.pollen-2 { animation-delay: 2s; }
.pollen-3 { animation-delay: 4.5s; }
.pollen-4 { animation-delay: 7s; }
.pollen-5 { animation-delay: 9.5s; }
.pollen-6 { animation-delay: 11s; }
@keyframes pollen-float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.85; }
  60% { opacity: 0.85; }
  100% { transform: translateY(-420px) translateX(60px); opacity: 0; }
}

/* gece polenler ateşböceğine dönüyor
   aynı altı eleman, başka bi döngü. parlama gerçek ışık, gölge değil */
[data-theme="night"] .pollen {
  background: #FFE9A3;
  border-color: rgba(43, 33, 25, 0.85);
  box-shadow: 0 0 10px 3px rgba(255, 226, 130, 0.5);
  animation: firefly-wander 16s ease-in-out infinite;
}
[data-theme="night"] .pollen-2 { animation-delay: 2.7s; }
[data-theme="night"] .pollen-3 { animation-delay: 5.2s; }
[data-theme="night"] .pollen-4 { animation-delay: 8.1s; }
[data-theme="night"] .pollen-5 { animation-delay: 10.6s; }
[data-theme="night"] .pollen-6 { animation-delay: 13.4s; }
@keyframes firefly-wander {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.95; }
  25% { transform: translate(56px, -48px); opacity: 0.3; }
  40% { transform: translate(10px, -86px); opacity: 0.95; }
  55% { transform: translate(-34px, -120px); opacity: 0.25; }
  70% { transform: translate(24px, -70px); opacity: 0.9; }
  85% { transform: translate(52px, -30px); opacity: 0.3; }
  100% { transform: translate(0, 0); opacity: 0; }
}

/* düşen yapraklar, atmosphere.js üretiyor ve sayıyı düşük tutuyor */
.leaf-fall {
  position: absolute;
  width: 26px;
  pointer-events: none;
  z-index: 4; /* çizgilerin üstünde düğümlerin altında */
  will-change: transform, opacity;
}
.leaf-fall svg { width: 100%; height: auto; }

/* svg çizgileri */
.trunk-path {
  fill: none;
  stroke: var(--trunk);
  stroke-width: 30;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.7s ease-out;
}
.branch-path {
  fill: none;
  stroke: var(--trunk);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.5s ease-out;
  transition-delay: calc(0.55s + var(--bi, 0) * 0.1s);
}
.stage.grown .trunk-path { stroke-dashoffset: 0; }
.stage.grown .branch-path { stroke-dashoffset: 0; }

.leaf-path {
  fill: none;
  stroke: var(--trunk-dark);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.22s ease-out;
  transition-delay: 0s;
  opacity: 0.9;
}
.edge-group.open .leaf-path {
  stroke-dashoffset: 0;
  transition-delay: calc(var(--i, 0) * 0.04s);
}

/* düğümler, ortak kısımlar */
.node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  color: var(--ink); /* sticker yazısı gece gündüz aynı */
  border: var(--outline);
  background: var(--white);
  box-shadow: var(--sticker-shadow);
  transform: translate(-50%, -50%) rotate(var(--tilt, 0deg)) scale(var(--sc, 1));
  transition: transform 0.24s var(--pop), --sc 0.24s var(--pop), opacity 0.2s ease, box-shadow 0.2s ease;
  z-index: var(--z-node);
}
.node-icon { width: 24px; height: 24px; flex: none; color: var(--accent, var(--ink)); }
.node-label { white-space: nowrap; }

/* ilk büyümede zıplayarak geliyorlar */
.stage:not(.grown) .node.root,
.stage:not(.grown) .node.branch { --sc: 0; }
.node.root { transition-delay: 0.15s; }
.node.branch { transition-delay: calc(0.7s + var(--bi, 0) * 0.1s); }
.stage.grown .node.root, .stage.grown .node.branch { transition-delay: 0s; }

/* kök düğüm */
.node.root {
  flex-direction: column;
  gap: 0;
  width: 120px;
  height: 120px;
  padding: 4px;
  border-radius: 47% 53% 50% 50% / 52% 48% 55% 45%;
  background: var(--white);
  z-index: var(--z-friend);
}
.node.root svg { width: 92px; height: 92px; }
.root-photo {
  position: absolute;
  top: 5px;
  left: 50%;
  translate: -50% 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ink);
  background: var(--white);
  z-index: 1;
}
.root-label {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: -6px;
}
.node.root:hover { --sc: 1.07; }

/* dallar */
.node.branch {
  flex-direction: column;
  gap: 3px;
  padding: 14px 22px 12px;
  font-weight: 800;
  font-size: 1.06rem;
  border-radius: 40px 46px 38px 48px / 44px 38px 48px 40px;
  background: var(--accent-soft, var(--white));
  cursor: pointer;
}
.node.branch .node-icon { width: 30px; height: 30px; }
.node.branch .node-count {
  position: absolute;
  top: -9px;
  right: -7px;
}
.node.branch:hover, .node.branch.open { --sc: 1.1; }
/* basınca anında tepki */
.node.branch:active, .node.leaf:active, .node.root:active {
  transition-duration: 0.06s;
  --sc: 1.0;
}
.node.branch.open {
  box-shadow: 6px 6px 0 rgba(43, 33, 25, 0.22);
}
.node.branch.dim {
  opacity: 0.7; /* 0.45'ti, yazılar 4.5:1'in altına düşüyordu */
  --sc: 0.9;
}
.node-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  padding: 0 4px;
}

/* yapraklar */
.node.leaf {
  padding: 9px 14px;
  font-weight: 700;
  font-size: 0.94rem;
  border-radius: 22px 27px 20px 29px / 26px 20px 29px 22px;
  background: var(--white);
  border-color: var(--ink);
  visibility: hidden;
  opacity: 0;
  --sc: 0;
  will-change: transform, opacity;
  transition:
    transform 0.26s var(--pop),
    --sc 0.26s var(--pop),
    opacity 0.18s ease,
    visibility 0s linear 0.3s,
    box-shadow 0.2s ease;
  z-index: var(--z-leaf);
}
.leaf-group.open .node.leaf {
  visibility: visible;
  opacity: 1;
  --sc: 1;
  transition:
    transform 0.26s var(--pop) calc(var(--i, 0) * 0.04s),
    --sc 0.26s var(--pop) calc(var(--i, 0) * 0.04s),
    opacity 0.18s ease calc(var(--i, 0) * 0.04s),
    visibility 0s linear 0s,
    box-shadow 0.2s ease;
}
.leaf-icon { width: 19px; height: 19px; }
/* flagship meyveler gerçek logoyu takıyor */
.leaf-mark { width: 20px; height: 20px; flex: none; border-radius: 6px; border: 1.5px solid var(--ink); object-fit: contain; background: var(--white); }

/* kartı açık olan yaprak perdenin arkasında yanık kalıyor */
.node.leaf.is-open { border-color: var(--accent, var(--ink)); background: var(--accent-soft, var(--white)); }
/* bu oturumda okunduysa köşede minik bi nokta */
.node.leaf.visited::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent, var(--ink));
  border: 2px solid var(--ink);
}
.node.leaf:hover { --sc: 1.1; z-index: var(--z-leaf-hover); }

/* dal açıldıktan sonra hafif sallanma, zıplama bitince başlıyor
   --sway --gust ile büyüyor, rüzgar gelince bütün taç sallanıyor */
@keyframes leaf-sway {
  from { transform: translate(-50%, -50%) rotate(calc(var(--tilt, 0deg) - var(--sway, 2deg))) scale(var(--sc, 1)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--tilt, 0deg) + var(--sway, 2deg) * 1.2)) scale(var(--sc, 1)); }
}
.leaf-group.open .node.leaf {
  --sway: calc(2deg + var(--gust, 0) * 5deg);
  animation: leaf-sway 3.8s ease-in-out calc(0.7s + var(--i, 0) * 0.35s) infinite alternate;
}

/* altın meyve yapraklar */
.node.leaf.flagship {
  --sc: 0;
  font-weight: 800;
  font-size: 1.02rem;
  background: #FDE7B8;
  border-width: 3.5px;
  box-shadow: 5px 5px 0 rgba(43, 33, 25, 0.24);
}
.leaf-group.open .node.leaf.flagship { --sc: 1.22; }
.leaf-group.open .node.leaf.flagship:hover { --sc: 1.32; }
.leaf-star {
  position: absolute;
  top: -14px;
  right: -10px;
  font-size: 1.25rem;
  color: var(--gold);
  text-shadow: 1.5px 1.5px 0 var(--ink);
  transform: rotate(12deg);
}

/* sadece konumlandırma kabuğu */
.leaf-group { position: absolute; inset: 0; pointer-events: none; }
.leaf-group .node { pointer-events: auto; }

/* arı */
.bee-orbit {
  position: absolute;
  width: 0; height: 0;
  animation: bee-x 7.5s ease-in-out infinite alternate;
  z-index: var(--z-bee);
  pointer-events: none;
}
.bee {
  position: absolute;
  width: 56px;
  animation: bee-y 4.7s ease-in-out infinite alternate;
}
.bee svg { width: 100%; height: auto; }
.bee-wing {
  transform-origin: 28px 16px;
  animation: bee-flap 0.14s linear infinite alternate;
}
.bee-wing-r { animation-delay: 0.07s; }
@keyframes bee-x { from { translate: -110px 0; } to { translate: 110px 0; } }
@keyframes bee-y { from { translate: 0 -46px; } to { translate: 0 40px; } }
@keyframes bee-flap { from { transform: scaleY(1); } to { transform: scaleY(0.4); } }

/* arkadaşımız Experience dalı açılınca oraya konuyor */
.bee-orbit, .bee { transition: translate 0.9s var(--smooth); }
.stage[data-open="experience"] .bee-orbit { animation: none; translate: 24px 64px; }
.stage[data-open="experience"] .bee { animation: none; translate: 0 0; }

/* arılar gece uyuyor, nöbeti ateşböcekleri devralıyor */
[data-theme="night"] .bee-orbit { display: none; }

/* Ateş */
.dog {
  position: absolute;
  width: 96px;
  transform: translate(-50%, -100%);
  z-index: var(--z-friend);
  border: none;
  background: none;
  padding: 0;
}
.dog svg { width: 100%; height: auto; }
.dog-tail {
  transform-origin: 12px 50px;
  animation: dog-wag 6s ease-in-out infinite;
}
@keyframes dog-wag {
  0%, 78%, 100% { transform: rotate(0deg); }
  81% { transform: rotate(-24deg); }
  84% { transform: rotate(10deg); }
  87% { transform: rotate(-24deg); }
  90% { transform: rotate(10deg); }
  93% { transform: rotate(0deg); }
}
.dog-eye { transform-origin: center; animation: dog-blink 5.5s linear infinite; }
@keyframes dog-blink {
  0%, 91%, 100% { transform: scaleY(1); }
  93%, 95% { transform: scaleY(0.08); }
}

/* gece uyuyor */
[data-theme="night"] .dog-eye { animation: none; transform: scaleY(0.1); }
[data-theme="night"] .dog-tail { animation: none; }
[data-theme="night"] .dog::before {
  content: "z z";
  position: absolute;
  top: -4px;
  right: -10px;
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--page-text-soft);
  animation: zzz-float 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes zzz-float {
  0% { opacity: 0; translate: 0 0; }
  30% { opacity: 0.9; }
  100% { opacity: 0; translate: 9px -20px; }
}
[data-theme="night"] .dog .dog-bubble { font-size: 0; }
[data-theme="night"] .dog .dog-bubble::after { content: "zzz… (still hire my human)"; font-size: 1rem; }
.dog.barking svg { animation: dog-hop 0.5s var(--pop); }
@keyframes dog-hop {
  0%, 100% { translate: 0 0; }
  40% { translate: 0 -14px; }
}
.dog-bubble {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 16px 18px 17px 15px / 15px 17px 16px 18px;
  padding: 5px 12px;
  box-shadow: 3px 3px 0 rgba(43, 33, 25, 0.16);
  opacity: 0;
  scale: 0.6;
  transform-origin: bottom center;
  transition: opacity 0.2s ease, scale 0.25s var(--pop);
  pointer-events: none;
}
.dog:hover .dog-bubble,
.dog:focus-visible .dog-bubble,
.dog.barking .dog-bubble { opacity: 1; scale: 1; }

/* robot arkadaş */
.robot {
  position: absolute;
  width: 118px;
  transform: translate(-50%, -100%);
  z-index: var(--z-friend);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.robot svg { width: 100%; height: auto; overflow: visible; }
.robot-figure {
  transform: translateY(30px);
  transition: transform 0.3s var(--pop);
}
.robot:hover .robot-figure,
.robot:focus-visible .robot-figure,
.robot.cheering .robot-figure { transform: translateY(0); }
.robot.cheering .robot-figure { animation: robot-hop 0.55s var(--pop); }
@keyframes robot-hop {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-16px); }
}
.robot-bubble {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 16px 18px 17px 15px / 15px 17px 16px 18px;
  padding: 5px 12px;
  box-shadow: 3px 3px 0 rgba(43, 33, 25, 0.16);
  opacity: 0;
  scale: 0.6;
  transform-origin: bottom center;
  transition: opacity 0.2s ease, scale 0.25s var(--pop);
  pointer-events: none;
}
.robot:hover .robot-bubble,
.robot:focus-visible .robot-bubble,
.robot.cheering .robot-bubble { opacity: 1; scale: 1; }

/* gözleri gece parlıyor, sonuçta robot */
[data-theme="night"] .robot-eye { fill: #7FF7E0; }
[data-theme="night"] .robot-antenna {
  fill: #FFD166;
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.9));
}

/* dal sabitlendiyse dünya geri çekiliyor, açık taç okunsun
   panel açıksa bütün fon animasyonları duruyor */
.stage:not([data-open=""]) .deco { opacity: 0.55; }
.stage:not([data-open=""]) .deco * { animation-play-state: paused; }
body.panel-open .deco *,
body.panel-open .bee-orbit,
body.panel-open .bee,
body.panel-open .bee-wing,
body.panel-open .dog-tail,
body.panel-open .dog-eye,
body.panel-open .dog::before,
body.panel-open .leaf-group.open .node.leaf { animation-play-state: paused; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sun-rays, .cloud-1, .cloud-2, .pollen,
  .bee-orbit, .bee, .bee-wing,
  .dog-tail, .dog-eye, .robot.cheering .robot-figure,
  .leaf-group.open .node.leaf,
  .star-tw1, .star-tw2,
  [data-theme="night"] .pollen,
  [data-theme="night"] .dog::before { animation: none; }
  .pollen { opacity: 0.5; }
  [data-theme="night"] .pollen { opacity: 0.6; }
  /* animasyonsuz yağmur sabit çizgiler oluyor, gizle gitsin */
  html.raining .cloud .rain { opacity: 0; }
  html.raining .cloud .drop { animation: none; }
  .node, .node.leaf, .leaf-group.open .node.leaf,
  .trunk-path, .branch-path, .leaf-path {
    transition-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }
}
