/* ============================================
   CSS VARIABLES - Vibrant Casino Theme
   Palette: #FFB200, #EB5B00, #D91656, #640D5F
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  /* New Color Palette */
  --color-yellow: #FFB200;
  --color-orange: #EB5B00;
  --color-pink: #D91656;
  --color-purple: #640D5F;

  /* RGB values for rgba() usage */
  --color-yellow-rgb: 255, 178, 0;
  --color-orange-rgb: 235, 91, 0;
  --color-pink-rgb: 217, 22, 86;
  --color-purple-rgb: 100, 13, 95;

  /* Background Colors - Dark purple theme */
  --color-bg: #1a0a1a;
  --color-bg-secondary: #2a1229;
  --color-bg-tertiary: #3d1a3a;
  --color-bg-dark: #120812;
  --color-bg-darker: #0a050a;
  --color-bg-light: #4d2249;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Primary Colors - Deep purple */
  --color-primary: #640D5F;
  --color-primary-dark: #4a0947;
  --color-primary-light: #D91656;
  --color-primary-rgb: 100, 13, 95;
  --color-primary-bg: rgba(100, 13, 95, 0.2);

  /* Secondary - Orange */
  --color-secondary: #EB5B00;
  --color-secondary-dark: #c94d00;
  --color-secondary-light: #FFB200;
  --color-secondary-rgb: 235, 91, 0;

  /* Accent Colors - Yellow/Gold */
  --color-accent: #FFB200;
  --color-accent-dark: #e6a000;
  --color-accent-light: #ffc433;
  --color-accent-rgb: 255, 178, 0;

  /* CTA Colors */
  --color-cta: #FFB200;
  --color-cta-hover: #EB5B00;
  --color-cta-secondary: #D91656;
  --color-cta-secondary-hover: #f01d66;

  /* Text Colors */
  --color-text: #ffffff;
  --color-text-secondary: #f0d4ef;
  --color-text-light: #c9a8c7;
  --color-text-muted: #9a7a98;
  --color-text-white: #ffffff;

  /* UI Colors */
  --color-success: #4ade80;
  --color-success-bg: rgba(74, 222, 128, 0.15);
  --color-error: #f87171;
  --color-error-bg: rgba(248, 113, 113, 0.15);
  --color-warning: #FFB200;
  --color-warning-bg: rgba(255, 178, 0, 0.15);
  --color-info: #D91656;
  --color-info-bg: rgba(217, 22, 86, 0.15);

  /* Border Colors */
  --color-border: rgba(217, 22, 86, 0.3);
  --color-border-light: rgba(217, 22, 86, 0.15);
  --color-border-dark: rgba(217, 22, 86, 0.5);

  /* Glass effect */
  --glass-bg: rgba(100, 13, 95, 0.15);
  --glass-border: rgba(217, 22, 86, 0.3);
  --glass-blur: blur(12px);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #640D5F 0%, #D91656 100%);
  --gradient-gold: linear-gradient(135deg, #FFB200 0%, #EB5B00 100%);
  --gradient-dark: linear-gradient(135deg, #1a0a1a 0%, #3d1a3a 100%);
  --gradient-hero: linear-gradient(135deg, #640D5F 0%, #D91656 50%, #640D5F 100%);
  --gradient-cta: linear-gradient(135deg, #FFB200 0%, #EB5B00 100%);
  --gradient-sunset: linear-gradient(135deg, #EB5B00 0%, #D91656 100%);

  /* Colorful Section Gradients */
  --gradient-royal: linear-gradient(135deg, #1a0a1a 0%, #640D5F 50%, #1a0a1a 100%);
  --gradient-emerald: linear-gradient(135deg, #0a1a12 0%, #1a4d30 50%, #0a1a12 100%);
  --gradient-ocean: linear-gradient(135deg, #0a121a 0%, #1a3d4d 50%, #0a121a 100%);
  --gradient-sunset: linear-gradient(135deg, #1a0a0a 0%, #EB5B00 50%, #1a0a0a 100%);
  --gradient-neon: linear-gradient(135deg, rgba(255, 178, 0, 0.1) 0%, rgba(235, 91, 0, 0.1) 50%, rgba(217, 22, 86, 0.1) 100%);

  /* Section Accent Colors */
  --color-royal: #640D5F;
  --color-royal-rgb: 100, 13, 95;
  --color-emerald: #1a4d30;
  --color-emerald-rgb: 26, 77, 48;
  --color-ocean: #1a3d4d;
  --color-ocean-rgb: 26, 61, 77;

  /* Typography - Roboto */
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Roboto', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* 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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* 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;
  --space-4xl: 6rem;

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

  /* Shadows - With pink/purple tint */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 8px 30px rgba(217, 22, 86, 0.3);
  --shadow-glow: 0 0 20px rgba(255, 178, 0, 0.4);
  --shadow-glow-strong: 0 0 30px rgba(255, 178, 0, 0.6);
  --shadow-glow-pink: 0 0 20px rgba(217, 22, 86, 0.4);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;

  /* Container */
  --container-max: 1200px;
  --container-padding: 1rem;

  /* Header */
  --header-height: 85px;
}

/* Dark pink/purple scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Selection with yellow */
::selection {
  background: var(--color-yellow);
  color: var(--color-bg-dark);
}
