/* =========================================================
   Fix: .sv-reward-widget's blue-purple gradient background
   was losing the CSS specificity war to the generic glass-card
   rule (higher specificity: two classes vs one), leaving white
   text on a near-white background = invisible blank box.
   ========================================================= */
.fb-right-rail > section.sv-reward-widget,
.social-right-rail > section.sv-reward-widget,
aside.sv-right-sidebar section.sv-reward-widget {
    background: linear-gradient(135deg, var(--sv-blue, #2563eb), var(--sv-purple, #7c3aed)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: #fff !important;
}
