/* Holland Casino Inspired Design System */
:root {
  /* Brand Colors */
  --color-purple-deep: #360185;
  --color-purple-dark: #2a0169;
  --color-magenta: #8F0177;
  --color-magenta-dark: #6d015b;
  --color-red: #DE1A58;
  --color-red-dark: #b8154a;
  --color-gold: #F4B342;
  --color-gold-dark: #d99a2e;
  --color-gold-light: #f7c76a;

  /* Primary colors */
  --color-primary: #F4B342;
  --color-primary-hover: #d99a2e;
  --color-primary-rgb: 244, 179, 66;

  /* Secondary */
  --color-secondary: #DE1A58;
  --color-secondary-hover: #b8154a;

  /* Background colors - Dark luxury theme */
  --color-bg-darkest: #0d0315;
  --color-bg-darker: #150525;
  --color-bg: #1a0830;
  --color-bg-light: #260c45;
  --color-bg-lighter: #360185;
  --color-bg-accent: #0a0210;
  --color-bg-card: linear-gradient(145deg, rgba(54, 1, 133, 0.4) 0%, rgba(26, 8, 48, 0.8) 100%);

  /* Gradient backgrounds */
  --gradient-primary: linear-gradient(135deg, #c084fc 0%, #f0abfc 50%, #fb7185 100%);
  --gradient-gold: linear-gradient(135deg, #F4B342 0%, #d99a2e 100%);
  --gradient-hero: linear-gradient(180deg, rgba(54, 1, 133, 0.9) 0%, rgba(13, 3, 21, 0.98) 100%);
  --gradient-card: linear-gradient(145deg, rgba(143, 1, 119, 0.2) 0%, rgba(54, 1, 133, 0.3) 100%);

  /* Text colors */
  --color-text: #ffffff;
  --color-text-secondary: #e0d4f0;
  --color-text-muted: #a090c0;
  --color-text-faint: #6a5a8a;
  --color-text-link: #F4B342;
  --color-text-gold: #F4B342;

  /* Interactive colors */
  --color-interactive: #c0b0e0;
  --color-interactive-hover: #ffffff;
  --color-interactive-active: #F4B342;

  /* Status colors */
  --color-success: #4ade80;
  --color-warning: #F4B342;
  --color-danger: #DE1A58;
  --color-info: #8F0177;

  /* Border & Divider */
  --color-border: rgba(143, 1, 119, 0.3);
  --color-border-light: rgba(244, 179, 66, 0.2);
  --color-divider: rgba(143, 1, 119, 0.2);

  /* Fonts */
  --font-display: "Noto Sans JP", "Hiragino Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-code: "Consolas", "Monaco", "Andale Mono", monospace;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-hero: clamp(2.5rem, 6vw, 5rem);

  /* Font weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Line heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* Spacing - 4px base */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;

  /* Shadows - Luxury glow effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-glow-gold: 0 0 30px rgba(244, 179, 66, 0.4);
  --shadow-glow-magenta: 0 0 30px rgba(143, 1, 119, 0.5);
  --shadow-glow-red: 0 0 20px rgba(222, 26, 88, 0.4);
  --shadow-text: 1px 1px 16px rgba(0, 0, 0, 0.8);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-transform: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1440px;

  /* Header */
  --header-height: 80px;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}
