/* 背景装饰 */
.kZlXwYm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.jQvNzFc {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: float1 15s linear infinite;
}

.sTpLqRo {
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    animation: float2 20s linear infinite;
}

/* 主按钮样式 */
.uDvEfRh {
    text-align: center;
}

.gHjKbVc {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 1px;
    /* background: linear-gradient(90deg, #FFD700 0%, #FF8C00 100%); */
    background: linear-gradient(90deg, var(--accent), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eTqYxOa {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 50px;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* 唤醒按钮 - 黄色风格 */
.dNcFsXa {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--gradient-end));
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.dNcFsXa:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

/* 弹窗容器 - 随机类名确保样式隔离 */
.cRvZbMl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cRvZbMl.active {
    opacity: 1;
    visibility: visible;
}

/* 弹窗主体样式 - 黄色边框元素 */
.cRvZbMl .bTfLqWm {
    position: relative;
    width: 460px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    box-shadow: 0 0 0 2px var(--accent), 0 0 30px rgba(var(--accent-rgb), 0.5);
    overflow: hidden;
}

/* 弹窗头部 */
.cRvZbMl .wXyYzPq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    background: rgba(30, 30, 40, 0.9);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.3);
}

.cRvZbMl .oApKbNq {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.cRvZbMl .rFsEdCh {
    width: 32px;
    height: 32px;
    background: rgba(var(--accent-rgb), 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.cRvZbMl .rFsEdCh:hover {
    background: rgba(var(--accent-rgb), 0.4);
    transform: rotate(90deg);
}

.cRvZbMl .mVnJhKl {
    position: relative;
    width: 18px;
    height: 18px;
    color: var(--accent);
    font-size: 24px;
    line-height: 18px;
    font-weight: 700;
}

/* 弹窗内容区域 */
.cRvZbMl .dOgYvQs {
    padding: 30px 40px;
}

.cRvZbMl .wIbUxPc {
    font-size: 18px;
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 服务标签样式 */
.cRvZbMl .aLpZuNs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cRvZbMl .qRsTuGf {
    background: rgba(var(--accent-rgb), 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* 服务优势区域 */
.cRvZbMl .fGtJhKd {
    background: rgba(var(--accent-rgb), 0.1);
    padding: 10px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px dashed rgba(var(--accent-rgb), 0.3);
}

.cRvZbMl .uYgVbTc {
    color: var(--accent);
    font-size: 17px;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.cRvZbMl .uYgVbTc::before {
    content: "•";
    position: absolute;
    left: 15px;
    color: var(--accent);
    font-size: 24px;
    top: -2px;
}

/* 弹窗底部按钮 */
.cRvZbMl .vCfGhJk {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gradient-end) 100%);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
}

.cRvZbMl .vCfGhJk:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gradient-end) 100%);
}

/* 响应式调整 */
@media (max-width: 500px) {
    .cRvZbMl .bTfLqWm {
        width: 90%;
    }
    
    .cRvZbMl .gHjKbVc {
        font-size: 36px;
    }
    
    .cRvZbMl .dNcFsXa {
        font-size: 18px;
        padding: 14px 30px;
    }
    
    .cRvZbMl .vCfGhJk {
        font-size: 18px;
        padding: 14px;
    }
    
    .cRvZbMl .aLpZuNs {
        gap: 10px;
    }
    
    .cRvZbMl .qRsTuGf {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* 动画 */
@keyframes float1 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float2 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(30px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}