/* ============================================
   RUSH | District Zero — Stage 2 CSS
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #0a0a0f;
  color: #e0e0e0;
  font-family: 'Courier New', monospace;
  overflow: hidden;
  user-select: none;
}

/* Screen system (only one visible at a time) */
.screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.screen.active {
  display: flex;
  opacity: 1;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading {
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a0f 70%);
  flex-direction: column;
  text-align: center;
}

#loading::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.boot-title {
  font-size: 4em;
  font-weight: bold;
  color: #00ffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px rgba(0, 255, 255, 0.5);
  letter-spacing: 8px;
  margin-bottom: 10px;
  position: relative;
}

.boot-subtitle {
  font-size: 1.2em;
  color: #ff00ff;
  letter-spacing: 6px;
  text-shadow: 0 0 10px #ff00ff;
  margin-bottom: 40px;
  position: relative;
}

.boot-loader {
  width: 300px;
  height: 4px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.boot-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  animation: scan 1.5s linear infinite;
}

@keyframes scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.boot-status {
  color: #888;
  font-size: 0.9em;
  letter-spacing: 2px;
  margin-top: 20px;
  min-height: 20px;
  position: relative;
}

.boot-status.ok {
  color: #00ff88;
}

.boot-status.error {
  color: #ff0055;
}

.boot-version {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #444;
  font-size: 0.7em;
  letter-spacing: 1px;
}

/* ============================================
   GAME SCREEN (placeholder for now)
   ============================================ */
#game-screen {
  background: #050505;
  flex-direction: column;
}

#game-canvas {
  width: 100%;
  height: 100%;
}


/* ============================================
   GAME CANVAS (Stage 3+)
   ============================================ */
#game-screen.active {
  background: #0a0a0f;
}

#game-canvas {
  width: 100vw;
  height: 100vh;
  position: relative;
}

#game-canvas canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================
   HUD (Stage 4+)
   ============================================ */
#hud-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 100%);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
  pointer-events: none;
}

.hud-logo {
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hud-stats {
  display: flex;
  gap: 20px;
}

.hud-stat {
  color: #ff00ff;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Botão TERMINAL do HUD (redireciona pro terminal externo dzero.world). Estilo
   veio do antigo wardrobe.css, removido na limpeza do terminal in-game. */
.hud-term-btn {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.45);
  color: #00e5ff;
  font-family: 'Courier New', monospace;
  font-size: 11px; font-weight: bold; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 4px; cursor: pointer;
  transition: all .15s; text-transform: uppercase;
}
.hud-term-btn:hover {
  background: rgba(0, 229, 255, 0.16);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

/* #hud-top tem pointer-events:none (cliques atravessam pro mundo). Os CONTROLES
   precisam reativar pra serem clicáveis — sem isto o TERMINAL e o áudio não
   respondem ao clique (filhos herdam o none do pai). */
.hud-term-btn,
#hud-audio,
#audio-btn,
#audio-panel { pointer-events: auto; }

/* ============================================
   CHAT BOX (Stage 5.1)
   ============================================ */
#chat-box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 380px;
  max-width: 80vw;
  pointer-events: auto;
  z-index: 100;
}

#chat-messages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
  border-radius: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,255,255,0.3) transparent;
}

#chat-messages::-webkit-scrollbar {
  width: 6px;
}
#chat-messages::-webkit-scrollbar-track {
  background: transparent;
}
#chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0,255,255,0.3);
  border-radius: 3px;
}

.chat-msg {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.4;
  color: #e0e0e0;
  word-wrap: break-word;
  animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg .chat-sender {
  font-weight: bold;
  margin-right: 6px;
}

.chat-msg .chat-sender.cyan {
  color: #00ffff;
  text-shadow: 0 0 5px rgba(0,255,255,0.5);
}

.chat-msg .chat-sender.magenta {
  color: #ff00ff;
  text-shadow: 0 0 5px rgba(255,0,255,0.5);
}

.chat-msg .chat-sender.gold {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255,215,0,0.5);
}

.chat-msg.system {
  color: #888;
  font-style: italic;
  font-size: 12px;
}

#chat-input-wrap {
  background: rgba(0, 20, 30, 0.85);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  display: none;
}

#chat-input-wrap.active {
  display: block;
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

#chat-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  caret-color: #00ffff;
}

#chat-input::placeholder {
  color: rgba(0, 255, 255, 0.4);
}

#chat-hint {
  margin-top: 4px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-align: left;
}

/* ============================================
   CHARACTER SELECT (Stage 5.2)
   ============================================ */
#char-select {
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a0f 70%);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
}

#char-select::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.cs-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-header {
  text-align: center;
  margin-bottom: 30px;
}

.cs-title {
  font-family: 'Courier New', monospace;
  font-size: 2em;
  color: #00ffff;
  letter-spacing: 6px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  margin-bottom: 8px;
}

