/**
 * Meetgle Theme: 1v1cam
 * Pink-red and dark gradients
 */

:root {
    /* Primary button colors */
    --theme-button-primary: #FF4D6A;
    --theme-button-primary-hover: #FF2D87;
    --theme-button-primary-active: #FF4D6A;

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

    /* Glow animation colors (for profile pill) */
    --theme-glow-color-1: rgba(255, 77, 106, 0.8);
    --theme-glow-color-1-transparent: rgba(255, 77, 106, 0);
    --theme-glow-color-2: rgba(255, 45, 135, 0.8);
    --theme-glow-color-2-transparent: rgba(255, 45, 135, 0);

    /* Gradient definitions */
    --theme-gradient-pink: linear-gradient(135deg, #FF4D6A 0%, #FF2D87 100%);
    --theme-gradient-pink-hover: linear-gradient(135deg, #FF7A90 0%, #FF4D6A 100%);
    --theme-gradient-pink-active: linear-gradient(135deg, #FF2D87 0%, #E0264F 100%);

    --theme-gradient-purple: linear-gradient(135deg, #FF2D87 0%, #FF4D6A 100%);
    --theme-gradient-purple-hover: linear-gradient(135deg, #FF7A90 0%, #FF2D87 100%);
    --theme-gradient-purple-active: linear-gradient(135deg, #FF4D6A 0%, #E0264F 100%);

    /* Background gradients */
    --theme-gradient-dark: linear-gradient(135deg, #0D0D14 0%, #161622 100%);
    --theme-gradient-dark-alt: linear-gradient(135deg, #08080E 0%, #0D0D14 100%);

    /* Radial gradient overlays (for sparkle container) */
    --theme-radial-overlay-1: radial-gradient(circle at 30% 40%, rgba(255, 77, 106, 0.15) 0%, transparent 50%);
    --theme-radial-overlay-2: radial-gradient(circle at 70% 60%, rgba(255, 45, 135, 0.12) 0%, transparent 50%);

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

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

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

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

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

    /* Modal shadow color */
    --theme-modal-shadow: rgba(255, 77, 106, 0.5);
}
