.page-room {
  background-color: #e8e2d5;
  color: #332d27;
  padding: 3rem 2rem;
  min-height: 100vh;
}

.room-container {
  max-width: 1000px;
  margin: 0 auto;
}

.room-header {
  text-align: center;
  margin-bottom: 3rem;
}

.room-stage {
  position: relative;
  height: 450px;
  background: #f2ebd9;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  align-items: center;
}

.room-object {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all 0.3s var(--transition-smooth);
}

.room-object:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: var(--accent-gold);
}

.obj-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.obj-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2000;
}

.room-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #f7f4ee;
  padding: 3rem;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .room-stage {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
}