.sportiva-live-worldcup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 20px 0px 20px 0px; 
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
    animation: goldShineMove 3s infinite linear, goldPulse 2s infinite ease-in-out;
    transition: all 0.4s ease;
}

/* --- Penambahan Style Bulatan Warna-warni --- */
.wc-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    /* Gradasi warna-warni khas Piala Dunia */
    background: linear-gradient(45deg, #FF0000, #00FF00, #0000FF, #FFFF00);
    background-size: 400% 400%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: rainbowBlink 2s infinite linear;
}

@keyframes rainbowBlink {
    0% { background-position: 0% 50%; opacity: 0.5; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.5; }
}

/* --- Style yang sudah ada --- */
.sportiva-live-worldcup-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    border-color: #fff;
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 165, 0, 0.6); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9); }
}

@keyframes goldShineMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sportiva-live-worldcup-logo-frame {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoSpin 5s infinite linear;
}

.sportiva-live-worldcup-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.sportiva-live-worldcup-label {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}