.scene-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #050505;
  overflow: hidden;
  cursor: var(--cursor-default), default;
}

.scene-desc {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-family: 'Courier New', monospace;
  text-align: center;
  max-width: 60%;
  line-height: 1.5;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.scene-zone {
  position: absolute;
  border: 1px solid transparent;
  z-index: 3;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-zone:hover,
.scene-zone-active {
  border-color: rgba(0, 255, 0, 0.15);
  background: rgba(0, 255, 0, 0.03);
}

.scene-zone-pointer {
  cursor: var(--cursor-pointer), pointer;
}

.scene-zone-label {
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
  transition: color 0.2s ease;
}

.scene-zone:hover .scene-zone-label,
.scene-zone-active .scene-zone-label {
  color: rgba(0, 255, 0, 0.6);
}

/* ── Room: Bedroom ── */
.scene-bedroom {
  background: radial-gradient(ellipse at 65% 45%, rgba(0, 20, 40, 0.6) 0%, #050505 70%);
}

.scene-bedroom::before {
  content: '';
  position: absolute;
  left: 60%;
  top: 35%;
  width: 25%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(0, 100, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.scene-bedroom::after {
  content: '';
  position: absolute;
  left: 35%;
  top: 5%;
  width: 20%;
  height: 25%;
  background: radial-gradient(ellipse, rgba(100, 150, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ── Room: Hallway ── */
.scene-hallway {
  background: linear-gradient(90deg, #080808 0%, #0a0a0a 20%, #0d0d0d 50%, #0a0a0a 80%, #080808 100%);
}

.scene-hallway::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 120px,
    rgba(255, 255, 255, 0.01) 120px,
    rgba(255, 255, 255, 0.01) 122px
  );
  pointer-events: none;
  z-index: 1;
}

.scene-hallway::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 10%;
  width: 8%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Room: Kitchen ── */
.scene-kitchen {
  background: radial-gradient(ellipse at 40% 30%, rgba(20, 30, 10, 0.4) 0%, #050505 70%);
}

.scene-kitchen::before {
  content: '03:33';
  position: absolute;
  left: 32%;
  top: 18%;
  font-family: 'Courier New', monospace;
  font-size: 28px;
  color: rgba(0, 255, 65, 0.15);
  letter-spacing: 6px;
  text-shadow: 0 0 10px rgba(0, 255, 65, 0.1), 0 0 30px rgba(0, 255, 65, 0.05);
  pointer-events: none;
  z-index: 1;
  animation: microwave-glow 2s ease-in-out infinite;
}

@keyframes microwave-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Room: Living Room ── */
.scene-livingroom {
  background: radial-gradient(ellipse at 42% 25%, rgba(30, 30, 50, 0.5) 0%, #050505 65%);
}

.scene-livingroom::before {
  content: '';
  position: absolute;
  left: 28%;
  top: 10%;
  width: 30%;
  height: 28%;
  background: rgba(100, 120, 200, 0.03);
  box-shadow: 0 0 60px rgba(100, 120, 200, 0.05), 0 0 120px rgba(100, 120, 200, 0.02);
  pointer-events: none;
  z-index: 1;
  animation: tv-flicker 4s ease-in-out infinite;
}

@keyframes tv-flicker {
  0%, 90%, 100% { opacity: 0.6; }
  92% { opacity: 0.2; }
  94% { opacity: 0.7; }
  96% { opacity: 0.1; }
}

/* ── Examine overlay ── */
.scene-examine-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: var(--cursor-pointer), pointer;
  animation: examine-fade 0.3s ease;
}

@keyframes examine-fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.scene-examine-text {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: rgba(200, 200, 200, 0.8);
  max-width: 60%;
  line-height: 1.8;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
}

.scene-examine-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-family: 'Courier New', monospace;
  animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}
