/**
 * CSS Variables for all-slots-casino.angelsfucked.com
 * Color Palette: Neon Velvet — Electric Teal (#00C9A7) + Jet Black (#08080F) + Coral Red (#FF4560) + Amber (#FFC400)
 */

:root {
    /* Primary Colors — Electric Teal (CTA buttons, highlights) */
    --color-primary: #00C9A7;
    --color-primary-dark: #00a388;
    --color-primary-light: #33d4b8;
    --color-primary-rgb: 0, 201, 167;

    /* Secondary Colors — Jet Black (dark sections, backgrounds) */
    --color-secondary: #08080F;
    --color-secondary-dark: #040408;
    --color-secondary-light: #12121E;
    --color-secondary-rgb: 8, 8, 15;

    /* Accent Colors — Coral Red (links, hover, accents) */
    --color-accent: #FF4560;
    --color-accent-dark: #e02040;
    --color-accent-light: #ff6b82;
    --color-accent-rgb: 255, 69, 96;

    /* Accent2 — Amber (warm highlights) */
    --color-amber: #FFC400;
    --color-amber-dark: #e0ac00;
    --color-amber-light: #ffd040;

    /* Background Colors */
    --color-bg: #08080F;
    --color-bg-dark: #040408;
    --color-bg-light: #12121E;
    --color-bg-card: #0E0E1C;
    --color-bg-header: rgba(8, 8, 15, 0.92);
    --color-bg-footer: #040408;

    /* Text Colors */
    --color-text: #E2E8F0;
    --color-text-light: #94A3B8;
    --color-text-muted: #4A5568;
    --color-text-white: #ffffff;
    --color-text-on-primary: #000000;
    --color-text-on-secondary: #ffffff;

    /* Semantic Colors */
    --color-success: #00C9A7;
    --color-error: #FF4560;
    --color-warning: #FFC400;
    --color-info: #33d4b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0,201,167,0.18) 0%, rgba(255,69,96,0.12) 50%, rgba(255,196,0,0.08) 100%);
    --gradient-card: linear-gradient(145deg, #0E0E1C 0%, #12121E 100%);
    --gradient-teal-coral: linear-gradient(135deg, #00C9A7 0%, #FF4560 100%);

    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-main: 'Nunito', 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);

    /* Line Heights */
    --leading-tight: 1.15;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

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

    /* 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: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.7);
    --shadow-teal: 0 0 30px rgba(0, 201, 167, 0.4);
    --shadow-coral: 0 0 30px rgba(255, 69, 96, 0.4);
    --shadow-amber: 0 0 30px rgba(255, 196, 0, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 280ms ease;
    --transition-slow: 500ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --header-height: 100px;
    --topbar-height: 40px;
    --nav-height: 60px;
    --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;
}
