.guide-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 22, 0.82);
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
}

.guide-modal-content {
    width: 100%;
    max-width: 430px;
    background: #181A20;
    border-radius: 16px;
    padding: 24px 20px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(240, 185, 11, 0.12);
}

.guide-header {
    text-align: center;
    margin-bottom: 20px;
}

.guide-logo {
    width: 110px;
    height: auto;
    margin-bottom: 14px;
}

.guide-header h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #F0B90B;
    font-weight: 700;
}

.guide-subtitle {
    margin: 0;
    font-size: 14px;
    color: #B7BDC6;
    line-height: 1.6;
}

.guide-steps {
    margin-top: 18px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #1E2329;
    border-radius: 12px;
    padding: 14px 12px;
    margin-bottom: 12px;
}

.step-number {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: #F0B90B;
    color: #181A20;
    font-weight: 700;
    font-size: 15px;
}

.step-text strong {
    display: block;
    font-size: 15px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.step-text p {
    margin: 0;
    text-align: left;
    font-size: 13px;
    color: #B7BDC6;
    line-height: 1.6;
}


.guide-footer {
    margin-top: 20px;
}

.dual-btns {
    display: flex;
    gap: 12px;
}

.guide-btn {
    display: block;
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.guide-btn:hover {
    opacity: 0.92;
}

/* 左边绿色按钮 */
.register-btn {
    background: #F0B90B;
    color: #181A20;
}

/* 右边黄色按钮，保留原来的风格 */
#guideContinueBtn {
    background: #F0B90B;
    color: #181A20;
}

/* 倒计时禁用状态 */
.disabled-btn {
    pointer-events: none;
    background: #5E6673 !important;
    color: #D5D8DD !important;
}

