/* playcomesports.com - Indigo App theme (DARK_COLOR_SYSTEM_INDIGO_APP)
   Vertical: COME SPORTS - brand money site
   Different from iplfantasypro (Stadium Emerald) and iplsupercontest (Slate Pro App)
============================================================ */
:root {
  /* Primary: deep indigo blue */
  --primary: #6E8EFB;
  --primary-dark: #5570D9;
  --primary-light: #8AA5FC;
  --primary-border: rgba(110, 142, 251, 0.3);
  
  /* Accent: vibrant cyan */
  --accent: #4FC1E9;
  --accent-dark: #38A1C9;
  
  /* Surface gradient */
  --gradient-cta: linear-gradient(135deg, #6E8EFB, #4FC1E9);
  --gradient-hero: linear-gradient(180deg, #0A1530 0%, #060A1E 100%);
  
  /* Backgrounds */
  --background: #0A1530;
  --background-2: #060A1E;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.08);
  --overlay: rgba(10, 21, 48, 0.92);
  --soft-border: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  
  /* Text */
  --text: #F8FAFC;
  --text-muted: #B4BCCC;
  --muted: rgba(148, 163, 184, 0.9);
  --inverse: #060A1E;
  
  /* Header height */
  --header-h: 64px;
  --sticky-cta-h: 0px;
  
  /* Z-index */
  --z-header: 50;
  
  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  
  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 56px;
  --s-10: 80px;
  
  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, sans-serif;
}

html, body {
  background: var(--background);
  color: var(--text);
}
