        .hero {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            background-color: #000;
            
            
            background-blend-mode: overlay;
        }
        .hero img {
            width: 100%;
            height: auto;
            display: block;
            filter: brightness(0.6);
        }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 100%;
            
        }
        .hero h1 {
            font-size: 2.5em;
            padding: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .hero p {
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .directory {
            display: block;
            border-left: 5px solid #ffc709;
            background-color: #faf5ed;
            width: 75%;
            color: #ffc709;
            align-items: center;
            margin: 20px auto;
            padding: 5px;
            
            
        }

        .directory li {
            line-height: 1.5;
            margin: 5px 20px;
            font-size: 20px;
        }

        .directory a {
            color: black;
            text-decoration: none;
        }

        .directory a:hover {
            text-decoration: underline;
        }

        .that-day-weather {
            border-left: 5px solid #4ABDED;
            color: #4ABDED;
            font-weight: bold;
            background-color: #f0f4f8;
            width: 50%;
            margin: 30px;
            padding: 5px;
        }

        .that-day-weather p {
            font-size: 25px;
            padding: 10px;
            text-align: center;
        }

        @media (max-width: 675px) {
            .directory {
                margin: 30px 50px;
            }
            .that-day-weather {
                margin: 30px 50px;
            }
        }
    
        

        .blank-page {
            margin-left: 200px;
            margin-right: 200px;
        }

        @media (max-width: 1200px) {
            .blank-page {
                margin-left: 20px;
                margin-right: 20px;
        }
        }


        h1 {
            font-size: 30px;
            color: #ffffff;
        }

        h2 {
            color: #2c3e50;
            border-bottom: 2px solid #4ABDED;
            padding-bottom: 5px;
            margin: 100px 0px 30px;
        }

        p {
            font-size: 20px;
            line-height: 2;
        }

        .googlemap {
            display: block;
            justify-content: center;
            width: 75%;
            height: 400px;
            margin: 20px auto;
        }

        .ill-box {
            display: flex; /* 用Flexbox布局 */
            justify-content: center; /* 兩個section一左一右，間隔平均 */
            
            margin: 20px auto; /* 盒子居中，上下留白 */
            padding: 20px; /* 盒子內邊距 */
            border: 0px solid #ccc; /* 加個邊框，睇得出係盒子（可選） */
            border-radius: 0px; /* 圓角（可選） */
            justify-items: center;
        }



        .image-section {
            
            flex: 1; /* 兩個section佔等寬 */
            text-align: center; /* 圖同文字居中 */
            margin: 0 10px; /* 兩個section之間留白 */

        }

        .image-section .horizontal {
            display: block;
            width: 100%; /* 圖片填滿容器 */
            max-width: 600px;
            
            object-fit: contain;
            object-position: center;
            /*max-height: 400px;*/
            border: 20px; /* 圖下面留白 */
            border-radius: 20px;
            background-color: #f5f5f5;
            
        }

        @media (min-width: 675px) {
            .image-section .horizontal {
                aspect-ratio:  1.78;
            }
        }

        .image-section .solo-ver {
            display: block;
            object-fit: contain;
            object-position: center;
            
            border: 20px; /* 圖下面留白 */
            border-radius: 20px;
            background-color: #f5f5f5;
            
        }

        @media (min-width: 675px) {
            .image-section .solo-ver {
                max-height: 400px;
            }
        }


        .image-section p {
            font-size: 14px; /* 描述文字大小 */
            color: #666; /* 顏色（可選） */
        }

        .text-section {
            display: flex;
            align-items: center;
            flex: 1; /* 左邊文字佔剩餘空間 */
        }

        .text-section p {
            border: 20px;
            align-items: center;
            margin: 20px;
        }

        @media (max-width: 675px) {
            .ill-box {
                flex-direction: column;
                padding: 0px;
            }
            .text-section, .image-section, .that-day-weather, .directory {
                width: 100%;
                margin: 10px 0px;
            }
            .text-section p {
                margin: 0px;
            }
            .image-section .horizontal, .solo-ver {
                width: 100%;
                /* height: auto;} */
            }    
                
            .hero-content  h1 {
                font-size: clamp(1.5em, 3.5vw, 2em); /* 修改：小屏幕字體調整 */
            }
            .googlemap {
                width : 100%;
            }
        }

        

        header {
            text-align: center;
            padding: 10px 10px;
            background-color: #f6f6f6;
        }
        header h1 {
            font-size: clamp(1.8em, 4vw, 2.5em); /* 修改：動態調整字體大小 */
            color: #2c3e50;
            margin: 0;
            white-space: nowrap; /* 修改：防止換行 */
        }
        header p {
            font-size: 1.2em;
            color: #555;
        }
        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        .publish-date {
            font-size: 1em;
            color: #555;
        }
        
        .tag-buttons {
            display: flex;
            justify-content: center; /* 標籤水平置中 */
            gap: 10px; /* 標籤之間的間距 */
            margin-top: 10px;
            margin-bottom: 10px; 
            flex-wrap: wrap;
        }

        .tag-button {
            flex: none;
            padding: 6px 12px;
            background-color: #ffffff; /* 藍色背景 */
            color: black;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: opacity 0.2s; /* 懸停效果平滑過渡 */
        }

        .tag-button:hover {
            opacity: 0.8; /* 懸停時稍暗 */
        }

        .long-url {
            word-break: break-all;
        }

        .scroll-advice {
            position: fixed; /* 固定喺畫面底 */
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffc709; /* 改成黃色底 */
            color: white; /* 白字 */
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 16px;
            text-align: center;
            cursor: pointer;
            animation: blink 2s infinite; /* 閃爍動畫，每 2 秒一次 */
            z-index: 1000; /* 確保喺最上層 */
        }
         /* 閃爍動畫：淡出淡入 */
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        /* 如果碌到某個位置，隱藏提示 */
        .hidden {
            display: none;
        }

        .flip-pages-box {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            max-width: 800px;  /* 限制寬度，避免太闊 */
            margin: 100px auto 50px;  
            padding: 15px;
            background-color: #f0f4f8;  /* 背景色 */
            border-radius: 8px;
            border: 0px solid;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  /* 輕微陰影 */
        }

        .prev-content, .next-content {
            position: relative;
            flex: 1;  /* 左右兩個 content 各佔一半空間 */
            display: flex;
            flex-direction: column;  /* 垂直排列：標題上，button 下 */
            align-items: center;
            max-width: 300px;  /* 限制每個 content 寬度，避免擠壓中間 */
            margin: 0 10px;  /* 左右間距 */
        }

        .arrow {
            position: absolute; /* 絕對定位，固定喺邊緣 */
            font-weight: bold; /* 讓箭頭粗身，突出 */
            font-size: 1.2em; /* 調大少少，視覺上更好 */
            z-index: 1; /* 確保箭頭喺文字上面 */
            color: #666;  /* 灰色文字，唔太突出 */
        }

        .arrow.left {
            left: 0; /* 貼住最左邊 */
            top: 0; /* 對齊文字頂部 */
        }

        .arrow.right {
            right: 0; /* 貼住最右邊 */
            top: 0; /* 對齊文字頂部 */
        }

        .prev-article-title, .next-article-title {
            margin: 0 0 0 0;  
            font-size: 14px;
            color: #666;  /* 灰色文字，唔太突出 */
            text-align: center;
            line-height: 1.4;
            font-weight: normal;
            text-decoration: none;
            margin-left: 20px; /* 左邊文字同箭頭分開少少，避免重疊；右邊同理 */
            margin-right: 20px;
        }

        .prev-article-title:hover, .next-article-title:hover {
            text-decoration: underline;
        }

        

        .series-name {
            flex: 1;  /* 佔據中間空間 */
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin: 0 20px;  /* 左右間距 */
        }

        /* 響應式：手機版會垂直堆疊 */
        @media (max-width: 675px) {
            .flip-pages-box {
                flex-direction: column;
                gap: 10px;
        }
  
        .series-name {
            margin: 0;
            order: -1;  /* 系列名放最上 */
        }

        .prev-content, .next-content {
            margin: 0 auto;
        }
        }

        

        

        

        .to-top-btn {
            position: fixed;
            align-items: center;
            display: flex;
            justify-content: center;
            bottom: 50px;
            right: 50px;
            width: 60px;
            height: 60px;
            background-color: #ffc709;
            border-radius: 30px;
            z-index: 1000; 
            transition: 0.3s;
            border: 0px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* 陰影效果 */
            transition: background-color 0.3s ease; /* 平滑轉換 */
            display: none; /* 一開始隱藏，等滾動先顯示 */
        }

        .to-top-btn:hover {
            background-color: #4ABDED; /* hover 變藍色 */
        }

        .to-top-btn.show {
            display: block; /* 滾動夠遠就顯示 */
        }

        .arrow-upward {
            width: 30px;
            height: 15px;
        }


        @media (max-width: 675px) {
            .to-top-btn {
                width: 40px;
                height: 40px;
                border-radius: 20px;
                bottom: 25px;
                right: 25px;
            }
            .arrow-upward {
                width: 20px;
                height: 10px;
            }
        }



        .striped-table {
            border: none;
            border-collapse: collapse;
            width: 500px;
            
            margin: 30px auto;
        }

        .striped-table th,
        .striped-table td {
            border: none;
            padding: 8px;
        }

        .striped-table thead th {
            background-color: #c3e5f4; 
        }

        .striped-table tbody .row-odd {
            background-color: white; 
        }

        .striped-table tbody .row-even {
            background-color: #c3e5f4; 
        }

        @media (max-width: 600px) {
            .striped-table {
            width: 100%;
            }
        }
