/* =========================================

    OPTION 1: HIGH CONTRAST BOLD SHADOW (Recommended)

    This is the most effective way to make bright text readable against

    a busy, low-contrast background (like the fish photo).

    =========================================
    /
    h1 {
    / Retain the bright yellow for visibility */
    color: #FF0;

    /* Create a strong, multi-directional black shadow for maximum contrast /
    text-shadow:
    -2px -2px 0 #000,  / Top-left outline /
    2px -2px 0 #000,   / Top-right outline /
    -2px 2px 0 #000,   / Bottom-left outline /
    2px 2px 0 #000,    / Bottom-right outline /
    4px 4px 5px rgba(0, 0, 0, 0.8) !important; / Standard drop shadow for depth */

    /* Ensure styles are forcefully applied, if needed */
    -webkit-text-fill-color: #FF0 !important;
    }