:root {
  /* Primary Colors - Brazilian/Casino Theme */
  --color-primary: #628141;
  --color-secondary: #FFE52A;
  --color-accent: #CF0F0F;
  --color-bg: #061E29;

  /* RGB versions for rgba() */
  --color-primary-rgb: 98, 129, 65;
  --color-secondary-rgb: 255, 229, 42;
  --color-accent-rgb: 207, 15, 15;
  --color-bg-rgb: 6, 30, 41;

  /* Extended palette */
  --color-bg-light: #0a2a38;
  --color-bg-lighter: #0f3545;
  --color-text: #ffffff;
  --color-text-muted: #a0b4bd;
  --color-text-dark: #061E29;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-error: #CF0F0F;

  /* Typography */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: var(--font-main);

  /* Fluid typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --sidebar-width: 300px;

  /* Effects */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);

  --transition-fast: 150ms ease;
  --transition: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}
