/* ==========================================
   T-VIRUS // RED QUEEN CONTROL TERMINAL
========================================== */

.rq-overlay {
  position: fixed;
  inset: 0;
  z-index: 70000;
  background: #000;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.rq-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.rq-terminal {
  position: fixed;
  inset: 0;
  z-index: 70100;
  display: flex;
  flex-direction: column;
  background: #050000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.rq-terminal.active {
  opacity: 1;
  pointer-events: all;
}

.rq-terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 0, 0, 0.015) 50%, transparent 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 100;
}

.rq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(140, 0, 0, 0.4), rgba(40, 0, 0, 0.2));
  border-bottom: 1px solid rgba(255, 0, 0, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff5555;
  letter-spacing: 2px;
  flex-shrink: 0;
  z-index: 10;
}

.rq-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rq-eye-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow:
    0 0 8px #ff0000,
    0 0 20px rgba(255, 0, 0, 0.3);
  animation: queen-eye-pulse-sm 2s ease-in-out infinite;
}

@keyframes queen-eye-pulse-sm {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.rq-header-right {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: 10px;
}

.rq-header-right .rq-live {
  color: var(--fine);
  font-weight: bold;
}

.rq-workspace {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 350px;
  min-height: 0;
  overflow: hidden;
}

.rq-console-panel {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 0, 0, 0.1);
  min-height: 0;
}

.rq-console-title {
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #666;
  letter-spacing: 3px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.08);
  background: rgba(255, 0, 0, 0.03);
  flex-shrink: 0;
}

.rq-console-log {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.75;
  overflow-y: auto;
  scrollbar-width: none;
  min-height: 0;
}

.rq-console-log::-webkit-scrollbar {
  display: none;
}

.rq-log-line {
  margin-bottom: 2px;
  opacity: 0;
  transform: translateX(-6px);
  animation: rq-line-in 0.2s ease forwards;
}

@keyframes rq-line-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rq-log-line .rq-time {
  color: #444;
  margin-right: 8px;
}
.rq-log-line.rq-sys {
  color: #888;
}
.rq-log-line.rq-ok {
  color: var(--fine);
}
.rq-log-line.rq-warn {
  color: var(--caution);
}
.rq-log-line.rq-err {
  color: #ff4444;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.25);
}
.rq-log-line.rq-queen {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}
.rq-log-line.rq-critical {
  color: #ff3333;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  animation:
    rq-line-in 0.2s ease forwards,
    rq-critical-flash 0.5s ease infinite;
}

@keyframes rq-critical-flash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.rq-side-panel {
  display: flex;
  flex-direction: column;
  background: rgba(255, 0, 0, 0.02);
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.rq-side-panel::-webkit-scrollbar {
  display: none;
}

.rq-side-section {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.08);
  flex-shrink: 0;
}

.rq-side-title {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #ff5555;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.rq-status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rq-stat-box {
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.rq-stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.rq-stat-value {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--fine);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
  transition:
    color 0.5s ease,
    text-shadow 0.5s ease;
}

.rq-stat-value.stat-danger {
  color: var(--danger) !important;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3) !important;
}

.rq-stat-value.stat-warn {
  color: var(--caution) !important;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.3) !important;
}

.rq-map-container {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  background: #000;
}

.rq-map-img {
  width: 100%;
  display: block;
  filter: grayscale(0.8) sepia(0.5) hue-rotate(320deg) contrast(1.2)
    brightness(0.5);
  opacity: 0.7;
  transition:
    filter 0.5s,
    opacity 0.5s;
}

.rq-map-img.map-danger {
  filter: grayscale(0.3) sepia(0.8) hue-rotate(340deg) contrast(1.5)
    brightness(0.4);
  animation: map-pulse-red 1.5s ease-in-out infinite;
}

@keyframes map-pulse-red {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.85;
  }
}

.rq-map-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 0, 0, 0.7);
  letter-spacing: 6px;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.rq-map-overlay-text.active {
  opacity: 1;
}

.rq-door-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rq-door {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(0, 255, 102, 0.08);
  border-radius: 2px;
  background: rgba(0, 255, 102, 0.02);
  font-family: var(--font-mono);
  font-size: 10px;
  color: #777;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.rq-door .door-name {
  flex: 1;
}

.rq-door .door-status {
  font-weight: bold;
  color: var(--fine);
  min-width: 60px;
  text-align: right;
  transition: color 0.3s;
}

.rq-door.door-sealing {
  border-color: rgba(255, 204, 0, 0.3);
  background: rgba(255, 204, 0, 0.05);
}

.rq-door.door-sealing .door-status {
  color: var(--caution);
  animation: blink 0.4s infinite;
}

.rq-door.door-sealed {
  border-color: rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.05);
}

.rq-door.door-sealed .door-status {
  color: var(--danger);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
  animation: none;
}

.rq-camera-section {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.rq-cam-preview {
  flex: 1;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  background: #000;
  min-height: 120px;
}

.rq-cam-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) sepia(0.4) hue-rotate(60deg) contrast(1.3)
    brightness(0.65);
  transition: all 0.6s ease;
}

