/**
 * Meetgle Theme: TalkCity
 * Electric blue (#0455FC) with deep royal-blue (#023CB5) accents
 */

:root {
    /* Primary button colors */
    --theme-button-primary: #0455FC;
    --theme-button-primary-hover: #2E6DFF;
    --theme-button-primary-active: #0346D2;

    /* Primary gradient (used for buttons and small elements) */
    --theme-gradient-primary: linear-gradient(135deg, #0455FC 0%, #023CB5 100%);

    /* Glow animation colors (for profile pill) */
    --theme-glow-color-1: rgba(4, 85, 252, 0.8);
    --theme-glow-color-1-transparent: rgba(4, 85, 252, 0);
    --theme-glow-color-2: rgba(2, 60, 181, 0.8);
    --theme-glow-color-2-transparent: rgba(2, 60, 181, 0);

    /* Gradient definitions */
    --theme-gradient-pink: linear-gradient(135deg, #2E6DFF 0%, #0455FC 100%);
    --theme-gradient-pink-hover: linear-gradient(135deg, #4F83FF 0%, #2E6DFF 100%);
    --theme-gradient-pink-active: linear-gradient(135deg, #0455FC 0%, #0346D2 100%);

    --theme-gradient-purple: linear-gradient(135deg, #023CB5 0%, #022C86 100%);
    --theme-gradient-purple-hover: linear-gradient(135deg, #0347D8 0%, #023CB5 100%);
    --theme-gradient-purple-active: linear-gradient(135deg, #02339B 0%, #022578 100%);

    /* Background gradients */
    --theme-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --theme-gradient-dark-alt: linear-gradient(135deg, #0D1220 0%, #16213E 100%);

    /* Radial gradient overlays (for sparkle container) */
    --theme-radial-overlay-1: radial-gradient(circle at 30% 40%, rgba(4, 85, 252, 0.15) 0%, transparent 50%);
    --theme-radial-overlay-2: radial-gradient(circle at 70% 60%, rgba(2, 60, 181, 0.12) 0%, transparent 50%);

    /* Text gradient (for count number) */
    --theme-text-gradient: linear-gradient(135deg, #2E6DFF, #0455FC);

    /* Modal/Leaderboard gradient */
    --theme-modal-gradient: linear-gradient(135deg, #2E6DFF 0%, #023CB5 100%);

    /* Modal header gradient (3-color gradient for notifications, transactions, etc) */
    --theme-modal-header-gradient: linear-gradient(135deg, #0455FC 0%, #0349D9 50%, #023CB5 100%);

    /* Store modal background (talkcity gradient) */
    --theme-store-modal-bg: linear-gradient(135deg, #0455FC 0%, #023CB5 100%);

    /* Store price badge gradient */
    --theme-store-price-gradient: linear-gradient(135deg, #0455FC 0%, #2E6DFF 100%);

    /* Modal shadow color */
    --theme-modal-shadow: rgba(4, 85, 252, 0.5);
}
