:root {
    /* Dark Green theme background colors */
    --bg-primary: #001a00;
    --bg-secondary: #002d00;
    --bg-tertiary: #004000;
    --bg-card: rgba(0, 45, 0, 0.9);
    --bg-glass: rgba(0, 64, 0, 0.8);
    
    /* Green accent colors */
    --accent-primary: #33cc33;
    --accent-secondary: #00b300;
    --accent-tertiary: #66ff66;
    --accent-yellow: #99ff99;
    
    /* Dark Green theme text colors */
    --text-primary: #ffffff;
    --text-secondary: #ccffcc;
    --text-muted: #99ff99;
    
    /* Green gradients */
    --gradient-primary: linear-gradient(135deg, #00b300 0%, #33cc33 100%);
    --gradient-secondary: linear-gradient(135deg, #008000 0%, #66ff66 100%);
    --gradient-rainbow: linear-gradient(45deg, #00b300, #33cc33, #66ff66, #008000);
    
    /* Green shadows */
    --shadow-neon: 0 0 20px rgba(51, 204, 51, 0.5);
    --shadow-pink: 0 0 20px rgba(0, 179, 0, 0.4);
    --shadow-blue: 0 0 20px rgba(102, 255, 102, 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(0, 45, 0, 0.95) !important;
    --cookie-text-color: #ffffff !important;
    --cookie-button-color: linear-gradient(135deg, #33cc33 0%, #66ff66 100%) !important;
    --cookie-button-hover-color: linear-gradient(135deg, #00b300 0%, #99ff99 100%) !important;
    --cookie-button-text-color: #001a00 !important;
}