.cs-subtitle {
  font-family: 'Courier New', monospace;
  color: #ff00ff;
  letter-spacing: 4px;
  font-size: 0.85em;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}

.cs-username {
  margin-bottom: 30px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.cs-username label {
  display: block;
  font-family: 'Courier New', monospace;
  color: #888;
  letter-spacing: 3px;
  font-size: 0.8em;
  margin-bottom: 8px;
}

#cs-username {
  width: 100%;
  background: rgba(0, 20, 30, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  padding: 12px 16px;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
  outline: none;
  transition: all 0.3s;
}

#cs-username:focus {
  border-color: rgba(0, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

#cs-username::placeholder {
  color: rgba(0, 255, 255, 0.3);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
  width: 100%;
}

.cs-char {
  background: rgba(0, 20, 30, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 6px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cs-char:hover:not(.nft-locked) {
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(0, 30, 40, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.cs-char.selected {
  border-color: #00ffff;
  background: rgba(0, 60, 80, 0.6);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.cs-char.nft-locked {
  cursor: not-allowed;
  opacity: 0.55;
  border-color: rgba(255, 0, 255, 0.2);
}

.cs-char.nft-locked .cs-avatar-circle {
  background: linear-gradient(135deg, #ff00ff 0%, #aa00aa 100%);
}

.cs-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  height: 80px;
}

.cs-avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffff 0%, #0088aa 100%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px currentColor;
}

.cs-name {
  font-family: 'Courier New', monospace;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1em;
  margin-bottom: 4px;
}

.cs-desc {
  font-family: 'Courier New', monospace;
  color: #888;
  font-size: 0.75em;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cs-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.7em;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.cs-tag.free {
  background: rgba(0, 255, 0, 0.15);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.cs-tag.nft {
  background: rgba(255, 0, 255, 0.15);
  color: #ff66ff;
  border: 1px solid rgba(255, 0, 255, 0.4);
}

.cs-lock {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #ff66ff;
  font-family: 'Courier New', monospace;
  font-size: 0.65em;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.cs-btn {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.5);
  color: #00ffff;
  padding: 14px 60px;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.cs-btn:not(:disabled):hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.cs-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cs-hint {
  font-family: 'Courier New', monospace;
  color: #555;
  font-size: 0.75em;
  letter-spacing: 1px;
  text-align: center;
}

/* Responsive */
@media (max-width: 700px) {
  .cs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 450px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ATMOSPHERE OVERLAYS (Stage 5.3)
   ============================================ */
#scanlines {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 90;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 2px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0) 4px
  );
  mix-blend-mode: multiply;
}

#vignette {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 91;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

#mood-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 92;
  background: linear-gradient(
    135deg,
    rgba(20, 0, 40, 0.15) 0%,
    rgba(0, 20, 40, 0.1) 50%,
    rgba(40, 0, 30, 0.15) 100%
  );
  mix-blend-mode: overlay;
  animation: moodShift 20s ease-in-out infinite;
}

@keyframes moodShift {
  0%, 100% {
    background: linear-gradient(135deg, rgba(20, 0, 40, 0.15) 0%, rgba(0, 20, 40, 0.1) 50%, rgba(40, 0, 30, 0.15) 100%);
  }
  50% {
    background: linear-gradient(135deg, rgba(0, 30, 50, 0.15) 0%, rgba(30, 0, 50, 0.1) 50%, rgba(50, 0, 40, 0.15) 100%);
  }
}

/* ─── Login (D3: contas) ─── */
.lg-tab { opacity: 0.4; }
.lg-tab.active { opacity: 1; }
#cs-logout:hover { color: #00ffff; }

/* ============================================
   AUDIO HUD (D2 Trilha B) — botão 🔊 + painel de camadas
   ============================================ */
#hud-audio {
  position: relative;
  display: inline-block;
}
#audio-btn {
  background: rgba(20, 25, 40, 0.7);
  border: 1px solid rgba(110, 231, 255, 0.25);
  border-radius: 6px;
  color: #cfd6e4;
  font-size: 14px;
  padding: 2px 8px;
  cursor: pointer;
}
#audio-btn:hover { border-color: rgba(110, 231, 255, 0.6); }
#audio-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 210px;
  padding: 10px 12px;
  background: rgba(13, 16, 26, 0.95);
  border: 1px solid rgba(110, 231, 255, 0.25);
  border-radius: 8px;
  z-index: 110;
}
.audio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 11px;
  color: #9aa7bd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.audio-row span { width: 64px; flex-shrink: 0; }
.audio-row input[type="range"] {
  flex: 1;
  accent-color: #6ee7ff;
  height: 4px;
}
.audio-row.audio-master {
  border-bottom: 1px solid rgba(110, 231, 255, 0.15);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.audio-row.audio-master span { width: 40px; }
#audio-mute {
  background: none;
  border: 1px solid rgba(110, 231, 255, 0.25);
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  padding: 1px 5px;
}
#hudWeather:empty { display: none; }

/* ============================================
   VALEN no login — identidade única (mesmo rosto do holograma)
   ============================================ */
.lg-valen {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
}
#lg-valen-face {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: top center;
  /* fundo preto do PNG some sobre o fundo escuro do login; rosto sintético
     ganha um leve banho ciano + glow pra casar com o holograma da Praça */
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 14px rgba(54, 224, 255, 0.55))
          saturate(0.4) sepia(0.3) hue-rotate(150deg) brightness(1.05);
  animation: lg-valen-flicker 5s ease-in-out infinite;
  user-select: none;
}
@keyframes lg-valen-flicker {
  0%, 100% { opacity: 0.92; }
  48% { opacity: 0.86; }
  50% { opacity: 1; }
  52% { opacity: 0.88; }
}
.lg-valen-tag {
  margin-top: 4px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #36e0ff;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════
   NPC DIALOGUE MODAL  (migrado de mobile.css na limpeza Citizen Link —
   única definição destes estilos; usado por js/npcs.js)
   ════════════════════════════════════════════════════════ */
#dialogue-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', monospace;
}
#dialogue-modal.dialogue-active {
  display: flex;
  animation: dialogueFadeIn 0.22s ease-out;
}

