/* Universal box-sizing reset — prevents padding from causing horizontal overflow */
*, *::before, *::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Netflix-inspired styling */
:root {
  --netflix-red: #e50914;
  --netflix-black: #141414;
  --netflix-dark-gray: #181818;
  --netflix-gray: #2f2f2f;
  --netflix-light-gray: #808080;
  --netflix-white: #ffffff;

  /* Sport theming — defaults to snowboard */
  --sport-accent: #e50914;
  --sport-accent-rgb: 229, 9, 20;
  --sport-accent-text: #ffffff;
}

html {
  overflow-x: hidden;
}

body {
  background-color: var(--netflix-black);
  color: var(--netflix-white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 64px;
  overflow-x: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

