:root {
  color-scheme: dark;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
}

.font-display {
  font-family: 'Noto Sans KR', sans-serif;
}

.minihome-shell {
  max-width: 28rem;
  margin: 0 auto;
}

.minihome-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(51, 65, 85, 0.8);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.minihome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
}

.minihome-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(99, 102, 241, 0.2);
  color: #e0e7ff;
  white-space: nowrap;
}

.minihome-empty {
  border: 1px dashed rgba(71, 85, 105, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.7);
}

.minihome-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  top: 20px;
  right: 24px;
  opacity: 0.08;
  filter: drop-shadow(0 10px 28px rgba(247, 147, 26, 0.18));
  z-index: 0;
  pointer-events: none;
}
