        /* Menggunakan #UUSTOTO-reviews sebagai prefix agar aman */
        #UUSTOTO-reviews .review-section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 30px;
            background: #000;
            border-radius: 20px;
            border: 2px solid #ff8c00;
            font-family: sans-serif;
            box-sizing: border-box;
        }

        #UUSTOTO-reviews .section-title {
            color: #ff8c00;
            text-align: center;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        #UUSTOTO-reviews .main-content {
            display: flex;
            gap: 30px;
        }

        #UUSTOTO-reviews .rating-side {
            flex: 1;
            background: #ff8c00;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            color: #000;
            height: fit-content;
        }

        #UUSTOTO-reviews .big-score { font-size: 5rem; font-weight: 800; margin: 0; line-height: 1; }
        #UUSTOTO-reviews .stars-big { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }

        #UUSTOTO-reviews .reviews-side {
            flex: 2;
            height: 450px;
            overflow: hidden;
            position: relative;
        }

        #UUSTOTO-reviews .reviews-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
            animation: UUSTOTO-scroll 40s linear infinite;
        }

        #UUSTOTO-reviews .reviews-wrapper:hover { animation-play-state: paused; }

        #UUSTOTO-reviews .review-card {
            background: #111;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #333;
            color: #ddd;
            flex-shrink: 0;
        }

        #UUSTOTO-reviews .user-name { color: #ff8c00; font-weight: bold; font-size: 0.95rem; margin-bottom: 5px; display: block; }
        #UUSTOTO-reviews .review-text { font-size: 0.85rem; line-height: 1.6; }

        @keyframes UUSTOTO-scroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        /* Responif untuk layar kecil */
        @media (max-width: 768px) {
            #UUSTOTO-reviews .main-content { flex-direction: column; }
        }
    
