/* CSS Custom Properties - Color System and Effects */

:root {
    /* Colors - Background */
    --bg-primary: #0B0D10;
    --bg-secondary: #14171C;
    --bg-tertiary: #0E1014;

    /* Colors - Accent */
    --accent-gold: #F5A623;
    --accent-gold-light: #FFB547;

    /* Colors - Text */
    --text-primary: #FFFFFF;
    --text-secondary: #B0B3B8;
    --text-muted: #6B6F76;

    /* Colors - Status */
    --success: #22C55E;
    --danger: #EF4444;

    /* Effects */
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --hover-bg: rgba(245, 166, 35, 0.08);
}