.dialogue-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.dialogue-content {
  position: relative;
  width: min(880px, 92vw);
  max-width: 92vw;
  max-height: 85vh;
  background: #0a0a14;
  border: 4px solid var(--npc-color, #ff2cd6);
  border-radius: 8px;
  box-shadow:
    0 0 32px 4px var(--npc-glow, rgba(255, 44, 214, 0.4)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dialogueScaleIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dialogue-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(
    180deg,
    rgba(var(--npc-rgb, 255, 44, 214), 0.18) 0%,
    rgba(var(--npc-rgb, 255, 44, 214), 0.06) 100%
  );
  border-bottom: 2px solid var(--npc-color, #ff2cd6);
}

.dialogue-icon { font-size: 36px; flex-shrink: 0; line-height: 1; }
.dialogue-titles { flex: 1; min-width: 0; }
.dialogue-name {
  margin: 0;
  font-size: 26px; font-weight: bold;
  color: var(--npc-color, #ff2cd6);
  text-shadow: 0 0 10px currentColor;
  letter-spacing: 1px;
}
.dialogue-role {
  margin: 4px 0 0;
  font-size: 12px; color: #aaa;
  letter-spacing: 0.5px;
}

.dialogue-close {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #555;
  color: #aaa;
  font-size: 22px; font-weight: bold;
  width: 44px; height: 44px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  transition: all 0.15s;
  padding: 0; line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
.dialogue-close:hover {
  background: rgba(255, 0, 50, 0.3);
  border-color: #ff0033;
  color: #fff;
  transform: scale(1.05);
}
.dialogue-close:active { transform: scale(0.95); }

.dialogue-body {
  flex: 1;
  padding: 28px 32px;
  overflow-y: auto;
  color: #fff;
  font-size: 19px;
  line-height: 1.7;
  white-space: pre-line;
}
.dialogue-body::-webkit-scrollbar { width: 8px; }
.dialogue-body::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.dialogue-body::-webkit-scrollbar-thumb {
  background: var(--npc-color, #ff2cd6);
  border-radius: 4px;
  opacity: 0.5;
}

.dialogue-footer {
  padding: 12px 22px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #666;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Opções da árvore de diálogo (NPCs v4) */
.dialogue-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 22px 14px;
}
.dialogue-options:empty { display: none; }
.dialogue-option {
  text-align: left;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--npc-color, #ffd070);
  border-radius: 8px;
  color: #e6ecf5;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.12s, transform 0.06s;
}
.dialogue-option:hover { background: var(--npc-glow, rgba(255,208,112,0.45)); }
.dialogue-option:active { transform: scale(0.99); }

@keyframes dialogueFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dialogueScaleIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .dialogue-content { width: 95vw; max-height: 88vh; border-width: 3px; }
  .dialogue-header { padding: 14px 16px; gap: 10px; }
  .dialogue-icon { font-size: 28px; }
  .dialogue-name { font-size: 20px; }
  .dialogue-role { font-size: 11px; }
  .dialogue-close { width: 40px; height: 40px; font-size: 20px; }
  .dialogue-body { padding: 20px 22px; font-size: 17px; line-height: 1.65; }
  .dialogue-footer { font-size: 10px; padding: 10px 16px; }
}
@media (max-width: 480px) {
  .dialogue-name { font-size: 18px; }
  .dialogue-body { font-size: 16px; padding: 18px 18px; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .dialogue-content { max-height: 92vh; }
  .dialogue-body { padding: 14px 22px; }
}
