



/* Fullscreen image overlay styles */
#fullscreen-image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* start dimmed */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
  opacity: 0;
  transition: background-color 0.5s ease, opacity 0.3s ease;
}

#fullscreen-image-container {
  transition: background-color 0.6s ease;
}

#fullscreen-image-container.show {
  background-color: rgba(0, 0, 0, 0.85); /* brighten when fully active */
  opacity: 1;
}

#fullscreen-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.4s ease;
}

#fullscreen-image-container.show img {
  transform: scale(1);
  opacity: 1;
}



/* Blur landing page image (PEEPSO) */
.stk-a1afa53 {
    position: relative;
    overflow: hidden; 
}

.stk-a1afa53::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: filter 1s ease-in-out;
    z-index: 0; 
}

body.privacy-blur-active .stk-a1afa53::before {
    filter: blur(20px);
}

