/**
 * Meetgle Theme: Spinmeet
 * Warm coral and rustic red gradients
 */

:root {
    /* Primary button colors */
    --theme-button-primary: #fe7870;
    --theme-button-primary-hover: #ff9690;
    --theme-button-primary-active: #fe7870;
    
    /* Primary gradient (used for buttons and small elements) */
    --theme-gradient-primary: linear-gradient(135deg, #fe7870 0%, #aa504b 100%);
    
    /* Glow animation colors (for profile pill) */
    --theme-glow-color-1: rgba(254, 120, 112, 0.8);
    --theme-glow-color-1-transparent: rgba(254, 120, 112, 0);
    --theme-glow-color-2: rgba(170, 80, 75, 0.8);
    --theme-glow-color-2-transparent: rgba(170, 80, 75, 0);
    
    /* Gradient definitions */
    --theme-gradient-pink: linear-gradient(135deg, #ff9690 0%, #fe7870 100%);
    --theme-gradient-pink-hover: linear-gradient(135deg, #ffb4b0 0%, #ff9690 100%);
    --theme-gradient-pink-active: linear-gradient(135deg, #fe7870 0%, #e66860 100%);
    
    --theme-gradient-purple: linear-gradient(135deg, #fe7870 0%, #aa504b 100%);
    --theme-gradient-purple-hover: linear-gradient(135deg, #ff9690 0%, #c06560 100%);
    --theme-gradient-purple-active: linear-gradient(135deg, #e66860 0%, #994540 100%);
    
    /* Background gradients */
    --theme-gradient-dark: linear-gradient(135deg, #2d1715 0%, #3d201d 100%);
    --theme-gradient-dark-alt: linear-gradient(135deg, #1a0d0c 0%, #3d201d 100%);
    
    /* Radial gradient overlays (for sparkle container) */
    --theme-radial-overlay-1: radial-gradient(circle at 30% 40%, rgba(254, 120, 112, 0.15) 0%, transparent 50%);
    --theme-radial-overlay-2: radial-gradient(circle at 70% 60%, rgba(170, 80, 75, 0.12) 0%, transparent 50%);
    
    /* Text gradient (for count number) */
    --theme-text-gradient: linear-gradient(135deg, #fe7870, #ff9690);
    
    /* Modal/Leaderboard gradient */
    --theme-modal-gradient: linear-gradient(135deg, #ff9690 0%, #fe7870 100%);
    
    /* Modal header gradient (3-color gradient for notifications, transactions, etc) */
    --theme-modal-header-gradient: linear-gradient(135deg, #fe7870 0%, #e66860 50%, #aa504b 100%);
    
    /* Store modal background (spinmeet gradient) */
    --theme-store-modal-bg: linear-gradient(135deg, #fe7870 0%, #aa504b 100%);
    
    /* Store price badge gradient */
    --theme-store-price-gradient: linear-gradient(135deg, #fe7870 0%, #ff9690 100%);
    
    /* Modal shadow color */
    --theme-modal-shadow: rgba(254, 120, 112, 0.5);
}
