﻿/* ===== BIPOM COINS GOLD GLOW - FINAL ===== */

.top .brand-text{
    display:inline-block !important;

    font-size:25px !important;
    font-weight:900 !important;
    line-height:1.15 !important;

    color:#d79a00 !important;
    -webkit-text-fill-color:#d79a00 !important;

    background:none !important;

    text-shadow:
        0 0 2px rgba(255,210,70,.25),
        0 0 6px rgba(255,185,0,.15) !important;

    animation:bipomGlow 1.15s ease-in-out infinite alternate !important;
}

/* bỏ toàn bộ lớp phủ cũ */
.top .brand-text::before,
.top .brand-text::after{
    content:none !important;
    display:none !important;
}

@keyframes bipomGlow{
    0%{
        color:#c88b00;
        -webkit-text-fill-color:#c88b00;

        text-shadow:
            0 0 1px rgba(255,200,40,.20),
            0 0 4px rgba(255,170,0,.12);

        filter:brightness(.92);
    }

    50%{
        color:#ffd447;
        -webkit-text-fill-color:#ffd447;

        text-shadow:
            0 0 4px rgba(255,244,180,.85),
            0 0 9px rgba(255,201,35,.55),
            0 0 15px rgba(255,174,0,.25);

        filter:brightness(1.28);
    }

    100%{
        color:#e2a500;
        -webkit-text-fill-color:#e2a500;

        text-shadow:
            0 0 2px rgba(255,220,90,.35),
            0 0 6px rgba(255,185,0,.18);

        filter:brightness(1);
    }
}

@media(max-width:700px){
    .top .brand-text{
        font-size:22px !important;
    }
}
