/* Rebel Sporting Arena — Paper + Ink + Rebel Red (no red text) */
:root{
  --bg: #ffffff;
  --ink: #0b0b0b;
  --muted: rgba(11,11,11,0.64);
  --soft: rgba(11,11,11,0.08);
  --soft2: rgba(11,11,11,0.12);

  --accent: #e10600;              /* use ONLY for borders, fills, stripes — not text */
  --accent-soft: rgba(225,6,0,0.12);

  --card: rgba(255,255,255,0.82);
  --glass: rgba(255,255,255,0.72);

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;

  --shadow: 0 14px 44px rgba(11,11,11,0.12);
  --shadow2: 0 18px 60px rgba(11,11,11,0.16);

  --max: 1240px;

  --ease: cubic-bezier(.2,.9,.2,1);
  --ease2: cubic-bezier(.2,.7,.2,1);
  --t-fast: 140ms;
  --t: 260ms;
  --t-slow: 520ms;
}

/* Typography */
html, body{
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.35;
  letter-spacing: -0.01em;
}

p{ color: var(--muted); margin: 0; }
h1,h2,h3{ margin: 0; letter-spacing: -0.03em; }
small{ color: var(--muted); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
}
