.great-vibes-text-dark {
    font-family: 'arial';
    font-size: 16px !important;
    font-weight: normal;
    text-align: center;
    letter-spacing: 2px;
    margin: 15px 0;

    /* Gradient emas */
    background: linear-gradient(90deg, #ffd700, #ffcc33, #fff1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Glow keemasan */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
                 0 0 16px rgba(255, 223, 100, 0.4);

    /* Animasi lembut */
    animation: gold-glow 3s ease-in-out infinite alternate;
}

@keyframes gold-glow {
    from {
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
                     0 0 16px rgba(255, 223, 100, 0.4);
    }
    to {
        text-shadow: 0 0 14px rgba(255, 215, 0, 0.8),
                     0 0 24px rgba(255, 223, 100, 0.6);
    }
}
