@charset "UTF-8";

/* 基礎重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    font-family: "Microsoft JhengHei", Arial, sans-serif;
    color: #333;
}

/* =========================================
   第一區塊：主視覺 (Hero Section)
   ========================================= */
#hero-section {
    position: relative;
    /* 讓內部的 absolute 元素以此為基準 */
    width: 100%;
    z-index: 10;
    /* 依您指示，層級設為 10 */
    overflow: hidden;
    /* 避免多餘溢出 */
}

/* --- 背景圖層 (實體圖片) --- */
.bg-layer {
    width: 100%;
    line-height: 0;
    /* 關鍵：消除圖片下方的微小留白 */
}

.hero-bg {
    width: 100%;
    height: auto;
    /* 讓高度自動隨寬度等比例縮放 */
    display: block;
}

/* --- 內容圖層 (疊加) --- */
.content-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* 標題圖片樣式 - 核心修正 */
.main-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* 只保留水平置中 */
    display: block;
    height: auto;

    /* 垂直定位改由下方 media query 的 top 控制，
       不再使用 50% + translate(-50%, -50%) */
    z-index: 20;
}

/* =========================================
   RWD 切換控制 (使用 display: none)
   ========================================= */

/* 預設：隱藏手機版背景 */
.mob-bg {
    display: none;
}

/* -----------------------------------------
   電腦版樣式 (寬度大於 768px)
   ----------------------------------------- */
@media screen and (min-width: 769px) {
    .pc-bg {
        display: block;
        /* 顯示電腦版背景 */
    }

    .mob-bg {
        display: none;
        /* 隱藏手機版背景 */
    }

    /* 調整電腦版標題 */
    .main-title {
        /* 從頂部往下算，確保不會壓到下方 */
        top: 12%;

        /* 縮小寬度，讓視覺更輕盈 */
        width: 45%;
        max-width: 800px;
    }
}

/* -----------------------------------------
   手機版樣式 (寬度小於等於 768px)
   ----------------------------------------- */
@media screen and (max-width: 768px) {
    .pc-bg {
        display: none;
        /* 隱藏電腦版背景 */
    }

    .mob-bg {
        display: block;
        /* 顯示手機版背景 */
    }

    /* 調整手機版標題 */
    .main-title {
        /* 手機版標題位置 */
        top: 15%;

        /* 縮小寬度，避免太滿 */
        width: 70%;
    }
}

/* =========================================
   第二區塊：Banner 輪播 (Banner Section)
   ========================================= */
#banner-section {
    width: 100%;
    /*background-color: #fff; 白色背景 */
    padding: 40px 0;
    /* 加大上下留白，讓標題不擁擠 */
    /*overflow: hidden;*/
}

/* --- 修正：區塊標題樣式 --- */
.section-title, .section-title2 {
    text-align: center;
    /*margin-bottom: 30px;*/
    padding: 0 20px;
}

/* 圖片控制：縮小 */
.section-title .title-img {
    display: inline-block;

    /* 設定一個合理的固定寬度，讓它不要過大 */
    width: 500px;

    /* RWD保險：手機版若螢幕太窄，自動縮成 80% 寬 */
    max-width: 80%;

    height: auto;
    margin-bottom: 15px;
    /* 拉開與文字的距離 */
}

/* 文字控制：放大、加粗 */
.section-title .title-desc {
    color: #cc3333;
    /* 過年紅 */

    /* 字體放大 */
    font-size: 2rem;
    /* 電腦版約 25px */

    line-height: 1.5;
    font-weight: 900;
    /* 極粗體，增加份量感 */
    letter-spacing: 2px;
    /* 增加字距，讓標題更有呼吸感 */
}

.section-title2 .title-img {
    display: inline-block;

    /* 設定一個合理的固定寬度，讓它不要過大 */
    width: 800px;

    /* RWD保險：手機版若螢幕太窄，自動縮成 80% 寬 */
    max-width: 100%;

    height: auto;
    /*margin-bottom: 15px;*/
    /* 拉開與文字的距離 */
}

/* 文字控制：放大、加粗 */
.section-title2 .title-desc {
    color: #cc3333;
    /* 過年紅 */

    /* 字體放大 */
    font-size: 2rem;
    /* 電腦版約 25px */

    line-height: 1.5;
    font-weight: 900;
    /* 極粗體，增加份量感 */
    letter-spacing: 2px;
    /* 增加字距，讓標題更有呼吸感 */
}

