
:root {
    /* Primary Colors */
    --primary-color: #2e7d32;
    --secondary-color: #0056b3;
    --accent-color: #ffcc00;
    
    /* Neon Colors */
    --neon-cyan: #00f5ff;
    --neon-pink: #ff006e;
    --neon-green: #00ff88;
    --neon-yellow: #ffd60a;
    --neon-blue: #0099ff;
    --neon-purple: #b537f2;
    
    /* Background Colors */
    --bg-dark: #0f0f1e;
    --bg-darker: #0a0a14;
    --light-bg: #f8f9fa;
    --dark-bg: #001f3f;
    
    /* Text Colors */
    --text-color: #333;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-light: #e0e0e0;
    --white: #ffffff;
    
    /* Fonts */
    --font-main: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.25);
    
    /* Glows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.3);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.3);
    --glow-yellow: 0 0 20px rgba(255, 214, 10, 0.3);
    --glow-purple: 0 0 20px rgba(181, 55, 242, 0.3);
    --shadow-glow-secondary: 0 0 30px rgba(0, 168, 232, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Success/Danger Colors */
    --success: #06d6a0;
    --danger: #ef476f;
}

body {
    font-family: var(--font-main);
}
