:root {
    /* Dark Orange theme background colors */
    --bg-primary: #261300;
    --bg-secondary: #3d1f00;
    --bg-tertiary: #552b00;
    --bg-card: rgba(61, 31, 0, 0.9);
    --bg-glass: rgba(85, 43, 0, 0.8);
    
    /* Orange accent colors */
    --accent-primary: #ff8c1a;
    --accent-secondary: #e67300;
    --accent-tertiary: #ffa64d;
    --accent-yellow: #ffbf80;
    
    /* Dark Orange theme text colors */
    --text-primary: #ffffff;
    --text-secondary: #ffe6cc;
    --text-muted: #ffd9b3;
    
    /* Orange gradients */
    --gradient-primary: linear-gradient(135deg, #e67300 0%, #ff8c1a 100%);
    --gradient-secondary: linear-gradient(135deg, #cc6600 0%, #ffa64d 100%);
    --gradient-rainbow: linear-gradient(45deg, #e67300, #ff8c1a, #ffa64d, #cc6600);
    
    /* Orange shadows */
    --shadow-neon: 0 0 20px rgba(255, 140, 26, 0.5);
    --shadow-pink: 0 0 20px rgba(230, 115, 0, 0.4);
    --shadow-blue: 0 0 20px rgba(255, 166, 77, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    /* Smooth transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Cookie banner styling */
    --cookie-background-color: rgba(61, 31, 0, 0.95) !important;
    --cookie-text-color: #ffffff !important;
    --cookie-button-color: linear-gradient(135deg, #ff8c1a 0%, #ffa64d 100%) !important;
    --cookie-button-hover-color: linear-gradient(135deg, #e67300 0%, #ffbf80 100%) !important;
    --cookie-button-text-color: #261300 !important;
}