:root {
  color-scheme: dark;
  --bg: #020405;
  --panel: #050a0e;
  --border: #1a3c4d;
  --border-bright: #00f0ff;
  --text: #a1dce6;
  --text-bright: #dcf7ff;
  --text-muted: #4a7685;
  --accent: #00f0ff;
  --accent-dim: rgba(0, 240, 255, 0.1);
  --danger: #ff4433;
  --warning: #ffae00;
  font-family: "Share Tech Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* CRT Overlay */
.crt-overlay {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%),
    linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 999;
}

/* App Structure */
.app-background {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-shell {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  max-height: 95vh;
  background: var(--panel);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 260px 1fr;
  /* Sidebar | Main Content */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* Sidebar */
.sidebar {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: rgba(0, 10, 16, 0.6);
  overflow: hidden;
  /* Internal scroll handled by roster-block */
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.system-title {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15rem;
  margin: 0 0 1rem 0;
}

.roster-search {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
  width: 100%;
  padding: 0.5rem;
  text-transform: uppercase;
}

.roster-block {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.roster-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roster-entry {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(26, 60, 77, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.roster-entry:hover {
  background: var(--accent-dim);
}

.roster-entry[data-active="true"] {
  background: rgba(0, 240, 255, 0.15);
  border-left: 3px solid var(--accent);
  color: var(--text-bright);
}

.roster-entry .name {
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.05rem;
  font-size: 0.9rem;
}

.roster-entry .role {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0.3rem 0 0;
  text-transform: uppercase;
}

.sidebar-footer {
  padding: 1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.return-hub {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 100%;
  padding: 0.6rem;
  font-size: 0.7rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.return-hub:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Main Panel */
.main-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.subject-line {
  font-size: 2rem;
  margin: 0;
  color: var(--text-bright);
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.story-line {
  margin: 0;
  line-height: 1.5;
  color: var(--text-bright);
  /* Changed from --text-primary to --text-bright as --text-primary is not defined */
  text-shadow: 0 0 2px rgba(0, 240, 255, 0.3);
  white-space: pre-wrap;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.session-line {
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.risk-display {
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  background: rgba(255, 68, 51, 0.05);
  text-transform: uppercase;
}

.risk-display.risk-low {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.risk-display.risk-moderate {
  border-color: var(--warning);
  color: var(--warning);
  background: rgba(255, 174, 0, 0.05);
}

/* Database Body Grid - The 2nd and 3rd columns */
.database-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  /* Profile | Context */
  overflow: hidden;
  /* Ensures children scroll independently */
}

/* Primary Column (Profile) */
.primary-column {
  padding: 2rem;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}

/* Identity Grid (Replaces Tags) */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 60, 77, 0.5);
}

.identity-data {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.identity-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.identity-value {
  font-size: 0.9rem;
  color: var(--text-bright);
  letter-spacing: 0.05rem;
  font-weight: 600;
}

.section-title-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 60, 77, 0.5);
  padding-bottom: 0.5rem;
}



.section-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  margin: 0;
  text-transform: uppercase;
}

.assessment-text p {
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.relationship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.relationship-card {
  border: 1px solid var(--border);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s;
}

.relationship-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.rel-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.rel-target {
  color: var(--accent);
  font-weight: bold;
  display: block;
  font-size: 0.9rem;
}

.rel-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.jump-text {
  font-size: 0.6rem;
  border: 1px solid var(--border);
  padding: 3px 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

/* Secondary Column (Context) */
.secondary-column {
  padding: 2rem;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.15);
}

.section-label-small {
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26, 60, 77, 0.3);
  padding-bottom: 0.3rem;
}

.trait-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.trait-chip {
  border: 1px solid var(--accent);
  color: var(--text-bright);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  background: rgba(0, 240, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.incidents {
  margin-bottom: 2.5rem;
}

#incidentList {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(0, 240, 255, 0.3);
  margin-left: 1.5rem;
  overflow: visible;
}

.incident-item-styled {
  border-left: none;
  padding-left: 0;
  margin-bottom: 2rem;
  color: var(--text-bright);
  font-size: 0.9rem;
  line-height: 1.6;
  position: relative;
}

.incident-item-styled::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 5px);
  /* -2rem padding - 0.5px border - 4.5px half-dot */
  top: 0.3rem;
  width: 9px;
  height: 9px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  z-index: 2;
}

blockquote {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px dashed var(--text-muted);
  font-style: italic;
  color: var(--text);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.2);
}

cite {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.6rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

/* Boot & Utility */
.hidden {
  display: none !important;
}

.boot-overlay,
.access-overlay,
.hub-screen {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel {
  background: #050a0f;
  border: 1px solid var(--border);
  padding: 2rem;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.boot-header {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}

.boot-title {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

button {
  font-family: inherit;
  cursor: pointer;
  text-transform: uppercase;
}

.boot-submit,
.hub-option {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.8rem;
  width: 100%;
  margin-top: 1rem;
  letter-spacing: 0.1rem;
  transition: all 0.2s;
}

.boot-submit:hover,
.hub-option:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 15px var(--accent-dim);
}

input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.6rem;
  width: 100%;
  margin-bottom: 1rem;
  font-family: inherit;
  font-size: 1rem;
}

input:focus {
  border-color: var(--accent);
  outline: none;
}

.access-error {
  color: var(--danger);
  font-size: 0.8rem;
  min-height: 1rem;
  margin: 0.5rem 0;
}

.hub-option {
  text-align: left;
  padding: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.hub-code {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.hub-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: none;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #020405;
}

::-webkit-scrollbar-thumb {
  background: #1a3c4d;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

@media (max-width: 1100px) {
  .app-shell {
    grid-template-columns: 220px 1fr;
  }

  .database-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
    display: block;
  }

  .primary-column,
  .secondary-column {
    overflow: visible;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* --- PRESERVED COMMUNICATIONS TERMINAL STYLES --- */

.reset-scenarios {
  border: 1px solid rgba(79, 197, 255, 0.4);
  background: transparent;
  color: var(--muted);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.reset-scenarios:hover,
.reset-scenarios:focus {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(79, 197, 255, 0.08);
}


.story-subtitle {
  margin: 0;
  color: rgba(191, 231, 255, 0.8);
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.story-panel {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.story-log {
  flex: 1;
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(2, 8, 16, 0.85);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.story-log::-webkit-scrollbar {
  width: 4px;
}

.story-log::-webkit-scrollbar-thumb {
  background: rgba(123, 212, 255, 0.4);
}

.story-row {
  padding: 1rem;
  border: 1px solid rgba(123, 212, 255, 0.15);
  background: rgba(2, 8, 16, 0.6);
  margin-bottom: 0.5rem;
  max-width: 90%;
}

.story-row:last-child {
  border-bottom: 1px solid rgba(123, 212, 255, 0.15);
}

.story-meta {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid rgba(123, 212, 255, 0.1);
  padding-bottom: 0.3rem;
  display: inline-block;
}

.story-line {
  margin: 0;
  line-height: 1.5;
  color: var(--text-bright);
  text-shadow: 0 0 2px rgba(0, 240, 255, 0.3);
  white-space: pre-wrap;
  letter-spacing: 0.05rem;
}

/* Analyst (User) - Right Aligned */
.story-row.story-analyst {
  align-self: flex-end;
  border-color: var(--accent);
  background: rgba(0, 240, 255, 0.05);
  text-align: right;
}

.story-row.story-analyst .story-meta {
  color: var(--accent);
  border-color: rgba(0, 240, 255, 0.3);
}

.story-row.story-analyst .story-line {
  color: #fff;
}

/* Handler (AI) - Left Aligned */
.story-row.story-char,
.story-row.story-system {
  align-self: flex-start;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.story-row.story-system .story-line {
  color: #f1c76a;
}

.story-status {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2rem;
  color: #f0c674;
}

.story-status.hidden {
  display: none;
}

.story-choices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chat-input-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  background: rgba(2, 8, 16, 0.85);
  margin-top: auto;
}

.input-prompt {
  color: var(--accent);
  font-weight: bold;
  animation: blink 1s infinite;
}

#chatInput {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-bright);
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  outline: none;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

#chatInput::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

#chatSubmit {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

#chatSubmit:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 10px var(--accent-dim);
}

#chatSubmit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--text-muted);
  color: var(--text-muted);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.story-choice-btn {
  border: 1px solid var(--border);
  background: rgba(6, 17, 25, 0.85);
  color: var(--text);
  width: 100%;
  padding: 0.75rem 0.9rem;
  letter-spacing: 0.15rem;
  font-size: 0.75rem;
  text-align: left;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.story-choice-btn:hover,
.story-choice-btn:focus {
  border-color: var(--accent);
  background: rgba(123, 212, 255, 0.15);
}

.story-choice-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.story-placeholder {
  margin: 0;
  color: var(--text-muted);
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.communications-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 1rem;
  min-height: 420px;
}

.ops-column {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ops-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.metric span {
  font-size: 0.6rem;
  letter-spacing: 0.25rem;
  color: rgba(159, 227, 255, 0.6);
}

.metric strong {
  font-size: 1.15rem;
  letter-spacing: 0.12rem;
  color: var(--accent-strong);
  text-shadow: 0 0 8px rgba(79, 197, 255, 0.6);
}

.ops-feed {
  border: 1px solid var(--border);
  background: rgba(3, 8, 12, 0.92);
  padding: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.6);
}

.ops-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.18rem;
  color: rgba(159, 227, 255, 0.8);
}

.ops-title {
  margin: 0;
}

.ops-feed-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.attachment-card {
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  padding: 0.8rem;
  background: #030b09;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.attachment-card:hover,
.attachment-card:focus {
  border-color: var(--accent);
}

.attachment-icon {
  width: 34px;
  height: 34px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
}

.story-actions {
  display: flex;
  justify-content: flex-end;
}

.reset-story {
  border: 1px solid rgba(79, 197, 255, 0.4);
  background: transparent;
  color: var(--muted);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.2rem;
  cursor: pointer;
  text-transform: uppercase;
}

.reset-story:hover,
.reset-story:focus {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(79, 197, 255, 0.08);
}

.story-ending {
  margin: 0;
  color: var(--muted);
  letter-spacing: 0.15rem;
}

.communications-screen {
  max-width: 1200px;
  margin: 2rem auto;
  width: 100%;
}

.communications-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(79, 197, 255, 0.35);
  padding-bottom: 0.6rem;
}

.system-title {
  margin: 0;
  letter-spacing: 0.3rem;
  color: rgba(191, 231, 255, 0.95);
}

.system-subtitle {
  margin: 0.2rem 0;
  letter-spacing: 0.3rem;
  font-size: 0.72rem;
  color: rgba(191, 231, 255, 0.7);
}

.ops-empty {
  margin: 0;
  color: rgba(191, 231, 255, 0.6);
  letter-spacing: 0.25rem;
  text-align: center;
}

.ops-entry {
  border-bottom: 1px solid rgba(79, 197, 255, 0.2);
  padding-bottom: 0.35rem;
}

.ops-entry time {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15rem;
  color: rgba(191, 231, 255, 0.7);
  margin-bottom: 0.2rem;
}

.ops-entry p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.3;
}

.attachment-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  backdrop-filter: blur(4px);
}

.attachment-content {
  background: #081a26;
  border: 1px solid rgba(79, 197, 255, 0.4);
  border-radius: 3px;
  padding: 1.2rem;
  width: min(420px, 90%);
  position: relative;
}

.close-attachment {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
}

.close-attachment:hover,
.close-attachment:focus {
  color: var(--accent);
}

.attachment-body {
  min-height: 160px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.attachment-caption {
  margin: 0.8rem 0 0;
  color: var(--text);
}

.communications-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 13px;
  font-family: inherit;
  color: #8ad3ff;
  text-transform: uppercase;
  z-index: 1;
}

.communications-shell .system-title,
.communications-shell .system-subtitle,
.communications-shell .session-line,
.communications-shell .case-button,
.communications-shell .ops-title,
.communications-shell .metric strong,
.communications-shell .story-title,
.communications-shell .story-choice-btn,
.communications-shell .hud-tag,
.communications-shell .story-subtitle {
  text-shadow: 0 0 6px rgba(79, 197, 255, 0.35);
}

.comms-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(79, 197, 255, 0.35);
  padding: 0.5rem 0.7rem;
  letter-spacing: 0.3rem;
  font-size: 0.72rem;
  background: rgba(3, 9, 14, 0.95);
  text-shadow: 0 0 6px rgba(79, 197, 255, 0.45);
}

.hud-tag {
  color: rgba(191, 231, 255, 0.8);
}

.hud-status {
  color: #7fffd4;
  font-weight: 600;
}