.hud-border {
  position: relative;
  border: 1px solid rgba(240, 103, 28, 0.3);
  box-shadow: 0 0 15px rgba(240, 103, 28, 0.1);
}

.hud-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #f0671c;
  border-left: 2px solid #f0671c;
}

.hud-border::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #f0671c;
  border-right: 2px solid #f0671c;
}

.scanline {
  width: 100%;
  height: 2px;
  background: rgba(240, 103, 28, 0.1);
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.terminal-text {
  text-shadow: 0 0 8px rgba(240, 103, 28, 0.6);
}

.feature-grid {
  background-image: radial-gradient(circle at 2px 2px, rgba(240, 103, 28, 0.1) 1px, transparent 0);
  background-size: 24px 24px;
}

@keyframes terminal-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.terminal-scroll-container {
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.animate-terminal {
  animation: terminal-scroll 15s linear infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.typing-cursor::after {
  content: '|';
  margin-left: 2px;
  color: #22d3ee;
  animation: blink 0.8s infinite;
}

.typing-text {
  font-family: 'Space Grotesk', monospace;
  min-height: 1.5em;
}