/* Chatbox — MMO-style overlay on canvas, bottom-left */

.chatbox {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 380px;
  max-height: 240px;
  pointer-events: none;
  z-index: 8;
}

.chatbox__messages {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 12px;
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(1.2);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: none;
}

.chatbox__messages::-webkit-scrollbar {
  display: none;
}

.chatbox__messages:empty {
  display: none;
}

.chatbox__msg {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}

.chatbox__msg--fading {
  opacity: 0;
}

.chatbox__name {
  font-weight: 600;
  margin-right: 6px;
}

.chatbox__text {
  color: #fff;
  opacity: 1;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}

.chatbox__system {
  color: #fff;
  font-size: 11px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 767px) {
  .chatbox {
    width: calc(100% - 24px);
    max-height: 180px;
    bottom: 8px;
    left: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .chatbox {
    width: 340px;
  }
}