.rq-cam-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.12) 50%, transparent 50%);
  background-size: 100% 3px;
  pointer-events: none;
  z-index: 2;
}

.rq-cam-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: cam-noise-flicker 0.08s infinite;
  transition: opacity 0.3s;
}

@keyframes cam-noise-flicker {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-1%, 1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(-1%, -1%);
  }
  100% {
    transform: translate(1%, 1%);
  }
}

.rq-cam-ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.9);
  z-index: 5;
  pointer-events: none;
}

.rq-cam-rec {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ff3333;
  font-weight: bold;
}

.rq-cam-rec-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 5px #ff3333;
  animation: blink 1s infinite;
}

.rq-cam-dead-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.rq-cam-dead-overlay.active {
  opacity: 1;
}

.rq-cam-dead-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #333;
  letter-spacing: 4px;
}

.rq-cam-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 4;
}

.rq-cam-image.cam-corrupt {
  animation: rq-cam-glitch 0.12s infinite;
}

@keyframes rq-cam-glitch {
  0% {
    transform: translate(0) scaleX(1);
    clip-path: none;
  }
  20% {
    transform: translate(-3px, 1px) scaleX(1.02);
    clip-path: inset(15% 0 25% 0);
  }
  40% {
    transform: translate(2px, -2px);
    clip-path: inset(40% 0 10% 0);
  }
  60% {
    transform: translate(-1px, 2px) scaleX(0.98);
    clip-path: inset(5% 0 50% 0);
  }
  80% {
    transform: translate(3px, -1px);
    clip-path: inset(25% 0 20% 0);
  }
  100% {
    transform: translate(0) scaleX(1);
    clip-path: none;
  }
}

