/* 主容器 */
.bundle-93-98 .container {
    margin: auto;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* Adjusted padding */
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: #fff;
    position: relative;
}

.card-container {
    width: 100%;
    background-color: #B99A83;
    /* 更新後的基礎背景色 */
    /* 嘗試模擬亂數排列的纖維/噪點紋理 */
    /* 透過疊加多層細小、半透明、不同角度和尺寸的漸變來製造"雜亂感" */
    background-image:
        /* 第一層：細小的深色點狀紋理 */
        linear-gradient(45deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.04) 75%, rgba(0, 0, 0, 0.04)),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.03) 75%, rgba(0, 0, 0, 0.03)),
        /* 第二層：更細小的淺色點狀紋理，增加層次感 */
        linear-gradient(60deg, rgba(255, 255, 255, 0.035) 20%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.035) 80%, rgba(255, 255, 255, 0.035)),
        linear-gradient(-60deg, rgba(255, 255, 255, 0.025) 20%, transparent 20%, transparent 80%, rgba(255, 255, 255, 0.025) 80%, rgba(255, 255, 255, 0.025)),
        /* 第三層：非常細微的整體噪點感 */
        radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1.5px),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1.5px);

    background-size:
        5px 5px,
        /* 第一層深色點的尺寸 */
        6px 6px,
        /* 第一層深色點（不同角度）的尺寸 */
        4px 4px,
        /* 第二層淺色點的尺寸 */
        5px 5px,
        /* 第二層淺色點（不同角度）的尺寸 */
        3px 3px,
        /* 第三層噪點的重複尺寸 */
        4px 4px;
    /* 第三層噪點（不同顏色）的重複尺寸 */

    background-position:
        /* 稍微錯開各層的位置，避免完全重疊 */
        0 0,
        1px 2px,
        2px 1px,
        0 1px,
        1px 0,
        2px 2px;

    border-radius: 25px 25px 0 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 漫畫標題 (頁面 93) */
.bundle-93-98 .title.page-93-title {
    text-align: center;
    color: #fff;
    /* Brownish color from image */
    margin: 10px 0 5px 0;
    font-size: 2.8rem;
    /* Adjust size */
    font-weight: bold;
    line-height: 1.3;
    /* Light background for title area */
    padding: 15px;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

/* 漫畫作者 (頁面 93) */
.bundle-93-98 .author.page-93-author {
    text-align: center;
    margin: 0;
    /* Reduced margin */
    font-size: 1rem;
    color: #fff;
    /* Light background for title area */
    padding-bottom: 15px;
    border-radius: 0 0 10px 10px;
    border-top: none;
}

/* 內容樣式 */
.bundle-93-98 .content {
    margin-top: 0;
    /* Add space below title/author */
}

/* 漫畫面板/圖片 */
.bundle-93-98 .comic-panel {
    margin-bottom: 20px;
    text-align: center;
    /* Center images */
}

.bundle-93-98 .comic-panel img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    /* Center image and add space below */
    border: 1px solid #eee;
    /* Subtle border for images */
    border-radius: 4px;
}

.bundle-93-98 .comic-panel p {
    text-align: left;
    /* Align text left */
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    padding: 0 10px;
    /* Add some padding */
}

/* 頁碼 (與 style107-108.css 相同) */
.bundle-93-98 .page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 8px 0;
    clear: both;
}

.bundle-93-98 .page-text {
    font-size: 0.9em;
    color: #555;
}

.bundle-93-98 .page-circle {
    background: #84BAA4;
    /* Standard color */
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* 移除最後一個區塊的下外邊距 */
/* .bundle-93-98 .container:last-child {
    margin-bottom: 0;
} */

/* 清除浮動 */
.bundle-93-98 .container::after,
.bundle-93-98 .content::after {
    content: "";
    display: table;
    clear: both;
}


/* 固定垂直標籤 (與 style107-108.css 相同) */
.bundle-93-98-active .fixed-vertical-label {
    position: fixed;
    top: 30px;
    left: 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    background-color: #84BAA4;
    /* Standard color */
    color: white;
    padding: 10px 8px;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 5px;
    z-index: 1000;
    font-weight: bold;
}

/* 響應式設計 */
@media (max-width: 768px) {
    /* .bundle-93-98 body {
        padding: 5px;
    } */

    .bundle-93-98 .container {
        padding: 15px 15px;
        /* Adjusted padding */
    }

    .bundle-93-98 .title.page-93-title {
        font-size: 1.8rem;
    }

    .bundle-93-98 .author.page-93-author {
        font-size: 0.9rem;
    }

    .bundle-93-98-active .fixed-vertical-label {
        /* Apply standard RWD styles */
        font-size: 11px;
        padding: 2px 0;
        left: 0;
        line-height: 1.2;
    }

    .bundle-93-98 .page-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .bundle-93-98 .comic-panel p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .bundle-93-98 .container {
        padding: 10px 15px;
        /* Further adjust padding */
    }

    .bundle-93-98 .title.page-93-title {
        font-size: 1.6rem;
    }

    .bundle-93-98 .comic-panel p {
        font-size: 0.9rem;
    }
}