body {
  margin: 0;
  font-family: Georgia, serif;
  color: #d6d6d6;
  overflow: hidden;
  background-image: url(stone_wall.jpg);
}

.basement {
  height: 100vh;
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

h1 {
  text-shadow: 0 0 12px rgba(120,120,255,0.3);
}

button {
  cursor: pointer;
}

/* DOORS */
.doors {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.door {
  width: 200px;
  height: 250px;
  font-size: 18px;
  background-image: url(door.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-color: rgb(75, 74, 74);
  color: #e6e6e6;
  border: 2px solid #555;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.9);
}

.back_link{
  background-color: #797979;
  padding: 10px;
}

.door:hover {
  box-shadow: 0 0 15px rgba(160,160,255,0.4);
}

/* ROOM */
.room {
  margin-top: 40px;
  padding: 25px;
  background: rgba(15,15,15,0.9);
  border: 1px solid #666;
}

.hidden {
  display: none;
}

/* TORCH LIGHT */
.torch {
  position: fixed;
  top: 30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,180,80,0.8), transparent 70%);
  animation: flicker 2s infinite;
  pointer-events: none;
}

.torch.left { left: -40px; }
.torch.right { right: -40px; }

@keyframes flicker {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* FOG */
.fog {
  position: fixed;
  inset: 0;
  background: url("../Gifs/Misc/fog.png") repeat;
  opacity: 0.08;
  animation: drift 80s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 1200px 800px; }
}