/* ==========================================
   CONTAINMENT BREACH BANNER
========================================== */
.rq-breach-banner {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 71000;
  background: var(--danger);
  padding: 22px 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 12px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 60px rgba(255, 0, 0, 0.5),
    0 0 120px rgba(255, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.rq-breach-banner.active {
  opacity: 1;
}

/* ==========================================
   INTERNAL COMMS
========================================== */
.rq-comms-screen {
  position: fixed;
  inset: 0;
  z-index: 72500;
  background: #000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.rq-comms-screen.active {
  opacity: 1;
  pointer-events: all;
}

.rq-comms-header {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  background: linear-gradient(90deg, rgba(90, 0, 0, 0.35), rgba(20, 0, 0, 0.2));
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff5555;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.rq-comms-header-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 8px #ff3333;
  animation: blink 1s infinite;
}

.rq-comms-sub {
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #555;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.rq-comms-log {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  scrollbar-width: none;
}

.rq-comms-log::-webkit-scrollbar {
  display: none;
}

.rq-comms-entry {
  margin-bottom: 8px;
  padding: 10px 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: #aaa;
  opacity: 0;
  transform: translateY(8px);
  animation: rq-comms-in 0.35s ease forwards;
}

@keyframes rq-comms-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rq-comms-entry .rq-comms-chan {
  color: #666;
  margin-right: 8px;
}

.rq-comms-entry .rq-comms-speaker {
  color: #fff;
  margin-right: 8px;
}

.rq-comms-entry.panic {
  border-left-color: var(--danger);
  background: rgba(255, 0, 0, 0.05);
  color: #ff9999;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.15);
}

.rq-comms-entry.warning {
  border-left-color: var(--caution);
  background: rgba(255, 204, 0, 0.04);
  color: #e0c97a;
}

.rq-comms-entry.dead {
  border-left-color: #333;
  background: rgba(255, 255, 255, 0.01);
  color: #555;
  font-style: italic;
}

.rq-comms-static {
  margin: 8px 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #444;
  letter-spacing: 4px;
  opacity: 0;
  animation: rq-comms-in 0.25s ease forwards;
}

.rq-comms-failure {
  padding: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: #ff3333;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-top: 1px solid rgba(255, 0, 0, 0.15);
  background: rgba(40, 0, 0, 0.4);
  flex-shrink: 0;
}

.rq-comms-failure.active {
  opacity: 1;
}

/* ==========================================
   ÚLTIMO TERMINAL
========================================== */
.hive-last-feed {
  position: fixed;
  inset: 0;
  z-index: 72000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hive-last-feed.active {
  opacity: 1;
}

.last-feed-header {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff3333;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.last-feed-header .feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3333;
  box-shadow: 0 0 6px #ff3333;
  animation: blink 1s infinite;
}

.last-feed-content {
  width: min(85vw, 500px);
  padding: 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2;
  color: #999;
  min-height: 200px;
}

.last-feed-content .feed-cursor {
  display: inline-block;
  width: 8px;
  height: 13px;
  background: rgba(255, 255, 255, 0.5);
  animation: blink 0.6s infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

.last-feed-terminated {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #ff3333;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ==========================================
   CITAÇÃO FINAL
========================================== */
.hive-final-quote {
  position: fixed;
  inset: 0;
  z-index: 73000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  padding: 30px;
}

.hive-final-quote.active {
  opacity: 1;
}

.hive-quote-inner {
  text-align: center;
  max-width: 680px;
}

.hive-quote-text {
  font-family: var(--font-mono);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  line-height: 1.6;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.hive-quote-cursor {
  display: inline-block;
  width: 13px;
  height: 24px;
  background: rgba(255, 0, 0, 0.5);
  animation: blink 0.6s infinite;
  vertical-align: text-bottom;
  margin-left: 3px;
}

.hive-quote-author {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff3333;
  letter-spacing: 6px;
  opacity: 0;
  transition: opacity 0.8s ease;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

/* ==========================================
   LOCKDOWN DAS JANELAS
========================================== */
.window-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  overflow: hidden;
}

.window-lock-overlay .shutter-top,
.window-lock-overlay .shutter-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 0%;
  background: repeating-linear-gradient(
    0deg,
    rgba(100, 0, 0, 0.95),
    rgba(100, 0, 0, 0.95) 8px,
    rgba(50, 0, 0, 0.98) 8px,
    rgba(50, 0, 0, 0.98) 16px
  );
  transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.window-lock-overlay .shutter-top {
  top: 0;
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}
.window-lock-overlay .shutter-bottom {
  bottom: 0;
  border-top: 1px solid rgba(255, 0, 0, 0.3);
}

.window-lock-overlay .seal-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff6666;
  letter-spacing: 5px;
  opacity: 0;
  text-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  transition: opacity 0.2s ease 0.28s;
  white-space: nowrap;
}

.os-window.window-locking .window-lock-overlay .shutter-top,
.os-window.window-locking .window-lock-overlay .shutter-bottom {
  height: 50%;
}

.os-window.window-locking .window-lock-overlay .seal-text {
  opacity: 1;
}

.os-window.window-locked .window-header,
.os-window.window-locked .window-body {
  filter: blur(4px) brightness(0.08) saturate(0);
  transition: filter 0.3s ease;
}

/* Blackout */
.hive-blackout {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

@media (max-width: 950px) {
  /* O TERMINAL É SCROLLÁVEL */
  .rq-terminal {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  /* HEADER FIXO NO TOPO */
  .rq-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    font-size: 9px !important;
    padding: 8px 12px !important;
  }

  .rq-header-right {
    gap: 10px !important;
    font-size: 9px !important;
  }

  /* WORKSPACE CRESCE COM O CONTEÚDO */
  .rq-workspace {
    display: block !important; /* CHAVE: Remove grid e flex */
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  /* CONSOLE LOG — ALTURA FIXA COM SCROLL INTERNO */
  .rq-console-panel {
    display: block !important;
    height: 35vh !important;
    overflow: hidden !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2) !important;
  }

  .rq-console-title {
    font-size: 9px !important;
    padding: 6px 12px !important;
  }

  .rq-console-log {
    height: calc(35vh - 30px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    font-size: 10px !important;
    padding: 10px !important;
  }

  /* SIDE PANEL — CRESCE COM O CONTEÚDO */
  .rq-side-panel {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
  }

  .rq-side-section {
    padding: 10px 12px !important;
  }

  .rq-side-title {
    font-size: 9px !important;
    letter-spacing: 2px !important;
  }

  /* STATS */
  .rq-status-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }

  .rq-stat-value {
    font-size: 16px !important;
  }
  .rq-stat-label {
    font-size: 7px !important;
  }

  /* MAPA */
  .rq-map-img {
    max-height: 160px !important;
    object-fit: contain !important;
  }
  .rq-map-overlay-text {
    font-size: 11px !important;
    letter-spacing: 4px !important;
  }

  /* PORTAS */
  .rq-door {
    font-size: 9px !important;
    padding: 5px 8px !important;
  }

  /* CÂMERA */
  .rq-camera-section {
    display: block !important;
    height: auto !important;
    padding: 10px 12px !important;
    overflow: visible !important;
  }

  .rq-cam-preview {
    display: block !important;
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    position: relative !important;
  }

  /* BREACH BANNER */
  .rq-breach-banner {
    font-size: 18px !important;
    letter-spacing: 4px !important;
    padding: 15px 10px !important;
  }

  /* COMMS */
  .rq-comms-screen {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .rq-comms-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    font-size: 9px !important;
  }

  .rq-comms-sub {
    position: sticky !important;
    top: 35px !important;
    z-index: 9 !important;
    font-size: 8px !important;
  }

  .rq-comms-log {
    font-size: 10px !important;
    padding: 12px !important;
  }
  .rq-comms-entry {
    padding: 8px 10px !important;
    font-size: 10px !important;
    line-height: 1.5 !important;
  }
  .rq-comms-failure {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }

  /* ÚLTIMO TERMINAL */
  .last-feed-content {
    font-size: 11px !important;
    padding: 15px !important;
    width: 95vw !important;
  }

  /* CITAÇÃO */
  .hive-quote-text {
    font-size: 16px !important;
    letter-spacing: 1px !important;
  }
  .hive-quote-author {
    font-size: 10px !important;
  }

  /* LOCKDOWN */
  .window-lock-overlay .seal-text {
    font-size: 9px !important;
    letter-spacing: 3px !important;
  }
}
