/* ==========================================================================
   子比主题 · 快捷注册提示
   全部颜色引用主题 CSS 变量，自动适配暗色模式
   ========================================================================== */

.zibll-aqlt-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
    -webkit-tap-highlight-color: transparent;
}

.zibll-aqlt-mask.is-open {
    opacity: 1;
    visibility: visible;
}

.zibll-aqlt-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    overflow: auto;
    background: var(--main-bg-color, #fff);
    color: var(--main-color, #333);
    border-radius: var(--main-radius, 8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .25);
    transform: translateY(14px) scale(.97);
    transition: transform .26s cubic-bezier(.22, .61, .36, 1);
}

.zibll-aqlt-mask.is-open .zibll-aqlt-modal {
    transform: translateY(0) scale(1);
}

/* 头部 ------------------------------------------------------------------ */

.zibll-aqlt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 8px;
}

.zibll-aqlt-title {
    font-size: 19px;          /* 标题加大 */
    font-weight: 700;         /* 加粗 */
    letter-spacing: .5px;
    color: var(--theme-color, #f76a1c);   /* 用主色更显眼 */
}

.zibll-aqlt-close {
    border: 0;
    background: transparent;
    padding: 0 4px;
    font-size: 24px;
    line-height: 1;
    color: var(--muted-3-color, #bbb);
    cursor: pointer;
    transition: color .2s;
}

.zibll-aqlt-close:hover {
    color: var(--theme-color, #f76a1c);
}

/* 内容 ------------------------------------------------------------------ */

.zibll-aqlt-body {
    padding: 8px 18px 4px;
}

.zibll-aqlt-msg {
    margin: 0;
    font-size: 16px;          /* 正文加大 */
    font-weight: 600;         /* 正文加粗 */
    line-height: 1.85;
    letter-spacing: .3px;
    color: var(--key-color, #222);   /* 用标题级深色，对比更强 */
    white-space: pre-wrap;
    word-break: break-word;
}

/* 底部按钮 -------------------------------------------------------------- */

.zibll-aqlt-foot {
    display: flex;
    gap: 10px;
    padding: 16px 18px 18px;
}

.zibll-aqlt-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;             /* 按钮加高 */
    padding: 0 14px;
    border: 0;
    border-radius: var(--main-radius, 8px);
    font-size: 16px;          /* 按钮文字加大 */
    font-weight: 700;         /* 按钮文字加粗 */
    letter-spacing: .5px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s, background-color .2s, color .2s;
}

.zibll-aqlt-btn:hover {
    text-decoration: none;
}

.zibll-aqlt-btn-primary {
    background: var(--theme-color, #f76a1c);
    color: #fff;
    box-shadow: 0 4px 14px rgba(247, 106, 28, .35);
}

.zibll-aqlt-btn-primary:hover {
    color: #fff;
    opacity: .9;
}

/* 移动端 ---------------------------------------------------------------- */

@media (max-width: 480px) {
    .zibll-aqlt-modal {
        max-width: 100%;
    }
    .zibll-aqlt-msg {
        font-size: 15px;
    }
}