/**
 * Meetgle Theme: BlogTV
 * Warm amber and deep orange gradients
 */

:root {
    /* Primary button colors */
    --theme-button-primary: #FB9C04;
    --theme-button-primary-hover: #E88E00;
    --theme-button-primary-active: #D58000;

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

    /* Glow animation colors (for profile pill) */
    --theme-glow-color-1: rgba(251, 156, 4, 0.8);
    --theme-glow-color-1-transparent: rgba(251, 156, 4, 0);
    --theme-glow-color-2: rgba(199, 122, 0, 0.8);
    --theme-glow-color-2-transparent: rgba(199, 122, 0, 0);

    /* Gradient definitions */
    --theme-gradient-pink: linear-gradient(135deg, #FB9C04 0%, #C77A00 100%);
    --theme-gradient-pink-hover: linear-gradient(135deg, #E88E00 0%, #B56E00 100%);
    --theme-gradient-pink-active: linear-gradient(135deg, #D58000 0%, #A36300 100%);

    --theme-gradient-purple: linear-gradient(135deg, #C77A00 0%, #FB9C04 100%);
    --theme-gradient-purple-hover: linear-gradient(135deg, #B56E00 0%, #E88E00 100%);
    --theme-gradient-purple-active: linear-gradient(135deg, #A36300 0%, #D58000 100%);

    /* Background gradients */
    --theme-gradient-dark: linear-gradient(135deg, #3d2800 0%, #1a1100 100%);
    --theme-gradient-dark-alt: linear-gradient(135deg, #2a1b00 0%, #1a1100 100%);

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

    /* Text gradient (for count number) */
    --theme-text-gradient: linear-gradient(135deg, #FB9C04, #C77A00);

    /* Modal/Leaderboard gradient */
    --theme-modal-gradient: linear-gradient(135deg, #FB9C04 0%, #C77A00 100%);

    /* Modal header gradient (3-color gradient for notifications, transactions, etc) */
    --theme-modal-header-gradient: linear-gradient(135deg, #FB9C04 0%, #C77A00 50%, #FB9C04 100%);

    /* Store modal background */
    --theme-store-modal-bg: linear-gradient(135deg, #C77A00 0%, #FB9C04 100%);

    /* Store price badge gradient */
    --theme-store-price-gradient: linear-gradient(135deg, #FB9C04 0%, #C77A00 100%);

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