/* TechPilot-inspired theme overrides (dark + neon green) */

:root {
  --bg-color: #121212;
  --bg-color-2: #0a0a0a;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-elevated-2: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.10);
  --text-color: rgba(255, 255, 255, 0.92);
  --text-gray-color: rgba(255, 255, 255, 0.74);

  --accent-1: #00ff37;
  --accent-2: rgba(0, 255, 55, 0.45);
  --link-color: var(--accent-1);
  --link-hover-color: rgba(0, 255, 55, 0.85);

  --glow: 0 0 0 4px rgba(0, 255, 55, 0.14);
  --glow-strong: 0 0 0 4px rgba(0, 255, 55, 0.10);
}

html,
body {
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
  background-size: 100% 100% !important;
}

body {
  /* Hintergrund als fixed layer, damit es niemals "kachelt" oder springt */
  position: relative;
  background: transparent !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-color-2) 0%, var(--bg-color) 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: -1;
}


::selection {
  background: rgba(0, 255, 55, 0.22);
}

/* Link underline glow */
a:not(.no-underline):hover {
  border-color: rgba(0, 255, 55, 0.35) !important;
  text-shadow: 0 0 18px rgba(0, 255, 55, 0.22);
}

/* FINAL Scrollbar override (kein Weiß mehr) */
::-webkit-scrollbar {
  width: 10px !important;
  background: rgba(0, 0, 0, 0.35) !important;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
  background: rgba(0, 0, 0, 0.35) !important;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-1) !important;
  border-radius: 999px !important;
  border: 2px solid rgba(0, 0, 0, 0.35) !important;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.08) !important;
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.35) !important;
}

::-webkit-scrollbar-button {
  display: none !important;
  height: 0 !important;
  width: 0 !important;
}

