
    /* 1. 核心容器：应用渐变背景 */
    .uee-get-started-section {
        position: relative;
        padding: 100px 20px;
        text-align: center;
        /* 渐变效果：从主色调到深一点的青色 */
        background: linear-gradient(135deg, #56B8B8 0%, #459a9a 100%);
        color: #ffffff;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        overflow: hidden; /* 隐藏超出边界的气泡 */
        display: block;
    }

    /* 2. 气泡基础样式 */
    .bg-bubble {
        position: absolute;
        background: rgba(255, 255, 255, 0.1); /* 半透明白色 */
        border-radius: 50%;
        pointer-events: none; /* 确保气泡不影响按钮点击 */
        z-index: 1;
        animation: floatBubble 20s infinite ease-in-out;
    }

    /* 气泡 1 */
    .bubble-1 { width: 300px; height: 300px; left: -100px; top: -50px; animation-duration: 25s; }
    /* 气泡 2 */
    .bubble-2 { width: 200px; height: 200px; right: 5%; top: 10%; animation-duration: 18s; animation-delay: -2s; }
    /* 气泡 3 */
    .bubble-3 { width: 400px; height: 400px; right: -150px; bottom: -100px; animation-duration: 30s; opacity: 0.05; }
    /* 气泡 4 */
    .bubble-4 { width: 150px; height: 150px; left: 15%; bottom: 10%; animation-duration: 22s; animation-delay: -5s; }

    /* 气泡漂浮动画 */
    @keyframes floatBubble {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-40px) rotate(10deg); }
    }

    /* 3. 内容层级：确保在气泡之上 */
    .uee-gs-content {
        position: relative;
        z-index: 10;
        max-width: 900px;
        margin: 0 auto;
    }

    .uee-gs-content h2 {
        font-size: 42px;
        font-weight: 800;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .uee-gs-content p.uee-features {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    /* 4. 橙色按钮样式优化 */
    .uee-gs-btn {
        display: inline-block;
        background-color: #ff7b1a; /* 原图橙色 */
        color: #ffffff;
        padding: 18px 45px;
        border-radius: 12px;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .uee-gs-btn:hover {
        transform: translateY(-4px);
        background-color: #f06a00;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    /* 底部小字 */
    .uee-gs-footer {
        margin-top: 40px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* 5. 移动端自适应 */
    @media (max-width: 768px) {
        .uee-gs-content h2 { font-size: 30px; }
        .uee-get-started-section { padding: 60px 20px; }
        .uee-gs-btn { width: 90%; padding: 15px 0; font-size: 18px; }
        /* 移动端减小气泡大小以免干扰 */
        .bubble-1 { width: 150px; height: 150px; }
        .bubble-3 { width: 200px; height: 200px; }
    }