/* RWD 微調 */
@media screen and (max-width: 768px) {
    .section-title .title-img {
        width: 350px;
        /* 手機版圖片再稍微小一點 */
    }

    .section-title .title-desc {
        font-size: 1.5rem;
        /* 手機版文字大小 (約 20px) */
    }
}

/* 讓圖片在輪播中自適應 */
.slide-item {
    padding: 0 5px;
    /* 圖片之間的間距 */
}

.slide-item img {
    width: 100%;
    /* 寬度 100% 填滿格子 */
    height: auto;
    /* 高度自動 */
    display: block;
    border-radius: 10px;
    /* 如果想要圓角可以加這行 */
}

/* 修正 Slick 箭頭的位置 (選用) */
.slick-prev {
    left: 25px;
    z-index: 1;
}

.slick-next {
    right: 25px;
    z-index: 1;
}

/* =========================================
   動畫特效 (對應您的 jQuery addClass)
   ========================================= */

/* Pulse 特效：輕微放大縮小 */
.pulse {
    animation-name: pulse-animation;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    /* 放大 5% */
    100% {
        transform: scale(1);
    }
}

/* Flash 特效：閃爍一下 */
.flash {
    animation-name: flash-animation;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes flash-animation {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

/* =========================================
   全站浮動花朵圖層 (Global Flower Layer)
   ========================================= */
.flower-layer {
    position: fixed;
    /* ★ 關鍵：固定在視窗，不隨捲動消失 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* 佔滿整個視窗高度 */

    /* 層級設定：
       背景通常是 0 或 1
       內容文字通常是 10-20
       我們設為 5，讓它浮在背景上，但在重要內容之下 */
    z-index: 5;

    pointer-events: none;
    /* 讓滑鼠可以穿透花朵點擊下方的按鈕 */
}

/* 花朵定位與動畫 (保持之前的設定，稍微優化) */
.flower-item {
    position: absolute;
}

.flower-item img {
    display: block;
    height: auto;
}

/* =========================================
   花朵 RWD 定位與大小設定
   ========================================= */

/* -----------------------------------------
   電腦版設定 (寬度大於 768px)
   ----------------------------------------- */
   @media screen and (min-width: 769px) {
    
    /* --- 電腦版：左右一樣大，且放大 --- */
    .flower-left img,
    .flower-right img {
        width: 300px; /* 統一加大到 300px (原本是 160/240) */
    }

    /* 定位微調 (配合變大後的尺寸) */
    .flower-left {
        top: 50%;
        left: -20px; /* 因為變很大，讓它稍微吃進螢幕邊緣一點，比較自然 */
        transform: translateY(-60%);
    }

    .flower-right {
        top: 50%;
        right: -20px; /* 同樣稍微吃進螢幕邊緣 */
        transform: translateY(-40%);
    }
}

/* -----------------------------------------
   手機版設定 (寬度小於等於 768px)
   ----------------------------------------- */
@media screen and (max-width: 768px) {
    
    /* --- 右上角 (小花) --- */
    .flower-right img {
        width: 90px; /* 基準大小 */
    }

    /* --- 左下角 (大花，2倍大) --- */
    .flower-left img {
        width: 180px; /* 90px * 2 = 180px */
    }

    /* 定位微調 */
    .flower-left {
        top: auto;
        bottom: 5%;  /* 大花位置 */
        left: -15px; /* 稍微往左推，避免擋住太多內容 */
        transform: none;
    }

    .flower-right {
        top: 10%; 
        right: -5px;
        bottom: auto;
        transform: none;
    }
}

/* 為了確保網頁的其他內容 (如 Banner 的文字) 不會被花蓋住，
   我們可以給主內容區塊加一個相對高的 z-index (選用)
*/
#hero-section .content-layer {
    z-index: 20;
    /* 確保標題一定在花上面 */
}

#banner-section {
    position: relative;
    z-index: 10;
    /* Banner 區塊也在花上面 (若您希望花被 Banner 蓋住的話) */
    /* 如果您希望花浮在 Banner 上面，就把這行 z-index 拿掉或設為 1 */
}

