.room-title {
  text-align: center;
  margin-bottom: 25px;
}

.room-title h3 {
  font-family: var(--font-mono);
  color: var(--accent-purple);
  font-size: 1.3rem;
}

.room-title p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 5px;
}

.room-canvas {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 380px;
  background: linear-gradient(180deg, rgba(15, 18, 30, 0.9), rgba(8, 10, 18, 0.95));
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.room-object {
  position: absolute;
  border: 1px dashed var(--accent-purple);
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-object:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
}

.obj-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-main);
  pointer-events: none;
}

/* Расположение элементов виртуальной комнаты */
.window { top: 30px; left: 40px; width: 140px; height: 120px; border-style: solid; }
.desk { bottom: 30px; left: 50%; transform: translateX(-50%); width: 85%; height: 140px; border-color: rgba(255,255,255,0.1); cursor: default; }
.desk:hover { background: rgba(139, 92, 246, 0.08); box-shadow: none; border-color: rgba(255,255,255,0.1); }
.laptop { top: -35px; left: 30%; width: 110px; height: 70px; }
.lamp { top: -45px; right: 10%; width: 50px; height: 80px; }
.note { bottom: 20px; left: 10%; width: 60px; height: 45px; }
.phone { bottom: 20px; right: 25%; width: 45px; height: 60px; }
.photo { top: 40px; right: 50px; width: 80px; height: 100px; }

.inspect-dialog {
  margin-top: 25px;
  width: 100%;
  max-width: 700px;
  background: var(--bg-card);
  border: 1px solid var(--accent-purple);
  padding: 20px;
  border-radius: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.inspect-dialog.active { opacity: 1; }
.inspect-dialog h5 { font-family: var(--font-mono); color: var(--accent-cyan); margin-bottom: 6px; }
.inspect-dialog p { font-size: 0.9rem; color: var(--text-main); }