/* ✅ 16 — Brand Shine (Metallic Gold Shimmering Text — BAJI444/wintk) */
.brand-shine {
    background: linear-gradient(90deg, #fef08a 0%, #facc15 30%, #ffffff 50%, #facc15 70%, #ca8a04 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.4));
    animation: brandShimmer 4s linear infinite;
    letter-spacing: .5px;
}
@keyframes brandShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: -250% center; }
}
.brand-divider {
    color: rgba(250, 204, 21, .5);
    font-weight: 300;
    text-shadow: 0 0 6px rgba(250, 204, 21, .3);
}
