/* ============================
   WHITE STYLE – Clean & Modern
   ============================ */

.ulse-white {
    font-family: "Noto Sans", Arial, sans-serif;
    line-height: 1.8;
    color: #222;
    background: #ffffff;
    padding: 30px 28px;
    margin: 30px auto;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 0 24px rgba(0,0,0,0.08);
    border: 1px solid #e7e7e7;
}

.ulse-white h1,
.ulse-white h2,
.ulse-white h3 {
    color: #1a1a1a;
    margin-top: 24px;
}

.ulse-white p {
    margin-bottom: 18px;
}

.ulse-white a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.ulse-white a:hover {
    text-decoration: underline;
}

/* Shine effect for strong / links (borrowed from text style) */
.ulse-white strong,
.ulse-white b,
.ulse-white a {
    font-weight: 700;
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #d0d0d0 20%,
        #b5b5b5 40%,
        #4e4d4d 65%,
        #d5d5d5 75%,
        #ffffff 100%
    );
    background-size: 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #000;
    animation: neutralSilver 6s linear infinite;
}

.ulse-white a {
    text-decoration: none;
}

.ulse-white a:hover {
    text-decoration: underline;
}

@keyframes neutralSilver {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}




