
        /* ----- Fully independent module – no impact on existing site layout ----- */
        .ul-steps * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .ul-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 0.7rem 1rem;
            align-items: center;
            justify-content: flex-start;  /* 靠左对齐 */
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            background: transparent;
            max-width: 100%;
            line-height: 1.35;
            margin: 1rem 0;
        }

        /* Capsule style – #c724b1 accent, music symbols only */
        .ul-steps .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(145deg, #fff6fe, #fef0fd);
            border: 1.2px solid #c724b1;
            border-radius: 45px;
            padding: 0.5rem 1.2rem;
            box-shadow: 0 4px 12px rgba(199, 36, 177, 0.1);
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e293b;
            backdrop-filter: blur(2px);
            white-space: nowrap;
            transition: all 0.25s ease;
            cursor: default;
        }

        .ul-steps .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(199, 36, 177, 0.2);
            border-color: #c724b1;
        }

        .ul-steps .badge i {
            font-style: normal;
            font-size: 1rem;
            color: #c724b1;
        }

        .ul-steps .badge .text {
            background: transparent;
        }

        /* Highlight style for the main product claim */
        .ul-steps .highlight-badge {
            background: #c724b1;
            color: white;
            border-color: #a01d8a;
            box-shadow: 0 5px 14px rgba(199, 36, 177, 0.35);
        }
        .ul-steps .highlight-badge i {
            color: white;
        }
        .ul-steps .highlight-badge .text {
            color: white;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .ul-steps .badge {
                white-space: normal;
                font-size: 0.7rem;
                padding: 0.35rem 0.8rem;
                gap: 0.3rem;
            }
            .ul-steps .badge i {
                font-size: 0.8rem;
            }
        }
    