:root {
    /* Dark Purple theme background colors */
    --bg-primary: #1a0033;
    --bg-secondary: #2a004d;
    --bg-tertiary: #330066;
    --bg-card: rgba(42, 0, 77, 0.9);
    --bg-glass: rgba(51, 0, 102, 0.8);
    
    /* Purple accent colors */
    --accent-primary: #a64dff;
    --accent-secondary: #8000ff;
    --accent-tertiary: #c285ff;
    --accent-yellow: #d9b3ff;
    
    /* Dark Purple theme text colors */
    --text-primary: #ffffff;
    --text-secondary: #e5ccff;
    --text-muted: #bf99ff;
    
    /* Purple gradients */
    --gradient-primary: linear-gradient(135deg, #8000ff 0%, #a64dff 100%);
    --gradient-secondary: linear-gradient(135deg, #5a00b3 0%, #a64dff 100%);
    --gradient-rainbow: linear-gradient(45deg, #8000ff, #a64dff, #c285ff, #5a00b3);
    
    /* Purple shadows */
    --shadow-neon: 0 0 20px rgba(166, 77, 255, 0.5);
    --shadow-pink: 0 0 20px rgba(128, 0, 255, 0.4);
    --shadow-blue: 0 0 20px rgba(194, 133, 255, 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(42, 0, 77, 0.95) !important;
    --cookie-text-color: #ffffff !important;
    --cookie-button-color: linear-gradient(135deg, #a64dff 0%, #c285ff 100%) !important;
    --cookie-button-hover-color: linear-gradient(135deg, #8000ff 0%, #d9b3ff 100%) !important;
    --cookie-button-text-color: #1a0033 !important;
}