body {
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- FROSTED GLASS BACKGROUNDS --- */
.bg-slide {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover !important;
  filter: blur(40px) brightness(0.4);
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* --- CRISP FOREGROUND PHOTOS --- */
.fg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: contain !important;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* Crossfade class */
.active {
  opacity: 1 !important;
}

/* --- KEN BURNS CINEMATIC EFFECT --- */
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

.ken-burns-active {
  animation: kenBurns 8s ease-out forwards;
}

/* --- SYSTEM MESSAGE --- */
#message {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 24px;
  z-index: 10;
  transform: translateY(-50%);
}

/* --- BRANDING CORNER --- */
.branding-corner {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 25px;
  border-radius: 20px;
  color: white;
  text-align: center;
  z-index: 100;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.branding-corner h2 {
  margin: 0 0 5px 0;
  font-size: 28px;
  font-weight: bold;
}

.branding-corner p {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: #eeeeee;
}

#qr-code-container {
  display: inline-block;
  background: white;
  padding: 12px;
  border-radius: 12px;
}