:root {
  --rubber: #151515;
  --asphalt: #2e3338;
  --line: #f6c84c;
  --signal: #ef4f2f;
  --mist: #f4f7f5;
  --steel: #d8e1df;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--mist);
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.tire-track {
  background-image:
    repeating-linear-gradient(135deg, rgba(21, 21, 21, 0.2) 0 8px, transparent 8px 19px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.12), rgba(21, 21, 21, 0));
}

.road-line {
  background-image: repeating-linear-gradient(90deg, var(--line) 0 54px, transparent 54px 86px);
}

.focus-ring:focus-visible {
  outline: 3px solid var(--line);
  outline-offset: 4px;
}
