.shotengai-scene {
  width: 100%;
  max-width: 700px;
  min-height: 320px;
  background-color: #2a1f4d;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--color-accent);
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  margin: 20px 0;
  animation: shop-fade 0.4s ease;
}

.shotengai-info-panel {
  width: 100%;
  background: rgba(13, 27, 61, 0.78);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@keyframes shop-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.shotengai-emoji {
  font-size: 56px;
}

.shotengai-name {
  font-size: 34px;
  font-weight: bold;
  color: var(--color-accent);
}

.shotengai-message {
  font-size: 26px;
  text-align: center;
}
