/* Buz Ejderi — sonuç ekranı öncesi tam ekran geçiş (html kökü: body zoom/transform etkisiz) */
html .nova-buz-sonuc-overlay,
.nova-buz-sonuc-overlay{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 1005000;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  background: #000;
  opacity: 0;
  pointer-events: auto;
  transition: opacity .28s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  box-sizing: border-box;
}
.nova-buz-sonuc-overlay.is-visible{
  opacity: 1;
}
.nova-buz-sonuc-overlay.is-fading-out{
  opacity: 0;
  transition: opacity .52s ease;
}
.nova-buz-sonuc-overlay__canvas{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body.nova-buz-sonuc-active{
  overflow: hidden !important;
}