/* =========================================
   第三區塊：藝人推薦區 (Artist Section)
   ========================================= */
   #artist-section {
    position: relative;
    width: 100%;
    /*background-color: #fff;*/
    padding: 20px 0 60px 0; /* 下方留多一點白，視覺較舒適 */
    z-index: 10; /* 確保蓋過浮動花朵(z-index:5) */
}

/* 網格容器 */
.artist-grid {
    display: flex; /* 彈性佈局 */
    justify-content: center; /* 水平置中 */
    align-items: flex-start; /* 靠上對齊 */
    gap: 30px; /* 項目之間的間距 */
    max-width: 1200px; /* 限制最大寬度 */
    margin: 0 auto; /* 容器置中 */
    padding: 0 20px;
}

/* 單個項目 */
.artist-item {
    width: 30%; /* 電腦版三個一排，每個約佔 30% */
    text-align: center;
    cursor: pointer; /* 讓滑鼠變手型，暗示可點擊 */
    transition: transform 0.3s ease; /* 互動特效 */
}

/* 滑鼠移過去會有浮起來的感覺 */
.artist-item:hover {
    transform: translateY(-10px);
}

/* 圖片容器與樣式 */
.artist-item .img-box {
    width: 100%;
    border-radius: 15px; /* 圓角 */
    overflow: hidden; /* 確保圖片不溢出圓角 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* 陰影質感 */
    margin-bottom: 15px;
}

.artist-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* 滑鼠移過去，圖片微放大 */
.artist-item:hover img {
    transform: scale(1.05);
}

/* 藝人名字 */
.artist-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
}

/* -----------------------------------------
   手機版 RWD (堆疊排列)
   ----------------------------------------- */
@media screen and (max-width: 768px) {
    .artist-grid {
        flex-direction: column; /* 改為直向排列 */
        align-items: center;
    }

    .artist-item {
        width: 80%; /* 手機版寬一點 */
        margin-bottom: 30px; /* 每個項目之間的距離 */
    }
    
    .artist-name {
        font-size: 2rem;
    }
}

/* =========================================
   第四區塊：馬上來玩 (Play Section)
   ========================================= */
   #play-section {
    position: relative;
    width: 100%;
    /*background-color: #fff; 若需要區隔可改 #f9f9f9 */
    padding: 20px 0 80px 0; /* 下方留白 */
    z-index: 10;
    text-align: center; /* 讓內容預設置中 */
}

/* --- 日期圖片區域 --- */
.play-content .date-box {
    margin-bottom: 50px; /* 縮小與下方文字的距離 */
    padding: 0 20px;
}

/* ★★★ 請補上這段遺失的代碼 ★★★ */
.play-content .date-img {
    display: inline-block;
    max-width: 100%; /* 關鍵：這行能防止圖片在手機上撐破畫面 */
    width: 600px;    /* 電腦版維持固定寬度 */
    height: auto;
}
/* ★★★ 補上結束 ★★★ */

/* --- ★ 修正：中間說明文字 (加大) --- */
.info-text {
    font-size: 2.6rem;      /* 加大字體 (約 26px) */
    line-height: 1.6;
    /*color: #cc3333;*/         /* 改成深紅色，強調重要性 (原本是深灰) */
    margin-bottom: 30px;
    font-weight: 900;       /* 改用最粗體 */
    padding: 0 20px;
}

/* --- ★ 修正：按鈕區域 (巨型化) --- */
.play-content .action-btn {
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    margin-top: 10px;       /* 增加一點上方空間 */
}

.play-content .btn-img {
    display: block;
    max-width: 100%;        /* 手機版依然保持 RWD 不破版 */
    
    /* 核心修改：大幅增加寬度 */
    width: 480px;           /* 原本 320px -> 改為 480px */
    
    height: auto;
    /* ★★★ 補上這行，圖片就會乖乖置中了！ ★★★ */
    margin: 0 auto;
}

/* --- 手機版 RWD 微調 --- */
@media screen and (max-width: 768px) {
    .info-text {
        font-size: 1.2rem;  /* 手機版也同步加大 (約 21px) */
    }
    
    .play-content .btn-img {
        width: 85%;         /* 手機上佔寬 85%，非常顯眼 */
    }
}

/* =========================================
   呼吸燈動畫 (強化版)
   ========================================= */
