* {
  box-sizing: border-box;
}

/* Always-visible scrollbars (macOS overlay scrollbars otherwise fade out) */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--bg-background);
}

.container {
  max-width: 1360px !important;
  margin: 0 auto;
  padding: 0px 15px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 40px;
}

a {
  transition: all 0.3s ease-in-out;
}
