#landscapeOverlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--footer-bg); /* scuro */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: sans-serif;
  padding: 2em;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  /* DEBUG */
}

#landscapeOverlay.visible {
  opacity: 1;
  pointer-events: all;
}
#landscape-notice {
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.5;
  white-space: pre-line;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#landscapeOverlay.visible #landscape-notice {
  opacity: 1;
  transform: translateY(0);
}

.blur-on-landscape {
  filter: blur(8px);
  pointer-events: none;
	  user-select: none;
}