/**
 * FINAL VERDICT - FORCE WHITE TEXT EVERYWHERE
 * 
 * Makes ALL text in final verdict white or gold.
 * Overrides ANY inline styles or other CSS.
 */

/* FORCE H2 "Final Verdict" HEADING TO BE GOLD */
.final-verdict h2,
.final-verdict > div > h2,
.final-verdict .final-verdict-content h2,
.final-verdict-content > h2 {
    color: #fbbf24 !important;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3) !important;
}

/* NUCLEAR: Force white text on EVERYTHING else in final verdict */
.final-verdict,
.final-verdict *,
.final-verdict p,
.final-verdict div,
.final-verdict span,
.final-verdict li,
.final-verdict h3,
.final-verdict h4,
.final-verdict h5,
.final-verdict h6,
.final-verdict em,
.final-verdict i,
.final-verdict .section-content-inner,
.final-verdict .section-content-inner *,
.final-verdict .section-content-inner p,
.final-verdict .section-content-inner div,
.final-verdict .section-content-inner span,
.final-verdict .section-content-inner li,
.final-verdict-content,
.final-verdict-content *,
.final-verdict [style*="color"] {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Gold for bold and links */
.final-verdict strong,
.final-verdict b,
.final-verdict a,
.final-verdict .section-content-inner strong,
.final-verdict .section-content-inner b,
.final-verdict .section-content-inner a,
.final-verdict strong[style],
.final-verdict b[style],
.final-verdict a[style] {
    color: #fbbf24 !important;
}

/* Make sure even inline styled elements are white/gold */
.final-verdict p[style*="color"],
.final-verdict div[style*="color"],
.final-verdict span[style*="color"] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.final-verdict strong[style*="color"],
.final-verdict b[style*="color"],
.final-verdict a[style*="color"] {
    color: #fbbf24 !important;
}

/* OVERRIDE THE H2 EVEN IF IT HAS INLINE STYLES */
.final-verdict h2[style*="color"],
.final-verdict-content h2[style*="color"] {
    color: #fbbf24 !important;
}
