        /* 1. 麵包屑導覽 */
        .breadcrumb-container {
            grid-column: 1 / -1;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: var(--bg-card);
            border-radius: 10px;
            border: 1px solid var(--color-border);
            margin-bottom: 0;
            font-size: 1rem;
        }
		
		.badge-group {
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			gap: 6px;
			width: 100%; /* 確保父層有撐滿，右邊才有空間可以推 */
		}

		/* 👑 2. 精準抓取最後兩個 tooltip-container 進行樣式導正，防止其他無關容器被影響 */
		.badge-group > .tooltip-container:nth-last-child(2),
		.badge-group > .tooltip-container:nth-last-child(1) {
			display: inline-flex;
			align-items: center;
			justify-content: center;
		}

		/* 👑 3. 鋼鐵絕招：對倒數第二個元素（也就是小鈴鐺）灌入絕對推力 */
		.badge-group > .tooltip-container:nth-last-child(2) {
			margin-left: auto; /* 強制吞噬中間所有剩餘空間，將自己與最後一個愛心死死推到最右邊 */
		}

		/* 👑 4. 幫兩個圖示容器拉開舒適的間距 */
		.badge-group > .tooltip-container:nth-last-child(1) {
			margin-left: 1px; /* 小鈴鐺與愛心之間的黃金呼吸間距 */
		}

		/* 👑 5. 顏色徹底洗刷：將小鈴鐺與愛心的圖示指定為你要求的 #a2afb9 */
		.badge-group .tooltip-container .remind i,
		.badge-group .tooltip-container .myfavorite i {
			color: #a2afb9 ;
			transition: color 0.2s ease;
		}

		/* 👑 6. 滑鼠指上去時要有手勢，點擊體驗才足夠直覺 */
		.badge-group .tooltip-container .remind,
		.badge-group .tooltip-container .myfavorite {
			cursor: pointer;
		}

		/* 👑 7. 互動細節：滑鼠滑入時讓灰色稍微變深，增加精緻的觸發感 */
		.badge-group .tooltip-container:hover .remind i,
		.badge-group .tooltip-container:hover .myfavorite i {
			color: #7f8c8d;
		}
        .breadcrumb-container a { color: var(--color-primary); text-decoration: none; position: relative; }
        .breadcrumb-container span.sep { color: var(--color-border); }
		.file_titletop {border-bottom: 2px solid var(--color-primary); padding-bottom: 18px; margin-bottom: 30px;}
		.file_titletop h2 {font-size: 28px; margin: 0; color: var(--color-text); font-weight: bold; display: flex; flex-wrap: wrap; align-items: center; gap: 12px;}
		.file_name3 {color: var(--color-text-muted); margin-top: 5px; font-size: 17px;}
        /* 2. 亮點摘要 */
        .highlight-premium-card {
            background: linear-gradient(135deg, #fff9eb 0%, #fff2d1 100%);
            border: 1px solid #fde68a;
            border-left: 8px solid #f59e0b;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: left;
        }
        body.dark .highlight-premium-card {
            background: linear-gradient(135deg, #2d2412 0%, #3d300a 100%);
            border-color: #45371c;
        }
        .highlight-title-tag {
            background: #f59e0b;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 15px;
        }
        .highlight-body-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--color-text);
            white-space: pre-line;
            text-align: left;
        }

        /* 3. 軟體簡介 */
        .brief-quote-box {
            position: relative;
            background: var(--color-bg-secondary);
            border-radius: 12px;
            padding: 40px 30px 25px 30px;
            margin-bottom: 30px;
            border: 1px solid var(--color-border);
        }
        .brief-quote-box::before {
            content: "\f10d";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 12px;
            left: 20px;
            font-size: 22px;
            color: var(--color-primary);
            opacity: 0.2;
        }
		.file_title_text {
			line-height: 1.8;
			font-size: 17px;
			color: var(--color-text);
			white-space: pre-line;
			word-break: break-all;
		}
        /* 4. 規格資訊：手機端 RWD */
        .soft-spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 12px;
            margin-bottom: 30px;
        }
        .spec-node {
            background: var(--color-bg-secondary);
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid var(--color-border);
            text-align: left;
            font-size: 15px;
        }
        .spec-node .label { color: var(--color-text-muted); }
        .spec-node .val { font-weight: 600; color: var(--color-text); }

        /* 5. 詳細說明：修正圖片溢出 */
        .detail-html-content {
            padding: 0 10px;
            line-height: 2;
            margin-bottom: 40px;
            word-wrap: break-word;
            overflow-wrap: break-word;
			word-break: normal;
			overflow-wrap: break-word;
        }
        .detail-html-content img {
            max-width: 100% !important; /* 註解：強制防止圖片超出區塊 */
            height: auto !important;
            display: block;
            margin: 15px auto;
            border-radius: 8px;
        }
        .detail-html-content h3 {
            font-size: 22px;
            margin: 30px 0 20px 0;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
		.file_text blockquote {
			padding-left: 20px;
			padding-right: 8px;
			border-left-width: 5px;
		}

		blockquote {
			font-style: italic;
			font-family: Georgia, Times, "Times New Roman", serif;
			padding: 2px 0;
			border-style: solid;
			border-color: #ccc;
			border-width: 0;
		}
        /* 6. 截圖顯示 */
        .screenshot-section {
            display: none;
            margin-top: 40px;
            border-top: 1px solid var(--color-border);
            padding-top: 30px;
        }
        .screenshot-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-large);
            display: none;
        }
		.file_text {
			font-size: 1.1em;
			padding: 0 30px;
			/* 👑 [註解]：加入強制斷行，防止不可預期的超長字串或網址撐破手機畫面 */
			word-break: break-all;
		}
		.file_text ul {
			list-style: disc inside;
			margin: 10px 0 16px 20px;
			padding: 0;
		}
		.file_text li {
			margin-bottom: 6px;
			word-break: normal;
			overflow-wrap: break-word;
		}
		.val {
			position: relative;
		}
		
		.use_title use_information_ul ul {
			list-style: disc inside;
			margin: 10px 0 16px 20px;
			padding: 0;
		}
