:root {
  --bg: #060d1a;
  --card: #0c1628;
  --border: #16243f;
  --text: #eaf1ff;
  --muted: #9fb0d1;
  --primary: #4cc9ff;
  --accent: #7a8cff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  background:
    radial-gradient(circle at 20% 20%, rgba(76, 201, 255, 0.12), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(122, 140, 255, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
}

.site-panel {
  background: var(--card);
}

.site-border {
  border-color: var(--border) !important;
}

.site-soft {
  color: var(--muted) !important;
}

.site-accent {
  color: var(--primary) !important;
}

.site-glow {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 30px rgba(76, 201, 255, 0.08);
}

.scanlines::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.025) 0,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 3px
  );
  background-size: 100% 3px;
  opacity: 0.12;
  z-index: 50;
}

.caret::after {
  content: "_";
  margin-left: 0.15rem;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #060d1a;
}

::-webkit-scrollbar-thumb {
  background: #16243f;
  border: 2px solid #060d1a;
}

::-webkit-scrollbar-thumb:hover {
  background: #20365e;
}