/*
  Dot Matrix Effect
  Pixel art style text display
  Performance optimized - no animations, no transforms
*/

.dot-matrix-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: 0;
  margin-top: 0;
}

.dot-matrix {
  display: grid;
  gap: 1px;
  background: transparent;
}

.dot-row {
  display: flex;
  gap: 1px;
}

/* Performance optimized: fixed values, inline-block instead of flex */
.dot {
  width: 3px;
  height: 3px;
  font-size: 4px;
  line-height: 3px;
  font-family: var(--font-family-mono);
  font-weight: var(--font-weight-normal);
  color: #000000;
  opacity: 1;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

/* Border dots */
.dot.border {
  color: #000000;
}

/* Active dots - white text with gradient opacity (no transform) */
.dot.active {
  opacity: var(--dot-opacity, 0.9);
  color: #FFFFFF;
  font-weight: var(--font-weight-bold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dot-matrix-container {
    gap: var(--spacing-sm);
  }
}

