body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Cinzel', serif;
}

.background {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://s14.gifyu.com/images/bwFAk.gif');
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  z-index: 1;
}

.door-container {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.glow-circle {
  width: 300px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
}

.spinning {
  animation: spinLoop 4s linear infinite;
}

.glow {
  animation: glowAura 2s ease-in-out forwards;
}

.door {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes spinLoop {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowAura {
  0% {
    box-shadow: 0 0 0px red;
  }
  50% {
    box-shadow: 0 0 60px crimson;
  }
  100% {
    box-shadow: 0 0 30px darkred;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Adjust transparency */
}