@keyframes breathe {
    0% {
        transform: scale(1);
        filter: brightness(100%) drop-shadow(0 5px 5px rgba(204, 51, 51, 0.2));
    }
    50% {
        transform: scale(1.08); /* 放大倍率增加 (1.05 -> 1.08) */
        filter: brightness(115%) drop-shadow(0 15px 15px rgba(204, 51, 51, 0.5)); /* 加入紅色光暈陰影 */
    }
    100% {
        transform: scale(1);
        filter: brightness(100%) drop-shadow(0 5px 5px rgba(204, 51, 51, 0.2));
    }
}

/* 應用呼吸動畫 */
.breathe-anim {
    /* 加快一點頻率 (2s -> 1.5s)，讓它跳得更急促一點 */
    animation: breathe 1.5s infinite ease-in-out; 
}



/*節目表*/
/* 容器樣式 */
.calendar {
    margin-top: 100px;
    /* ★★★ 新增這兩行，確保節目表在花朵上面 ★★★ */
    position: relative;
    z-index: 10;
}

/* RWD 調整 */
@media screen and (max-width: 768px) {
    .calendar {
        margin-top: 50px;
    }
}

.container {
    margin: 0 auto;
    padding: 16px;
}

/* 標題樣式 */
.title {
    text-align: center;
    color: #D7000F;
    font-weight: bold;
    line-height: 1.4;
}

/* 桌面版樣式 */
.desktop-view {
    display: none;
    /* 預設隱藏 */
}


.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #D7000F;
    text-align: center;
    margin-bottom: 20px;
    font-size: 4rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 80px repeat(7, 1fr);
    gap: 2px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-cell {
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 1.5em;
    color: #D7000F;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-cell {
    /*background-color: #fff;*/
    font-size: 1.2em;
    color: #D7000F;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-cell2 {
    /*background-color: #fff;*/
    font-size: 1.5em;
    color: #D7000F;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .time-cell2 {
        font-size: 1.2em;
    }
}

.content-cell {
    background-color: #d14238;
    font-size: 1.3em;
    color: white;
    padding: 5px;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.music-only {
    background-color: #d14238;
    grid-column: 2 / span 7;
}


.dj-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.guest-name {
    font-size: 0.6em;
    margin-bottom: 5px;
}

.special-note {
    font-size: 0.8em;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.8);
}


/* 手機版樣式 */
.mobile-view {
    display: block;
    /* 預設顯示 */
}

.m-container {
    width: 92%;
    max-width: 480px;
    margin: 0 auto;
}

.m-title {
    text-align: center;
    color: #D7000F;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
}

/* 日期頁籤樣式 */
.m-tabs {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin: 0 -4px 20px;
}

