/* --- 請用此內容【完整覆蓋】styles-home-light.css 的內容 --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

:root {
    --bg-light: #F8F9FA;
    --card-bg: #FFFFFF;
    --border-color: #E9ECEF;
    --cta-gradient: linear-gradient(90deg, #667eea, #764ba2);
    --text-dark: #495057;
    --text-heading: #212529;
    --text-secondary: #6C757D;
}

/* 移除 body 的全域樣式，讓它適應 Master Page */

.main-container-light {
    position: relative;
    padding: 3rem 2rem;
    min-height: calc(60vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-family: 'Noto Sans TC', sans-serif;
    background-image: url('../img/hello-background.jpg'); /* <-- 背景圖路徑已更新 */
    background-size: cover;
    background-position: center bottom;
}

.content-grid-light {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.card-light {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card-light:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

/* 左側：最新公告 */
.news-card-light .card-header h2 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.news-card-light .card-header h3 {
    font-size: 2rem;
    color: var(--text-heading);
    margin: 0.2rem 0 1.5rem 0;
}

.news-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .news-list-light li {
        margin-bottom: 0.5rem;
    }

    .news-list-light a {
        color: var(--text-dark);
        text-decoration: none;
        display: block;
        padding: 0.6rem;
        border-radius: 6px;
        transition: background-color 0.3s ease, color 0.3s ease;
        line-height: 1.8;
    }

        .news-list-light a:hover {
            background-color: #f1f3f5;
            color: var(--text-heading);
        }

    .news-list-light .news-index {
        color: var(--text-secondary);
        margin-right: 1rem;
    }

.news-card-light .card-footer {
    margin-top: 2rem;
    text-align: right;
}

/* 右側：今日能量 */
.daily-energy-card-light {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.date-section-light {
    text-align: left;
}

    .date-section-light .main-date {
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--text-heading);
    }

    .date-section-light .lunar-date {
        display: block;
        color: var(--text-secondary);
        margin-top: 0.2rem;
        font-size: 2rem;
    }

.info-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.info-item-light strong {
    color: var(--text-secondary);
    margin-right: 0.5rem;
    font-weight: 500;
}

.lucky-info-light {
    display: grid;
    gap: 1rem;
    font-size: 1.5rem;
}

.lucky-item-light {
    display: flex;
    align-items: center;
}

    .lucky-item-light i {
        color: #868e96;
        margin-right: 1rem;
        width: 20px;
        text-align: center;
    }

    .lucky-item-light strong {
        color: var(--text-secondary);
        margin-right: 0.5rem;
        font-weight: 500;
    }

    .lucky-item-light a {
        color: var(--text-dark);
        text-decoration: none;
    }

        .lucky-item-light a:hover {
            text-decoration: underline;
        }

.energy-section-light h4 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: var(--text-heading);
}

.energy-tags-light {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

    .energy-tags-light .tag {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 500;
        text-decoration: none;
        color: white;
        background: var(--cta-gradient);
    }

        .energy-tags-light .tag a {
            color: white;
            text-decoration: none;
        }

.cta-section-light {
    text-align: center;
    margin-top: 1rem;
}

.btn-light {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-light {
    background-color: #e9ecef;
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
}

    .btn-secondary-light:hover {
        background-color: #dee2e6;
    }

.btn-cta-light {
    background-image: var(--cta-gradient);
    color: white;
    padding: 1rem 2rem;
    font-size: 2rem;
    border-radius: 50px;
}

    .btn-cta-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }

@media (max-width: 992px) {
    .content-grid-light {
        grid-template-columns: 1fr;
    }

    .main-container-light {
        padding: 2rem 1rem;
    }

    .card-light {
        padding: 1.5rem;
    }

    .daily-energy-card-light {
        order: -1;
    }
    /* 在手機上，將能量卡片顯示在最上面 */
}

```

提醒您，`url('../img/hello-background.jpg')` 這個路徑的正確性，取決於您的 `styles-home-light.css` 檔案和 `img` 資料夾的相對位置。請確保它們的路徑關係是正確的。

替換完成後，請記得使用 `Ctrl + F5` 重新整理頁面，就能看到新的背景效果了！
