/* STARZPLAY — Spacing, radius, shadow & motion tokens */
:root {
  /* spacing — 4px base grid */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* radii — STARZPLAY UI is soft but not pill-y; posters keep small radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* elevation — soft dark shadows + cyan glow for active media */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 20px rgba(0,0,0,.5);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.6);
  --glow-cyan: 0 0 0 1px rgba(0,216,220,.5), 0 8px 32px rgba(0,216,220,.35);
  --glow-soft: 0 0 40px rgba(30,255,253,.25);

  /* layout */
  --container-max: 1280px;
  --gutter: var(--space-5);

  /* motion — calm, confident; ease-out for entrances, no bounce */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
  --dur-slow: 420ms; /* @kind other */
}
