/* ==========================================================================
   Sprintbet.co — design tokens & base
   ========================================================================== */

:root {
  /* Surfaces */
  --c-bg:            #0D0D0F;
  --c-surface:       #141418;
  --c-surface-deep:  #050508;
  --c-navy:          #04081A;
  --c-navy-chip:     #0A1A4D;

  /* Lines & type */
  --c-border:        #3A3A40;
  --c-text:          #E8E6E1;
  --c-text-alt:      #E8E5E0;
  --c-white:         #FFFFFF;
  --c-muted:         #3A3A40;

  /* Accent */
  --c-blue:          #0047FF;
  --c-blue-light:    #1A5CFF;

  /* Layout */
  --shell-pad:       48px;
  --shell-max:       1440px;

  /* Type */
  --ff:              "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, p, figure, ul, ol, dl, dd, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button { background: none; border: 0; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--c-blue-light); outline-offset: 2px; }

/* Utility --------------------------------------------------------------- */

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

.skip-link {
  position: absolute;
  top: -100%; left: 0;
  z-index: 999;
  padding: 12px 24px;
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
}
.skip-link:focus { top: 0; }

/* Shared page shell ----------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

@media (max-width: 1023px) { :root { --shell-pad: 32px; } }
@media (max-width: 767px)  { :root { --shell-pad: 20px; } }