.m-tab {
    text-align: center;
    padding: 8px 4px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.m-tab.active {
    background-color: #D7000F;
    color: white;
}

.m-tab .date {
    font-size: 12px;
    margin-bottom: 2px;
}

.m-tab .day {
    font-weight: bold;
}

/* 節目表內容樣式 */
.m-content {
    display: none;
}

.m-content.active {
    display: block;
}

.m-slot {
    margin-bottom: 12px;
}

.m-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.m-program {
    background-color: #d14238;
    color: white;
    padding: 16px 12px;
    border-radius: 8px;
    text-align: center;
}

.m-program.music {
    background-color: #e37357;
}

.m-dj {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 4px;
}

.m-guest {
    font-size: 15px;
}

.m-note {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

@media (max-width: 360px) {
    .m-tabs {
        font-size: 12px;
    }

    .m-tab {
        padding: 6px 2px;
    }

    .m-dj {
        font-size: 16px;
    }

    .m-guest {
        font-size: 14px;
    }
}

/* ... 其他手機版樣式 ... */

/* RWD 斷點設定 */
@media screen and (min-width: 768px) {

    /* 平板以上 */
    .desktop-view {
        display: block;
    }

    .mobile-view {
        display: none;
    }

    .container {
        max-width: 1200px;
        padding: 24px;
    }

    .title {
        /*font-size: 32px;*/
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 767px) {

    /* 手機版 */
    .container {
        max-width: 480px;
    }

    .title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.music-color {
    background-color: #e37357;
}

/* footer */
.myfooter {
    width: 100%;
    position: relative;
    color: #000;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

@media (max-width: 767px) {
    .myfooter {
        font-size: 8px;
    }
}

.sicon {
    margin: 10px;
    font-size: 60px;
    color: #000;
}

.radioicon {
    width: 150px;
    padding-top: 30px;
}

.appicon {
    width: 130px;
    padding-top: 30px;
}


.webfontcolor1 {
    color: #e14a43;
    font-weight: 500;
}

.webfontcolor2 {
    color: #8C0000;
    font-weight: 500;
}

.redline {
    width: 50%;
    border-top: 1px solid #d3000f;
    text-align: center;
    margin: 0 auto;
    margin-top: -2px;
}

.polaroid {
    width: 800px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    /* ★★★ 新增這兩行，確保節目表在花朵上面 ★★★ */
    position: relative;
    z-index: 10;
}

.polaroid img {
    padding: 0 50px;
    max-width: 80%;
}

@media (max-width: 767px) {
    .polaroid {
        width: 100%;
        margin-top: 20px;
    }

    .polaroid img {
        padding: 0 10px;
        max-width: 50%;
    }
}

.replay-button.playing {
    background-color: rgba(255, 255, 255, 0.2); /* 或其他您想要的樣式 */
}

.replay-button.playing img {
    opacity: 0.7; /* 可選：讓圖示看起來有被按下的效果 */
}

/* 燈箱樣式 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.video-close {
    position: absolute;
    right: 0;
    top: -40px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#videoPlayer {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 比例 */
    height: 0;
    overflow: hidden;
}

#videoPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- 新增：除夕 GJ/Bryan 分割格專用樣式 --- */
.cell-split-vertical {
    padding: 0 !important; /* 強制移除原本格子的留白 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.cell-split-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 修改這一行：將 1px 改成 2px 或 3px */
    border-bottom: 2px solid rgba(255,255,255);
    box-sizing: border-box;
}

.cell-split-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   底部連結區塊修正 (Footer Icons Fix)
   ========================================= */
   .polaroid {
    display: flex;
    justify-content: center; /* 水平置中 */
    align-items: flex-end;   /* 底部對齊 (讓文字在同一水平線上) */
    gap: 60px;               /* 兩個項目之間的距離 */
    margin: 60px auto 40px auto; /* 上下留白 */
    width: 100%;
    max-width: 800px;
}

/* 清除個別項目容器的干擾 */
.polaroid > div {
    text-align: center;
    /* 這裡不需要額外的 padding，交給 flex gap 控制間距 */
}

/* --- 圖片設定 --- */
.polaroid img {
    display: block;
    margin: 0 auto 15px auto; /* 圖片置中，且與下方文字保持 15px 距離 */
    
    /* ★ 關鍵修正：強制移除舊的 padding 設定 */
    padding: 0 !important; 
    
    height: auto;
    border: none;
    transition: transform 0.3s ease;
}

/* 設定圖片的具體大小 */
.radioicon {
    width: 140px !important; /* 強制設定寬度 */
    max-width: none !important; /* 移除舊的 % 限制 */
}

.appicon {
    width: 120px !important; /* 強制設定寬度 */
    max-width: none !important;
}

/* 滑鼠移過去圖片微放大 */
.polaroid a:hover img {
    transform: scale(1.1);
}

/* --- 文字設定 --- */
.polaroid a {
    text-decoration: none; /* 移除超連結底線 */
    display: block;
}

.webfontsize1 {
    font-size: 1.3rem; /* 字體大小 */
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* 定義顏色 (解決預設藍色連結問題) */
.webfontcolor3 {
    color: #cc3333; /* 過年紅 */
    transition: color 0.3s ease;
}

.polaroid a:hover .webfontcolor3 {
    color: #a80000; /* 滑鼠移過去變深紅 */
}

/* -----------------------------------------
   手機版 RWD
   ----------------------------------------- */
@media screen and (max-width: 768px) {
    .polaroid {
        gap: 30px; /* 手機版間距縮小 */
        margin-top: 30px;
        flex-direction: row; /* 保持橫向排列 */
    }

    .radioicon {
        width: 100px !important; /* 手機版圖示縮小 */
    }

    .appicon {
        width: 85px !important;
    }

    .webfontsize1 {
        font-size: 1rem; /* 手機版文字縮小 */
    }
}

/* =========================================
   底部滿版視覺 (Footer Bottom Visual)
   ========================================= */
   .footer-bottom-visual {
    /* ★★★ 關鍵修正：加上這行，z-index 才會生效！ ★★★ */
    position: relative;
    width: 100%;
    line-height: 0;   /* 關鍵：消除圖片下方的微小留白 (ghost space) */
    margin-top: 20px; /* 與上方版權文字保持一點距離，視覺比較舒服 */
    z-index: 10; /* 確保蓋過浮動花朵(z-index:5) */
}

.footer-img {
    width: 100%;      /* 強制滿版 */
    height: auto;     /* 高度自適應 */
}

/* 註：.pc-bg 和 .mob-bg 的顯示/隱藏邏輯，
   因為我們在最前面已經寫過全域設定了 (display: block/none)，
   所以這裡會自動生效，不需要再重寫！
*/

/* =========================================
   Slick 輪播箭頭 - 最終美化版 (透明、大顆、置中)
   ========================================= */

/* 1. 按鈕本體設定 */
.custom-arrow {
    display: flex !important;           /* 啟動 Flexbox 讓內部箭頭置中 */
    justify-content: center;            /* 水平置中 */
    align-items: center;                /* 垂直置中 */
    
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100 !important;            /* 確保在最上層 */
    
    /* --- 尺寸設定 (電腦版加大) --- */
    width: 60px !important;             /* 加大：原本 50px -> 60px */
    height: 60px !important;
    
    /* --- 外觀設定 (透明度) --- */
    background-color: rgba(255, 255, 255, 0.3) !important; /* 平常比較透明 (30%) */
    border: 1px solid rgba(255, 255, 255, 0.6) !important; /* 淡淡的邊框 */
    border-radius: 50%;                 /* 圓形 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 輕微陰影 */
    cursor: pointer;
    transition: all 0.3s ease;          /* 平滑動畫 */
}

/* 滑鼠移過去變明顯 */
.custom-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9) !important; /* 變不透明 (90%) */
    transform: translateY(-50%) scale(1.1); /* 稍微放大 */
    box-shadow: 0 4px 15px rgba(204, 51, 51, 0.4); /* 發出一點紅色光暈 */
}

/* 2. 定位設定 (電腦版往內縮) */
.slick-prev {
    left: 40px !important;  /* 電腦版：離左邊遠一點 (40px) */
    right: auto !important;
}

.slick-next {
    right: 40px !important; /* 電腦版：離右邊遠一點 (40px) */
    left: auto !important;
}

/* 3. 箭頭圖案繪製 (置中修正) */
.arrow-left, .arrow-right {
    display: block;
    width: 16px;       /* 箭頭圖案變大 */
    height: 16px;
    border-top: 4px solid #cc3333;   /* 過年紅 */
    border-right: 4px solid #cc3333; /* 過年紅 */
    opacity: 0.9;      /* 箭頭本身不透明 */
}

.arrow-left {
    transform: rotate(-135deg); /* 轉成向左 */
    /* 視覺置中微調：因為旋轉後重心會偏，往右補一點點距離 */
    margin-left: 5px; 
    margin-top: 0px;
}

.arrow-right {
    transform: rotate(45deg);   /* 轉成向右 */
    /* 視覺置中微調：往左補一點點距離 */
    margin-right: 5px;
    margin-top: 0px;
}

/* -----------------------------------------
   手機版特別調整 (維持小巧、靠邊)
   ----------------------------------------- */
@media screen and (max-width: 768px) {
    .custom-arrow {
        width: 40px !important;  /* 手機版改回小顆 */
        height: 40px !important;
        background-color: rgba(255, 255, 255, 0.6) !important; /* 手機版底色稍微明顯一點，怕手指擋住 */
    }

    .slick-prev {
        left: 10px !important;   /* 手機版靠邊一點，爭取畫面空間 */
    }

    .slick-next {
        right: 10px !important;
    }

    .arrow-left, .arrow-right {
        width: 10px;    /* 手機版箭頭圖案縮小 */
        height: 10px;
        border-width: 3px; /* 線條變細 */
    }
    
    .arrow-left { margin-left: 3px; }
    .arrow-right { margin-right: 3px; }
}

.coming_soon img {
    max-width: 300px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .coming_soon img {
        max-width: 200px;
        margin-top: 20px;
    }
}