/* ==========================================
   全新世代限免活動 Modal 樣式表
   ========================================== */

/* 1. Modal 外層遮罩背板 */
.lm-modal-overlay {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(15, 23, 42, 0.6); /* 採用高質感深藍靛色半透明 */
    backdrop-filter: blur(4px); /* 輕微背景模糊，凸顯主視窗 */
    align-items: center; 
    justify-content: center;
}

/* 2. 視窗白底主容器 */
.lm-modal-container {
    background-color: #ffffff; 
    border-radius: 16px; /* 更圓潤現代的弧度 */
    width: 92%; 
    max-width: 840px; 
    max-height: 88vh; 
    overflow-y: auto; 
    position: relative; 
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* 氣派的現代懸浮陰影 */
    padding: 36px; 
    box-sizing: border-box; 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* 3. 右上角絕對定位關閉鈕 */
.lm-modal-close {
    position: absolute; 
    top: 20px; 
    right: 24px; 
    background: #f1f5f9; 
    border: none; 
    font-size: 22px; 
    color: #64748b; 
    cursor: pointer; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.2s ease;
}
.lm-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* 4. 頂部高亮警告區 */
.lm-alert-banner {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-left: 4px solid #ef4444;
    padding: 14px 18px;
    border-radius: 4px 12px 12px 4px;
    margin-bottom: 24px;
}
.lm-alert-title {
    color: #dc2626;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lm-alert-desc {
    color: #7f1d1d;
    font-size: 13.5px;
    font-weight: 500;
}

/* 5. 主要內容雙欄配置 */
.lm-main-layout {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    gap: 32px; 
    margin-bottom: 28px;
}
.lm-content-left {
    flex: 1;
}
.lm-action-right {
    flex-shrink: 0; 
    padding-top: 20px;
}

/* 6. 活動說明文字排版 */
.lm-info-title {
    font-size: 16px; 
    color: #0f172a; 
    font-weight: 700; 
    margin-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 6px;
}
.lm-info-body {
    font-size: 14.5px; 
    color: #334155; 
    line-height: 1.8;
}
.lm-info-highlight {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 13.5px;
    color: #475569;
}

/* 7. 全新設計活動網址按鈕 */
.lm-btn-primary {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%); /* 精緻的漸層深紅 */
    color: #ffffff !important; 
    text-decoration: none; 
    padding: 14px 28px; 
    border-radius: 12px; /* 現代感方圓角 */
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.3);
    font-size: 16px;
    transition: all 0.2s ease;
}
.lm-btn-primary:hover {
    transform: translateY(-2px); /* 輕微懸浮動態 */
    box-shadow: 0 20px 25px -5px rgba(225, 29, 72, 0.4);
}

/* 8. 下方教學圖片區 */
.lm-tutorial-section {
    border-top: 1px solid #e2e8f0; 
    padding-top: 24px; 
}
.lm-tutorial-title {
    color: #0f172a; 
    font-weight: 700; 
    margin-bottom: 12px; 
    font-size: 15px;
}
.lm-tutorial-img {
    max-width: 100%; 
    height: auto; 
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 9. 底部精緻系統腳註 */
.lm-modal-footer-meta {
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    font-size: 12px; 
    color: #94a3b8; 
    display: flex;
    gap: 20px;
}

/* 10. RWD 行動端彈性適應 */
@media (max-width: 768px) {
    .lm-modal-container { padding: 20px; }
    .lm-main-layout { flex-direction: column; gap: 20px; }
    .lm-action-right { width: 100%; text-align: center; padding-top: 0; }
    .lm-btn-primary { width: 100%; justify-content: center; box-sizing: border-box; }
}
		
        /* 7. 手機端 RWD 佈局修正 */
        @media (max-width: 768px) {
			.layout__grid { grid-template-columns: 1fr !important; }
			.soft-spec-grid { grid-template-columns: 1fr !important; }
			/* 👑 [註解]：微調內距至 15px 避免 iPhone 窄版畫面外溢，並防止繼承產生的寬度衝突 */
			.detail-card { padding: 8px !important; box-sizing: border-box !important; }
			.header__logo-area { flex-direction: initial; text-align: center; }
			.search { width: 100%; margin-top: 15px; }
			/* .breadcrumb-container { display: none; } */
			
			/* 👑 [註解]：強迫官方網站區塊在手機端靠左、移除多餘的左邊距，徹底解決推開寬度的問題 */
			.official-website-block { text-align: left !important; margin: 15px 0 !important; }
			
			/* 👑 [註解]：縮減內距防止手機端排版過擠 */
			.brief-quote-box { padding: 30px 10px 20px 10px !important; }
			.file_text { padding: 0 !important; }
			.breadcrumb-container {
			font-size: 0.6rem;}
		   .file_titletop {font-size: 1rem;}
		   .file_titletop h2 {font-size: 1rem;}
		  .file_name3 {font-size: 0.9rem;}
        }