/**
 * CSS Variables for casinoone.ai
 * Color Palette: Hot Pink (#FD3D91), Deep Purple (#1B0023), Darker Pink (#EE237C), Card Dark (#26162B)
 * Inspired by Slot theme - dark casino aesthetic
 */

:root {
    /* Primary Colors - Hot Pink */
    --color-primary: #FD3D91;
    --color-primary-dark: #EE237C;
    --color-primary-light: #FF6BA8;
    --color-primary-rgb: 253, 61, 145;

    /* Secondary Colors - Deep Purple */
    --color-secondary: #26162B;
    --color-secondary-dark: #1B0023;
    --color-secondary-light: #3D2845;
    --color-secondary-rgb: 38, 22, 43;

    /* Accent Colors */
    --color-accent: #EE237C;
    --color-accent-dark: #D01A6A;
    --color-accent-light: #FF6BA8;
    --color-accent-rgb: 238, 35, 124;

    /* Background Colors - Dark Theme */
    --color-bg: #1B0023;
    --color-bg-dark: #120018;
    --color-bg-light: #26162B;
    --color-bg-card: #26162B;
    --color-bg-header: #1B0023;
    --color-bg-footer: #120018;

    /* Text Colors */
    --color-text: #C4B4C9;
    --color-text-light: #B0A7B3;
    --color-text-muted: #8A7E8E;
    --color-text-white: #FFFEFE;
    --color-text-on-primary: #FFFFFF;
    --color-text-on-secondary: #FFFFFF;

    /* Semantic Colors */
    --color-success: #28A745;
    --color-error: #DC3545;
    --color-warning: #FFC107;
    --color-info: #17A2B8;

    /* Borders */
    --color-border: #413146;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FD3D91 0%, #EE237C 100%);
    --gradient-secondary: linear-gradient(135deg, #26162B 0%, #3D2845 100%);
    --gradient-accent: linear-gradient(135deg, #EE237C 0%, #FD3D91 100%);
    --gradient-hero: linear-gradient(180deg, #1B0023 0%, #26162B 50%, #1B0023 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(253, 61, 145, 0.1) 0%, rgba(238, 35, 124, 0.1) 100%);

    /* Typography - Sofia Sans Condensed for headings, Inter for body */
    --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: "Sofia Sans Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", monospace;

    /* Font Sizes - 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.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 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, 3.5rem);
    --text-5xl: clamp(3rem, 2.25rem + 3.75vw, 4.5rem);

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Spacing Scale */
    --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-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows - adapted for dark theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-card-hover: 0 8px 25px rgba(253, 61, 145, 0.2);
    --shadow-glow-primary: 0 0 20px rgba(253, 61, 145, 0.4);
    --shadow-glow-accent: 0 0 20px rgba(238, 35, 124, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-max: 1290px;
    --container-padding: 1rem;
    --header-height: 70px;
    --footer-min-height: 200px;

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

    /* Carousel Animation */
    --carousel-speed-row1: 240s;
    --carousel-speed-row2: 250s;
    --carousel-speed-row3: 260s;
}
