body {
  margin: 0;
  font-family: Georgia, serif;
  text-align: center;
  background-image: url(../Gifs/BGs/scroll2.png);
  background-size: 65% 100%;
  color: #0b0a0b;
  overflow: hidden;
}

.upstairs-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 100vh;
}

/* ARCANE ROOM */
.arcane-room {
  padding: 30px;
  position: relative;
}

.arcane-room h1 {
  text-shadow: 0 0 12px rgba(180,140,255,0.9);
}

.lock_img{
  height: 100%;
  width: 100%
}

/* CRYSTAL BALL TV */
.crystal-tv {
  width: 320px;
  height: 320px;
  margin: 30px auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(126, 121, 135, 0.9);
}

.crystal-tv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.energy-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 4px solid rgba(127, 124, 133, 0.6);
  animation: spin 10s linear infinite;
}

/* Prison Cells */
.prison-cells {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.cell {
  padding: 20px;
  border: 2px solid #b89cff;
  background: rgba(131, 123, 147, 0.8);
  box-shadow: inset 0 0 15px rgba(180,140,255,0.6);
}

.locked {
  filter: grayscale(1);
}

/* SECRET BUTTON */
#secretBtn {
  display: none;
  margin: 30px auto;
  padding: 12px 20px;
  font-size: 18px;
  background: #b89cff;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(180,140,255,1);
}

/* REMOTE */
.remote {
  padding: 30px;
  background-image: url(metal.jpg);
  background-size: 100% 100%;
  border-left: 2px solid rgba(180,140,255,0.3);
  color: black;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.grid button {
  padding: 20px;
  font-size: 18px;
  background: #fffdf9;
  color: #100f10;
  border: 6px solid #938f9a;
  cursor: pointer;
}

.grid button.active {
  background: #b89cff;
  color: #12091f;
}

/* Animations */
/* @keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
} */
