/* ============================================================
   FILE: assets/css/variables.css
   CHỨC NĂNG: Biến màu sắc và thiết lập chung
   ============================================================ */

:root {
    /* Màu nền */
    --bg-primary: #07151D;
    --bg-card: #102430;
    --bg-header: #0E1D28;
    --bg-nav: #0B1620;
    
    /* Màu chính */
    --color-primary: #00E5FF;
    --color-secondary: #00C2FF;
    --color-success: #00D084;
    --color-warning: #FFC107;
    --color-error: #FF4D4F;
    
    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #8E9EAB;
    --text-muted: #5A6B78;
    
    /* Border */
    --border-radius: 18px;
    --border-radius-sm: 10px;
    --border-radius-xs: 6px;
    
    /* Shadow */
    --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);
    
    /* Glow */
    --glow-primary: 0 0 20px rgba(0, 229, 255, 0.3);
    
    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

/* Scrollbar tùy chỉnh */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}