
    /* 桌機版樣式 */
    .notice-text { font-size: 1.5rem; font-weight: 900; line-height: 1.6; color: #333; }
    .sub-notice-text { font-size: 1.1rem; color: #ff5252; font-weight: bold; margin-top: 15px; }
    .status-text { font-size: 1.4rem; font-weight: 800; line-height: 1.8; }
    .q-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
    .opt-text { font-size: 1.5rem; margin-left: 10px; }
    .status-badge { background: #4caf50; color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 1.1rem; }
    .promo-input { flex: 1; padding: 12px; border: 2px solid #cbd5e0; border-radius: 8px; font-size: 1.2rem; }
    .copy-btn-new { background: #1a73e8; color: #fff; border: none; padding: 0 20px; border-radius: 8px; font-weight: 900; cursor: pointer; }
    .collapse-btn { width: 100%; padding: 15px; background: #f8fafc; border: 1px dashed #cbd5e0; border-radius: 10px; cursor: pointer; font-weight: bold; font-size: 1.2rem; }
    .submit-btn-new { width: 100%; padding: 15px; background: #ffc107; border: none; border-radius: 30px; font-size: 1.6rem; font-weight: 900; cursor: pointer; box-shadow: 0 8px 15px rgba(255,193,7,0.3); transition: 0.3s; }
    .custom-label { display: block; padding: 15px; border: 2px solid #eee; border-radius: 12px; margin-bottom: 12px; cursor: pointer; transition: 0.2s; }
    .custom-label.active { border-color: #ffc107; background: #fffdf7; }
    .line-btn { display: inline-block; background: #06c755; color: #fff; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; }
    .quest-guide-text { text-align: center; color: #666; font-size: 1.1rem; margin-bottom: 20px; }

    #toast-notice { display:none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.8); color: #fff; padding: 15px 30px; border-radius: 50px; z-index: 10000; font-size: 1.2rem; }
    .login-prompt-box {
        background: #fffdf5; 
        border: 1px dashed #fcc419; 
        padding: 25px; 
        border-radius: 15px; 
        text-align: center; 
        margin-bottom: 25px;
        box-sizing: border-box;
    }

    .login-prompt-text {
        margin-top: 0;
        margin-bottom: 20px; 
        color: #4338ca; 
        font-weight: bold;
        font-size: 18px;
        line-height: 1.5;
    }

    .login-prompt-text .highlight-badge {
        color: #d9480f; 
        font-size: 20px;
        font-weight: 900;
    }

    /* 桌機版按鈕容器：橫式並排、置中 */
    .login-btn-group {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    /* 桌機版按鈕基礎樣式 */
    .login-prompt-box .line-btn {
        display: inline-block;
        width: auto;
        min-width: 180px;
        padding: 12px 30px;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        border-radius: 8px;
        box-sizing: border-box;
        border: none;
        transition: background 0.2s, transform 0.1s;
    }

    .login-prompt-box .line-btn:active {
        transform: scale(0.98);
    }

    /* 按鈕底色維持不變 */
    .login-prompt-box .btn-verify-phone {
        background: #0b7c0b;
        /* color: #ffffff !important; */
    }
    .login-prompt-box .btn-line-login {
        background-color: #06b614;
        /* color: #ffffff !important; */
    }
    .login-prompt-box .btn-login {
        background-color: #0b7c0b;
        /* color: #ffffff !important; */
    }

    .btn-analyze-dash {
        display: inline-flex;
        align-items: center;
        padding: 10px 20px;
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #00ffcc !important;
        border: 1px solid #00ffcc;
        border-radius: 30px;
        font-size: 15px;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .btn-analyze-dash:hover {
        background: linear-gradient(135deg, #00ffcc, #00bc9c);
        color: #0f2027 !important;
        box-shadow: 0 0 25px rgba(0, 255, 204, 0.6);
        transform: translateY(-2px);
    }
    .pulse-icon {
        width: 8px;
        height: 8px;
        background-color: #00ffcc;
        border-radius: 50%;
        margin-right: 10px;
        display: inline-block;
        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
        animation: pulse-glow 1.5s infinite;
    }
    @keyframes pulse-glow {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 204, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 204, 0); }
    }


    /* 手機版 RWD 巨大化排版優化 */
    @media (max-width: 750px) {
        .login-prompt-box {
            padding: 3rem 2.5rem; 
            border-radius: 2rem; 
            margin-bottom: 4rem;
            border-width: 2px;
        }

        .login-prompt-text {
            font-size: 4rem; 
            margin-bottom: 2.5rem; 
        }

        .login-prompt-text .highlight-badge {
            font-size: 4rem; 
        }

        /* 🎯 核心改動：手機版轉為直式排列 */
        .login-btn-group {
            flex-direction: column;
            gap: 2rem; 
        }

        /* 手機版按鈕：寬度滿版、字級放大 */
        .login-prompt-box .line-btn {
            display: block;
            width: 100%; 
            padding: 2rem 1rem;
            font-size: 4rem;
            border-radius: 1.5rem;
        }
        .notice-text, .status-text, .opt-text { 
            font-size: 4.5rem; 
            line-height: 1.4; 
        }
        .custom-label { 
            /* padding: 15px;  */
            display: flex; 
            align-items: flex-start; 
        }
        .opt-text {
            display: inline-block;
            word-break: break-all; 
        }
        .custom-label input { 
            transform: scale(2); 
            margin-right: 20px; 
            margin-top: 15px; 
            flex-shrink: 0; 
        }
        .share-info-card .status-badge {
            display: inline-flex; 
            align-items: center;  
            justify-content: center; 
            height: 6.5rem; 
            padding: 0 30px; 
            vertical-align: middle; 
            margin-top: -0.5rem; 
        }
        .share-info-card .status-badge a {
            line-height: 1; 
            display: block;
        }
        .quest-guide-text {
            font-size: 4.5rem; 
            margin: 4rem 0;
            line-height: 1.5;
        }
        .sub-notice-text, .line-btn { font-size: 3.5rem; line-height: 1.3; }
        .q-title { font-size: 4.5rem; line-height: 1.3; margin-bottom: 30px; }
        .status-badge { font-size: 3.5rem; padding: 10px 30px; }
        .promo-input { font-size: 3.5rem; padding: 20px; }
        .copy-btn-new { font-size: 4.5rem; padding: 20px 20px; }
        .collapse-btn { font-size: 3.5rem; padding: 30px; }
        .submit-btn-new { font-size: 5rem; padding: 15px; border-radius:350px; }
        #toast-notice { font-size: 4rem; padding: 40px 80px; }
        textarea { font-size: 3.5rem; padding: 30px; line-height: 1.4; }
    }