.lcd {
  background: var(--lcd-bg);
  border: 1px solid rgba(176, 137, 255, 0.24);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.56), 0 0 18px rgba(176, 137, 255, 0.14);
}

.lcd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  border-radius: var(--radius-sm);
}

.lcd__line {
  display: flex;
  gap: 2px;
}

.lcd__char {
  display: inline-block;
  width: 16px;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--lcd-text);
  text-shadow:
    0 0 4px var(--lcd-glow),
    0 0 10px var(--lcd-glow);
  line-height: 1.4;
}
