        #UUSTOTO-trending-tags {
            max-width: 1000px; margin: 40px auto; padding: 30px;
            text-align: center; font-family: sans-serif;
        }
        #UUSTOTO-trending-tags h3 { color: #ff8c00; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 3px; font-weight: 800; }
        
        #UUSTOTO-trending-tags .tag-container {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;
        }

        #UUSTOTO-trending-tags .tag {
            padding: 12px 22px; background: #000; color: #ff8c00;
            border: 2px solid #ff8c00; border-radius: 50px;
            font-size: 0.9rem; font-weight: bold; cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
            text-transform: uppercase;
        }

        /* Efek Glow Playful */
        #UUSTOTO-trending-tags .tag:hover {
            background: #ff8c00; color: #000;
            box-shadow: 0 0 25px rgba(255, 140, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.5);
            transform: scale(1.1) rotate(-2deg);
        }
    
