/**
 * CSS Variables for multibet88-multibet88.it.com
 * Color Palette: Amber Gold (#B45309), Dark Stone (#1C1917), Bright Gold (#F59E0B)
 */

:root {
    /* Primary Colors */
    --color-primary: #B45309;
    --color-primary-dark: #92400E;
    --color-primary-light: #D97706;
    --color-primary-rgb: 180, 83, 9;

    /* Secondary Colors */
    --color-secondary: #1C1917;
    --color-secondary-dark: #0C0A09;
    --color-secondary-light: #292524;
    --color-secondary-rgb: 28, 25, 23;

    /* Accent Colors */
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;
    --color-accent-light: #FCD34D;
    --color-accent-rgb: 245, 158, 11;

    /* Background Colors */
    --color-bg: #0F0E0D;
    --color-bg-dark: #0C0A09;
    --color-bg-light: #1C1917;
    --color-bg-card: #1C1917;
    --color-bg-header: #0C0A09;
    --color-bg-footer: #0C0A09;

    /* Text Colors */
    --color-text: #E7E5E4;
    --color-text-light: #A8A29E;
    --color-text-muted: #78716C;
    --color-text-white: #FFFFFF;
    --color-text-on-primary: #FFFFFF;
    --color-text-on-secondary: #E7E5E4;

    /* Border Colors */
    --color-border: #292524;
    --color-border-light: #3C3836;
    --color-border-dark: #1C1917;

    /* Status Colors */
    --color-success: #22C55E;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;

    /* Typography */
    --font-heading: 'Rajdhani', 'Arial Black', sans-serif;
    --font-body: 'Nunito', 'Arial', sans-serif;
    --font-main: 'Nunito', 'Arial', sans-serif;
    --font-mono: 'Courier New', 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: 1.875rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

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

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 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: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 30px rgba(245, 158, 11, 0.2);
    --shadow-gold: 0 0 20px rgba(245, 158, 11, 0.35);
    --shadow-glow-primary: 0 0 25px rgba(180, 83, 9, 0.5);
    --shadow-glow-accent: 0 0 25px rgba(245, 158, 11, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #B45309 0%, #F59E0B 100%);
    --gradient-secondary: linear-gradient(135deg, #0C0A09 0%, #1C1917 100%);
    --gradient-accent: linear-gradient(135deg, #D97706 0%, #FCD34D 100%);
    --gradient-hero: linear-gradient(135deg, #0C0A09 0%, #1a1208 50%, #0C0A09 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(180, 83, 9, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);

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

    /* Layout */
    --container-max: 1240px;
    --container-padding: 1.5rem;
    --header-height: 68px;
    --total-header-height: 68px;
    --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;
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --total-header-height: 60px;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.5rem;
    }
}
