/* 全局樣式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url('bg_7.png'); /* 背景圖片 */
    background-size: cover; /* 確保背景填滿 */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    color: #333; /* 預設文字顏色 */
}

header {
    background-color: rgba(0, 64, 128, 0.8); /* 深藍透明背景 */
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

main {
    padding: 2em;
}

.section {
    margin-bottom: 2em;
    padding: 1.5em;
    background-color: rgba(255, 255, 255, 0.8); /* 白色透明背景 */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 淡陰影 */
    backdrop-filter: blur(5px); /* 模糊效果 */
}

/* 解說區塊樣式 */
#highlight-description .content {
    display: flex;
    gap: 20px;
    align-items: center;
}

#highlight-description .text {
    flex: 2;
    text-align: justify; /* 設置文字左右對齊 */

}

#highlight-description .text p {
    margin: 0 0 1em; /* 添加段落間距 */
    line-height: 1.8; /* 提升行距，增加可讀性 */
    color: #333; /* 文字顏色 */
}

#highlight-description .image {
    flex: 1;
}

#highlight-description img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 作者與論文資訊區塊 */
#author-info .info {
    line-height: 1.8;
}

#author-info a {
    color: #004080;
    text-decoration: none;
    font-weight: bold;
}

#author-info a:hover {
    text-decoration: underline;
    color: #002060;
}

/* 頁腳樣式 */
footer {
    text-align: center;
    padding: 1em 0;
    background-color: rgba(0, 64, 128, 0.8); /* 深藍透明背景 */
    color: #fff;
    margin-top: 2em;
}
