/**
 * CSS Variables - suomalaisnettikasinot.net
 * Rifa-inspired: Deep purple + vibrant magenta/pink + orange gradients
 */

:root {
    /* === PRIMARY PALETTE === */
    --color-primary: #e91e63;
    --color-primary-dark: #c2185b;
    --color-primary-light: #f48fb1;
    --color-primary-rgb: 233, 30, 99;

    --color-secondary: #7c4dff;
    --color-secondary-dark: #651fff;
    --color-secondary-light: #b388ff;
    --color-secondary-rgb: 124, 77, 255;

    --color-accent: #ff9100;
    --color-accent-dark: #e65100;
    --color-accent-light: #ffab40;
    --color-accent-rgb: 255, 145, 0;

    /* === BACKGROUNDS === */
    --color-bg: #0f0025;
    --color-bg-light: #1a0036;
    --color-bg-dark: #0a001a;
    --color-bg-card: #1e1147;
    --color-bg-card-alt: #231555;
    --color-bg-header: #0f0025;
    --color-bg-footer: #0a001a;

    /* === TEXT === */
    --color-text: rgba(255, 255, 255, 0.85);
    --color-text-light: rgba(255, 255, 255, 0.65);
    --color-text-muted: rgba(255, 255, 255, 0.45);
    --color-text-white: #ffffff;
    --color-text-dark: #1a1a2e;

    /* === SEMANTIC === */
    --color-success: #00d084;
    --color-error: #ff1744;
    --color-warning: #ffb800;
    --color-info: #2196f3;

    /* === GRADIENTS === */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #e91e63 50%, #d81b60 100%);
    --gradient-secondary: linear-gradient(135deg, #7c4dff 0%, #651fff 100%);
    --gradient-accent: linear-gradient(135deg, #ff9100 0%, #ff6d00 100%);
    --gradient-hero: linear-gradient(180deg, #1a0036 0%, #2d0060 40%, #7c4dff 70%, #e91e63 100%);
    --gradient-card: linear-gradient(160deg, #1e1147 0%, #2a1760 100%);
    --gradient-dark: linear-gradient(180deg, #0f0025 0%, #1a0036 100%);

    /* === SHADOWS === */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 12px 40px rgba(124, 77, 255, 0.25);
    --shadow-glow-primary: 0 0 30px rgba(233, 30, 99, 0.4);
    --shadow-glow-accent: 0 0 30px rgba(255, 145, 0, 0.4);
    --shadow-glow-secondary: 0 0 30px rgba(124, 77, 255, 0.4);

    /* === TYPOGRAPHY === */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-display: 'Cardo', serif;
    --font-bold: 700;
    --font-semibold: 600;
    --font-medium: 500;
    --font-regular: 400;
    --font-light: 300;

    --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.75rem;
    --text-5xl: 3.5rem;

    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;

    /* === SPACING === */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* === BORDERS === */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* === LAYOUT === */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    --header-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* === Z-INDEX === */
    --z-dropdown: 100;
    --z-fixed: 1000;
    --z-modal-backdrop: 2000;
    --z-modal: 2001;

    /* === CAROUSEL === */
    --carousel-speed-row1: 30s;
    --carousel-speed-row2: 35s;
    --carousel-speed-row3: 40s;
}
