/* ========== 非手机端访问提示 ========== */
.mobile-only-prompt {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
    background-color: var(--bg-solid);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.mobile-only-prompt.show {
    display: flex;
}

.mobile-prompt-card {
    text-align: center;
    max-width: 360px;
}

.mobile-prompt-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mobile-prompt-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.mobile-prompt-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================================
   非手机端：显示提示页面，隐藏应用内容
   ================================================================ */
@media (min-width: 769px) {
    body {
        max-width: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

    .container,
    .tab-bar-wrap,
    .page-top-title,
    .sub-page,
    .edit-modal-mask,
    .day-detail-mask,
    .day-detail-modal,
    .modal-mask {
        display: none !important;
    }

    .mobile-only-prompt {
        display: flex !important;
    }
}
