.elementor-3610 .elementor-element.elementor-element-1d9b8a5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8b580fe *//* --- 容器與全域設定 --- */
.fd-schema-article {
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang TC", "Microsoft JhengHei", sans-serif;
    line-height: 1.7;
    color: #334155;
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
}

/* --- 標題通用 --- */
.fd-schema-article h1,
.fd-schema-article h2,
.fd-schema-article h3,
.fd-schema-article h4 {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.35;
}

/* --- Hero Section --- */
.fd-hero-code {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, #f1f5f9 0%, #fff 80%);
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 60px;
}

.fd-code-badge {
    display: inline-block;
    background: #1e293b;
    color: #10b981; /* 程式碼綠 */
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: "Courier New", monospace;
    letter-spacing: 1px;
    border: 1px solid #10b981;
}

.fd-title {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #0f172a;
}

.fd-intro {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
}

.fd-intro strong {
    color: #0f172a;
    background-color: #fef3c7; /* 螢光筆效果 */
    padding: 0 4px;
}

/* --- Pain Section (SERP Comparison) --- */
.fd-pain-section {
    padding: 20px 0 80px 0;
}

.fd-section-header {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.fd-sub-desc {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.fd-contrast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.fd-result-card {
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
}

.fd-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.fd-card-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

/* 模擬 Google 搜尋結果 */
.fd-serp-preview {
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    background: #fff;
}

.fd-serp-title {
    color: #1a0dab;
    font-size: 1.2rem;
    margin-bottom: 3px;
    cursor: pointer;
}
.fd-serp-title:hover { text-decoration: underline; }

.fd-serp-url {
    color: #006621;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.fd-serp-desc {
    color: #545454;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Rich Snippet Styles */
.fd-serp-meta {
    color: #545454;
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.fd-stars { color: #f59e0b; letter-spacing: 2px; }
.fd-rating { color: #545454; margin-right: 10px; }
.fd-price { font-weight: bold; color: #202124; margin-right: 10px; }
.fd-stock { color: #188038; font-weight: bold; }

.fd-status {
    text-align: center;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fd-result-card.bad .fd-status { background: #fef2f2; color: #b91c1c; }
.fd-result-card.good .fd-status { background: #f0fdf4; color: #166534; }

.fd-icon-x { font-weight: bold; color: #ef4444; }
.fd-icon-check { font-weight: bold; color: #10b981; }

.fd-status p { margin: 0; font-size: 0.9rem; }

/* --- Solution Section (Code Visual) --- */
.fd-solution-code {
    background: #0f172a;
    color: #fff;
    padding: 60px 40px;
    border-radius: 24px;
    margin-bottom: 60px;
}

.fd-solution-code h2 { color: #fff !important; }
.fd-solution-code p { color: #cbd5e1; }

.fd-code-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

/* Code Window */
.fd-code-window {
    flex: 1;
    min-width: 300px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: "Courier New", monospace;
}

.fd-window-header {
    background: #334155;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.fd-dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }

.fd-code-content {
    padding: 20px;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.line { margin-bottom: 5px; }
.key { color: #38bdf8; } /* Blue */
.val { color: #a3e635; } /* Lime */
.comment { color: #64748b; font-style: italic; margin-top: 10px; }

/* Code Benefits */
.fd-code-benefits {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fd-benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #e2e8f0;
    font-size: 1rem;
}

.fd-benefit-item strong {
    color: #38bdf8;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* --- Value Section --- */
.fd-value-section {
    text-align: center;
    padding: 40px 20px 80px 20px;
}

.fd-value-box {
    max-width: 700px;
    margin: 0 auto;
    border-left: 5px solid #0f172a;
    padding-left: 30px;
    text-align: left;
}

.fd-value-box h3 { font-size: 1.8rem; margin-bottom: 20px; }
.fd-value-box p { font-size: 1.15rem; color: #475569; }

/* --- CTA Section --- */
.fd-cta-code {
    text-align: center;
    padding: 40px 20px;
}

.fd-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.fd-cta-inner h2 { font-size: 2rem; margin-bottom: 15px; }
.fd-cta-inner p { color: #64748b; margin-bottom: 35px; }

.fd-btn-terminal {
    display: inline-block;
    background-color: #0f172a; /* 終端機黑 */
    color: #10b981; /* 螢幕綠 */
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.4);
    border: 1px solid #10b981;
    font-family: monospace;
}

.fd-btn-terminal:hover {
    background-color: #10b981;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.5);
}

.arrow { margin-left: 8px; transition: transform 0.2s; display: inline-block; }
.fd-btn-terminal:hover .arrow { transform: translateX(5px); }

/* --- Mobile RWD --- */
@media (max-width: 768px) {
    .fd-main-title { font-size: 1.8rem; }
    .fd-contrast-grid { grid-template-columns: 1fr; }
    .fd-code-visual { flex-direction: column; }
    .fd-value-box { border-left: none; border-top: 5px solid #0f172a; padding-left: 0; padding-top: 20px; text-align: center; }
}/* End custom CSS */