        /* 使用更具体的选择器避免冲突 */
        #zb-custom-banner-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f5f7fa;
            padding: 20px;
            margin: 60px 0;
        }
        
        .zb-custom-banner {
            width: 728px;
            height: 90px;
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(106, 17, 203, 0.3);
            display: flex;
            align-items: center;
            padding: 0 25px;
            position: relative;
            overflow: hidden;
        }
        
        .zb-custom-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .zb-custom-banner::after {
            content: '';
            position: absolute;
            bottom: -60%;
            right: 10%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }
        
        .zb-custom-banner-content {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
            z-index: 1;
        }
        
        .zb-custom-banner-text {
            color: white;
            flex: 1;
        }
        
        .zb-custom-banner-text h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .zb-custom-banner-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .zb-custom-banner-buttons {
            display: flex;
            gap: 15px;
        }
        
        .zb-custom-btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            text-decoration: none;
        }
        
        .zb-custom-btn-purchase {
            background-color: #ff4757;
            color: white;
        }
        
        .zb-custom-btn-download {
            background-color: white;
            color: #6a11cb;
        }
        
        .zb-custom-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .zb-custom-btn:active {
            transform: translateY(0);
        }
        
        .zb-custom-btn i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .zb-custom-badge {
            position: absolute;
            top: -8px;
            right: 120px;
            background-color: #ff9f43;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(5deg);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .zb-custom-banner {
                width: 100%;
                height: auto;
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
            
            .zb-custom-banner-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .zb-custom-banner-buttons {
                width: 100%;
                justify-content: center;
            }
            
            .zb-custom-badge {
                right: 50%;
                transform: translateX(50%) rotate(5deg);
            }
        }