html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Inter", sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.nav-link {
  position: relative;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 200ms, border-color 200ms;
}

.nav-link[aria-current="true"] {
  color: #5dd5f5;
  border-bottom-color: #5dd5f5;
}

/* Source logo is black-on-transparent; invert to white for the dark theme. */
.byc-logo {
  filter: brightness(0) invert(1);
}

.glass-panel {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 41, 59, 0.5);
}

.glowing-border {
  border-top: 1px solid rgba(0, 240, 255, 0.4);
  border-left: 1px solid rgba(0, 240, 255, 0.2);
}

.corner-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-top: 2px solid #5dd5f5;
  border-left: 2px solid #5dd5f5;
}

.data-grid-bg {
  background-image: radial-gradient(rgba(0, 163, 193, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.scanline {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00dbe9, transparent);
  position: absolute;
  z-index: 10;
}
