/* 1001 Pioneer AI - Global CSS Variables and Base Styles */

/* Only apply to landingpage elements */
.navbar,
.navbar *,
.footer,
.footer * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--foundation-cyannormal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--foundation-cyandark);
}