
            :root {
                --primary-color: #E63946;
                --bg-color: #F8F9FA;
                --text-main: #1A1A1A;
                --text-muted: #666666;
                --border-color: #E0E0E0;
                --spacing-unit: 8px;
                --font-main: 'Noto Sans TC', sans-serif;
                --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            body {
                font-family: var(--font-main);
                background-color: var(--bg-color);
                color: var(--text-main);
                line-height: 1.6;
                overflow-x: clip !important;
            }
            nav {
                position: sticky;
                top: 0;
                z-index: 1000;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid var(--border-color);
                padding: 16px 32px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 40px;
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* 控制縮放的絲滑感 */
            }

            nav.scrolled {
                padding: 8px 32px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            }

            .nav-logo {
                flex-shrink: 0;
                display: flex;
                align-items: center;
            }
            .nav-logo img {
                height: 36px;
                width: auto;
                transition: height 0.4s ease;
            }
            nav.scrolled .nav-logo img {
                height: 28px;
            }

            .nav-links {
                display: flex;
                align-items: center;
                gap: 32px;
                flex-grow: 1;
            }
            .nav-links a {
                display: flex;
                align-items: center;
                gap: 6px;
                text-decoration: none;
                color: #353538;
                font-weight: 500;
                font-size: 16px;
                transition: var(--transition-smooth);
                white-space: nowrap;
            }
            .nav-links a:hover, .nav-links a.active {
                color: var(--primary-color);
            }

            .nav-links a svg {
                width: 18px;
                height: 18px;
                transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            .nav-links a:hover svg, .nav-links a.active svg {
                transform: scale(1.15);
            }

            @media (max-width: 768px) {
                nav {
                    padding: 12px 16px;
                    gap: 20px;
                }
                nav.scrolled {
                    padding: 8px 16px;
                }

                .nav-logo img {
                    height: 28px;
                }
                nav.scrolled .nav-logo img {
                    height: 24px;
                }

                .nav-links {
                    overflow-x: auto;
                    scrollbar-width: none;
                    -ms-overflow-style: none;
                    gap: 20px;
                    padding-bottom: 2px;
                }
                .nav-links::-webkit-scrollbar {
                    display: none;
                }
            }

            /* Layout */
            .container {
                max-width: 1280px;
                margin: 0 auto;
                padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
            }
            .section-title {
                font-size: 32px;
                font-weight: 500;
                margin-bottom: calc(var(--spacing-unit) * 4);
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .section-title::before {
                content: '';
                display: block;
                width: 6px;
                height: 32px;
                background-color: var(--primary-color);
            }

            /* Grid & Cards */
            .news-grid {
                display: grid;
                grid-template-columns: 6fr 4fr;
                gap: calc(var(--spacing-unit) * 4);
                margin-bottom: calc(var(--spacing-unit) * 8);
            }
            .card, .sub-card {
                cursor: pointer;
                text-decoration: none;
                color: inherit;
                display: flex;
            }
            .card {
                flex-direction: column;
                gap: 16px;
            }
            .img-wrapper {
                overflow: hidden;
                border-radius: 8px;
                position: relative;
            }
            .img-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: var(--transition-smooth);
            }
            .card:hover img, .sub-card:hover img {
                transform: scale(1.03);
            }
            .card:hover .title, .sub-card:hover .title {
                color: var(--primary-color);
            }

            .badge {
                position: absolute;
                top: 12px;
                left: 12px;
                z-index: 10;
                background: rgba(255, 255, 255, 0.9);
                padding: 4px 12px;
                border-radius: 4px;
                font-size: 12px;
                font-weight: 500;
            }
            .meta {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 13px;
                color: var(--text-muted);
                font-weight: 500;
            }
            .title {
                font-size: 24px;
                font-weight: 500;
                transition: var(--transition-smooth);
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .intro {
                font-size: 15px;
                color: var(--text-muted);
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .main-article .img-wrapper {
                aspect-ratio: 16 / 9;
            }
            .main-article .title {
                font-size: 32px;
            }

            .sub-articles {
                display: flex;
                flex-direction: column;
                gap: calc(var(--spacing-unit) * 3);
            }
            .sub-card {
                display: grid;
                grid-template-columns: 1fr 2fr;
                gap: 16px;
                align-items: center;
            }
            .sub-card .img-wrapper {
                aspect-ratio: 4 / 3;
            }
            .sub-card .title {
                font-size: 18px;
            }
            .sub-card .intro {
                display: none;
            }

            /* Video Carousel */
            .video-carousel-wrapper {
                margin-top: calc(var(--spacing-unit) * 6);
            }
            .video-carousel {
                display: flex;
                gap: 24px;
                overflow-x: auto;
                padding-bottom: 24px;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
            }
            .video-carousel::-webkit-scrollbar {
                display: none;
            }
            .video-card {
                flex: 0 0 calc(33.333% - 16px);
                scroll-snap-align: start;
                cursor: pointer;
            }
            .video-card .img-wrapper {
                aspect-ratio: 16 / 9;
                position: relative;
            }
            .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.25);
                backdrop-filter: blur(8px);
                display: flex;
                justify-content: center;
                align-items: center;
                border: 1px solid rgba(255,255,255,0.4);
                transition: var(--transition-smooth);
            }
            .play-btn::after {
                content: '';
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 10px 0 10px 16px;
                border-color: transparent transparent transparent white;
                margin-left: 4px;
            }
            .video-card:hover .play-btn {
                background: var(--primary-color);
                border-color: var(--primary-color);
                transform: translate(-50%, -50%) scale(1.1);
            }
            .duration {
                position: absolute;
                bottom: 8px;
                right: 8px;
                background: rgba(0,0,0,0.8);
                color: white;
                padding: 2px 6px;
                border-radius: 4px;
                font-size: 12px;
                font-family: monospace;
            }
            .video-card .title {
                font-size: 16px;
                margin-top: 12px;
                -webkit-line-clamp: 2;
            }

            /* Lightbox */
            .lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(0, 0, 0, 0.6);
                backdrop-filter: blur(12px);
                z-index: 1000;
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.4s ease;
            }
            .lightbox.active {
                opacity: 1;
                pointer-events: auto;
            }
            .lightbox-content {
                width: 90%;
                max-width: 1000px;
                aspect-ratio: 16 / 9;
                position: relative;
                background: #000;
                box-shadow: 0 24px 64px rgba(0,0,0,0.5);
            }
            .lightbox iframe {
                width: 100%;
                height: 100%;
                border: none;
            }
            .close-btn {
                position: absolute;
                top: -40px;
                right: 0;
                color: white;
                font-size: 32px;
                cursor: pointer;
                background: none;
                border: none;
                transition: color 0.2s;
            }
            .close-btn:hover {
                color: var(--primary-color);
            }
            .countdown-banner.premium-theme {
                width: 100%;
                background: linear-gradient(360deg, #404040 0%, #1A1D24 100%);
                color: #FFFFFF;
                padding: 14px 0;
                position: sticky;
                top: 69px;
                overflow: hidden;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
                z-index: 990;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .countdown-banner.premium-theme.scrolled {
                top: 43px;
                padding: 4px 0 2px 0;
                background: linear-gradient(360deg, #404040 0%, rgba(26, 29, 36, 0.95) 100%);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            }

            .premium-theme .countdown-title,
            .premium-theme .num,
            .premium-theme .time-box,
            .premium-theme .label {
                transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .countdown-banner.scrolled .countdown-title {
                font-size: 15px;
            }
            .countdown-banner.scrolled .num {
                font-size: 18px;
            }
            .countdown-banner.scrolled .time-box {
                padding: 6px 12px 0px 12px;
                min-width: 60px;
            }
            .countdown-banner.scrolled .label {
                font-size: 9px;
                margin-top: 2px;
                transform: scale(0.8);
                transform-origin: center top;
            }

            .premium-theme .sheen-line {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 2px;
                background: linear-gradient(90deg, transparent, #D4AF37, #FFF5D1, #D4AF37, transparent);
                background-size: 200% 100%;
                animation: sweep-line 4s linear infinite;
                opacity: 0.8;
            }
            @keyframes sweep-line {
                0% {
                    background-position: 100% 0;
                }
                100% {
                    background-position: -100% 0;
                }
            }

            .premium-theme .countdown-container {
                max-width: 1280px;
                margin: 0 auto;
                padding: 0 calc(var(--spacing-unit) * 3);
                display: flex;
                justify-content: space-between;
                align-items: center;
                position: relative;
                z-index: 2;
            }

            .premium-theme .countdown-title {
                font-size: 18px;
                font-weight: 500;
                letter-spacing: 2px;
                display: flex;
                align-items: center;
                gap: 16px;
                color: #E2E8F0;
            }

            .premium-theme .pulse-ring {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: var(--primary-color);
                position: relative;
            }
            .premium-theme .pulse-ring::before {
                content: '';
                position: absolute;
                top: -4px;
                left: -4px;
                right: -4px;
                bottom: -4px;
                border: 1px solid var(--primary-color);
                border-radius: 50%;
                animation: pulse-ring-anim 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
            }
            @keyframes pulse-ring-anim {
                0% {
                    transform: scale(0.8);
                    opacity: 1;
                }
                100% {
                    transform: scale(2.5);
                    opacity: 0;
                }
            }

            .premium-theme .countdown-timer {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .premium-theme .time-box {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.03);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-top: 1px solid rgba(255, 255, 255, 0.15);
                border-radius: 8px;
                padding: 10px 18px;
                min-width: 76px;
                box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0,0,0,0.2);
            }

            .premium-theme .highlight-box {
                background: rgba(230, 57, 70, 0.05);
                border-color: rgba(230, 57, 70, 0.2);
                border-top: 1px solid rgba(230, 57, 70, 0.4);
            }

            .premium-theme .num {
                font-size: 36px;
                font-weight: 500;
                font-variant-numeric: tabular-nums;
                line-height: 1.1;
                background: linear-gradient(180deg, #FFFFFF 0%, #B0B8C4 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            }

            .premium-theme .highlight-box .num {
                background: linear-gradient(180deg, #FFFFFF 0%, #FFB6B9 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .premium-theme .label {
                font-size: 11px;
                font-weight: 500;
                color: #8B949E;
                letter-spacing: 3px;
                margin-top: 4px;
                font-family: 'Arial', sans-serif;
            }

            .city-tabs-wrapper {
                position: relative;
                margin-bottom: 24px;
                width: 100%;
            }

            .city-tabs-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                width: 48px;
                background: linear-gradient(to right, rgba(248, 249, 250, 0) 0%, var(--bg-color) 100%);
                pointer-events: none;
                z-index: 5;
            }

            .city-tabs {
                display: flex;
                gap: 12px;
                margin-bottom: 24px;
                border-bottom: 2px solid var(--border-color);
                overflow-x: auto;
                scrollbar-width: none;
            }
            .city-tabs::-webkit-scrollbar {
                display: none;
            }
            .city-tab {
                background: none;
                border: none;
                padding: 12px 24px;
                font-size: 18px;
                font-weight: 500;
                color: var(--text-muted);
                cursor: pointer;
                transition: var(--transition-smooth);
                position: relative;
                white-space: nowrap;
            }
            .city-tab:hover {
                color: var(--text-main);
            }
            .city-tab.active {
                color: var(--primary-color);
            }
            .city-tab.active::after {
                content: '';
                position: absolute;
                bottom: -2px;
                left: 0;
                right: 0;
                height: 3px;
                background-color: var(--primary-color);
                border-radius: 3px 3px 0 0;
            }

            .city-panel {
                display: none;
                animation: fadeIn 0.4s ease;
            }
            .city-panel.active {
                display: block;
            }
            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .vs-arena {
                display: flex;
                justify-content: center;
                align-items: stretch;
                background: linear-gradient(360deg, #1A1C21 0%, #595959 100%);
                border-radius: 16px;
                padding: 32px;
                gap: 24px;
                position: relative;
                overflow: hidden;
                box-shadow: 0 12px 32px rgba(0,0,0,0.15);
                margin-bottom: 24px;
            }

            /* 候選人卡片 */
            .candidate-card {
                flex: 1;
                display: flex;
                align-items: center;
                gap: 24px;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.05);
                border-radius: 12px;
                padding: 24px;
                position: relative;
                z-index: 2;
                transition: transform 0.3s ease;
            }
            .candidate-card:hover {
                transform: translateY(-4px);
            }

            /* 政黨陣營光暈特效 (Director's touch) */
            .party-blue {
                box-shadow: inset 0 0 40px rgba(0, 90, 181, 0.1);
                border-bottom: 2px solid #005AB5;
            }
            .party-green {
                box-shadow: inset 0 0 40px rgba(27, 148, 49, 0.1);
                border-bottom: 2px solid #1B9431;
            }
            .party-white {
                box-shadow: inset 0 0 40px rgba(0, 187, 204, 0.1);
                border-bottom: 2px solid #00BBCC;
            }

            .candidate-photo {
                width: 140px;
                height: 140px;
                border-radius: 50%;
                overflow: hidden;
                background: #2A2A2A;
                border: 3px solid rgba(255,255,255,0.1);
                flex-shrink: 0;
            }
            .candidate-photo img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top;
            }

            .candidate-info {
                color: white;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            .party-tag {
                font-size: 12px;
                font-weight: 500;
                color: #AAA;
                letter-spacing: 1px;
                margin-bottom: 4px;
            }
            .candidate-info .name {
                font-size: 28px;
                font-weight: 500;
                margin-bottom: 8px;
                letter-spacing: 2px;
            }
            .candidate-info .slogan {
                font-size: 15px;
                color: #CCC;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .vs-badge {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
                color: #000;
                font-size: 20px;
                font-weight: 500;
                font-style: italic;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 2px 4px rgba(255,255,255,0.5);
                z-index: 10;
                border: 4px solid #1A1C21;
            }

            /* --- 戰區專屬 API 新聞 --- */
            .city-news-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            .city-news-card {
                display: flex;
                flex-direction: column;
                gap: 12px;
                text-decoration: none;
                color: inherit;
            }
            .city-news-card .img-wrapper {
                aspect-ratio: 16 / 9;
                border-radius: 8px;
                overflow: hidden;
            }
            .city-news-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: var(--transition-smooth);
            }
            .city-news-card:hover img {
                transform: scale(1.05);
            }
            .city-news-card .title {
                font-size: 16px;
                font-weight: 500;
                line-height: 1.5;
                transition: color 0.2s;
                -webkit-line-clamp: 2;
            }
            .city-news-card:hover .title {
                color: var(--primary-color);
            }
            .filter-chips-wrapper {
                position: relative;
                margin-bottom: 24px;
                width: 100%;
            }
            .filter-chips-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                width: 48px;
                background: linear-gradient(to right, rgba(248,249,250,0) 0%, var(--bg-color) 100%);
                pointer-events: none;
                z-index: 5;
            }
            .filter-chips {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                scrollbar-width: none;
                padding-right: 48px;
                padding-bottom: 8px;
                -webkit-overflow-scrolling: touch; /* 喚醒 iOS 原生彈簧慣性滑動 */
                cursor: grab;
                user-select: none;
                -webkit-user-select: none;
            }
            .filter-chips::-webkit-scrollbar {
                display: none;
            }
            .filter-chips.dragging {
                cursor: grabbing;
                scroll-behavior: auto;
            }
            .chip {
                background: #FFFFFF;
                border: 1px solid var(--border-color);
                color: var(--text-muted);
                font-size: 15px;
                font-weight: 500;
                padding: 8px 20px;
                border-radius: 30px;
                cursor: pointer;
                transition: var(--transition-smooth);
                white-space: nowrap;
                flex-shrink: 0;
                box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            }
            .chip:hover {
                border-color: var(--text-muted);
                color: var(--text-main);
            }
            /* 啟動狀態：深色高對比，展現專業感 */
            .chip.active {
                background: var(--text-main);
                color: #FFFFFF;
                border-color: var(--text-main);
                box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            }

            /* 戰區新聞網格 */
            .battleground-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .bg-card {
                display: flex;
                flex-direction: column;
                gap: 16px;
                text-decoration: none;
                color: inherit;
                transition: opacity 0.3s ease;
            }
            .bg-card .img-wrapper {
                aspect-ratio: 16 / 9;
                border-radius: 8px;
                overflow: hidden;
                position: relative;
            }
            .bg-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.4s ease;
            }
            .bg-card:hover img {
                transform: scale(1.05);
            }

            /* 總監特調：地理座標標籤 (Location Badge) */
            .location-badge {
                position: absolute;
                top: 12px;
                left: 12px;
                z-index: 10;
                background: rgba(26, 26, 26, 0.6); /* 沉穩的半透明曜石黑 */
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                color: #FFFFFF;
                font-size: 13px;
                font-weight: 500;
                letter-spacing: 1px;
                padding: 6px 12px 6px 10px;
                border-radius: 6px;
                display: flex;
                align-items: center;
                gap: 4px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.2);
                border: 1px solid rgba(255,255,255,0.1);
            }
            .location-badge svg {
                color: var(--primary-color);
            }
            .mobile-location {
                display: none;
            }
            .bg-card .title {
                font-size: 18px;
                font-weight: 500;
                line-height: 1.5;
                transition: color 0.2s;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .bg-card:hover .title {
                color: var(--primary-color);
            }
            .vip-councilors-wrapper {
                position: relative;
                margin-bottom: 32px;
                width: 100%;
            }
            .vip-councilors-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                width: 60px;
                background: linear-gradient(to right, rgba(248, 249, 250, 0) 0%, var(--bg-color) 100%);
                pointer-events: none;
                z-index: 5;
            }
            .vip-councilors {
                display: flex;
                gap: 24px;
                overflow-x: auto;
                scrollbar-width: none;
                padding-right: 60px;
                padding-bottom: 12px;
                padding-top: 8px;
                -webkit-overflow-scrolling: touch;
            }
            .vip-councilors::-webkit-scrollbar {
                display: none;
            }

            .vip-avatar {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 8px;
                cursor: pointer;
                flex-shrink: 0;
                transition: transform 0.2s ease;
                opacity: 0.6; /* 預設為半透明，凸顯 active 狀態 */
                width: 72px;
            }
            .vip-avatar:hover {
                opacity: 1;
                transform: translateY(-2px);
            }
            .vip-avatar.active {
                opacity: 1;
                transform: translateY(-4px);
            }

            .avatar-img-box {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                background: #FFF;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;
                border: 2px solid transparent;
                transition: all 0.3s ease;
            }
            .avatar-img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .vip-avatar.premium .avatar-img-box {
                border: 2px solid #D4AF37; /* 香檳金邊框 */
                box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
                padding: 2px; /* 創造雙層邊框的高級感 */
            }
            .vip-avatar.premium img {
                border-radius: 50%;
            }

            .party-blue-border {
                border-color: #005AB5 !important;
                box-shadow: 0 4px 12px rgba(0, 90, 181, 0.3) !important;
            }
            .party-green-border {
                border-color: #1B9431 !important;
                box-shadow: 0 4px 12px rgba(27, 148, 49, 0.3) !important;
            }
            .party-white-border {
                border-color: #00BBCC !important;
                box-shadow: 0 4px 12px rgba(0, 187, 204, 0.3) !important;
            }

            .vip-avatar.active .avatar-img-box {
                transform: scale(1.1);
                border-width: 3px;
            }

            .vip-name {
                font-size: 14px;
                font-weight: 500;
                color: var(--text-main);
                text-align: center;
                white-space: nowrap;
            }
            .vip-avatar.premium .vip-name {
                color: #8A6D00; /* 廣告主名字微調為深金色 */
            }
            .vip-avatar.active .vip-name {
                color: var(--primary-color);
            }

            /* 載入中動畫 */
            .loading-spinner {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 16px;
                padding: 48px 0;
                color: var(--text-muted);
                font-weight: 500;
                font-size: 15px;
            }
            .spinner {
                width: 40px;
                height: 40px;
                border: 4px solid rgba(230, 57, 70, 0.2);
                border-top-color: var(--primary-color);
                border-radius: 50%;
                animation: spin 1s linear infinite;
            }
            @keyframes spin {
                100% {
                    transform: rotate(360deg);
                }
            }
            /* =========================================
               選戰直擊 (Photo Gallery)
               ========================================= */
            .photo-gallery-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 200px; /* 基礎列高 */
                gap: 16px;
            }

            .gallery-item {
                position: relative;
                border-radius: 8px;
                overflow: hidden;
                cursor: pointer;
                background-color: #E0E0E0; /* 圖片載入前的骨架底色 */
            }

            /* 讓第一張或特定圖片跨越兩欄兩列，創造視覺重心 */
            .gallery-item.large {
                grid-column: span 2;
                grid-row: span 2;
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            /* 懸停時的暗化遮罩與放大鏡 ICON */
            .gallery-item .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.4);
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
            .gallery-item .overlay svg {
                color: white;
                transform: scale(0.5);
                transition: transform 0.3s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.05);
            }
            .gallery-item:hover .overlay {
                opacity: 1;
            }
            .gallery-item:hover .overlay svg {
                transform: scale(1);
            }
            /* --- 選戰直擊：原生廣告/焦點標籤 --- */
            .sponsor-badge {
                position: absolute;
                top: 8px;
                right: 8px;
                background: rgba(212, 175, 55, 0.9); /* 香檳金底色 */
                color: #000;
                font-size: 11px;
                font-weight: 500;
                letter-spacing: 2px;
                padding: 4px 8px 4px 10px;
                border-radius: 4px;
                z-index: 10;
                box-shadow: 0 2px 8px rgba(0,0,0,0.3);
                backdrop-filter: blur(4px);
            }
            /* --- 圖片專用 Lightbox 樣式 --- */
            .photo-lightbox-content {
                width: 90vw;
                max-width: 1200px;
                height: 90vh;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                position: relative;
            }
            .photo-lightbox-content img {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
                box-shadow: 0 12px 48px rgba(0,0,0,0.5);
            }
            /* --- Lightbox 左右切換按鈕 (Director's Glassmorphism) --- */
            .nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: rgba(20, 20, 20, 0.5);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255,255,255,0.1);
                color: white;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: all 0.3s ease;
                z-index: 1010;
            }
            .nav-btn svg {
                width: 28px;
                height: 28px;
            }
            .nav-btn:hover {
                background: var(--primary-color);
                border-color: var(--primary-color);
                transform: translateY(-50%) scale(1.1);
            }

            .prev-btn {
                left: 40px;
            }
            .next-btn {
                right: 40px;
            }

            /* 優化圖說：移除標題後，讓文字稍微放大且置中，增加易讀性 */
            .caption-overlay p {
                font-size: 15px;
                color: #EEE;
                line-height: 1.6;
                text-align: justify;
                text-align-last: center;
            }

            /* 手機版微調：將切換按鈕縮小並貼近螢幕邊緣 */
            @media (max-width: 768px) {
                /* 手機版 Nav 高度是 53px，縮小後是 35px */
                .countdown-banner.premium-theme {
                    top: 53px;
                }
                .countdown-banner.premium-theme.scrolled {
                    top: 44px;
                    padding: 5px 0 1px 0;
                }

                /* 總監的空間魔法：手機版縮小後，強制從直排改成橫排並隱藏標題，極致省空間！ */
                .countdown-banner.scrolled .countdown-container {
                    flex-direction: row;
                    justify-content: center;
                    align-items: center; /* 確保垂直置中 */
                    gap: 12px;
                }
                .countdown-banner.scrolled .countdown-title {
                    display: none;
                }
                /* 總監特調：利用偽元素在計時器左邊注入「投票倒數」字樣 */
                .countdown-banner.scrolled .countdown-timer::before {
                    content: '投票倒數';
                    display: block;
                    font-size: 12px;
                    font-weight: 700;
                    color: var(--primary-color); /* 使用知新聞的紅色，凸顯緊迫感 */
                    letter-spacing: 1px;
                    padding-right: 12px;
                    margin-right: 4px;
                    border-right: 1px solid rgba(255, 255, 255, 0.2); /* 加上一道極細的高級分隔線 */
                }
                .countdown-banner.scrolled .time-box {
                    padding: 5px 8px 0px 8px;
                    min-width: 48px;
                }
                .countdown-banner.scrolled .num {
                    font-size: 13px;
                }
                .nav-btn {
                    width: 40px;
                    height: 40px;
                }
                .nav-btn svg {
                    width: 20px;
                    height: 20px;
                }
                .prev-btn {
                    left: 10px;
                }
                .next-btn {
                    right: 10px;
                }
            }
            /* 沉浸式圖說浮層 */
            .caption-overlay {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                max-width: 800px;
                background: rgba(20, 20, 20, 0.85);
                backdrop-filter: blur(8px);
                -webkit-backdrop-filter: blur(8px);
                border: 1px solid rgba(255,255,255,0.1);
                padding: 16px 24px;
                border-radius: 8px;
                color: white;
                text-align: center;
                opacity: 0;
                transform: translate(-50%, 20px);
                transition: all 0.4s ease 0.2s;
            }
            /* 當 lightbox active 時，圖說滑入顯示 */
            #photoLightbox.active .caption-overlay {
                opacity: 1;
                transform: translate(-50%, 0);
            }

            .caption-overlay p {
                font-size: 14px;
                color: #DDD;
                line-height: 1.5;
            }

            /* --- RWD 手機版微調 --- */
            @media (max-width: 768px) {
                .photo-gallery-grid {
                    grid-template-columns: repeat(2, 1fr);
                    grid-auto-rows: 140px;
                    gap: 8px;
                }
                .gallery-item.large {
                    grid-column: span 2;
                    grid-row: span 2;
                }
                .photo-lightbox-content {
                    width: 100vw;
                    height: 100vh;
                    justify-content: center; /* 關鍵：垂直置中 */
                    align-items: center;     /* 關鍵：水平置中 */
                    padding-top: 0;          /* 取消原本的頂部推擠 */
                    padding-bottom: 70px;    /* 底部預留一點安全距離給圖說，避免圖說擋住照片主體 */
                }

                .photo-lightbox-content img {
                    max-width: 100vw;
                    max-height: calc(100vh - 120px); /* 動態計算高度，確保圖片比例不會爆框 */
                }

                .caption-overlay {
                    bottom: 0;
                    width: 100%;
                    border-radius: 16px 16px 0 0;
                    padding: 16px;
                    border: none;
                    border-top: 1px solid rgba(255,255,255,0.1);
                }

                .caption-overlay p {
                    font-size: 14px;
                    text-align: left; /* 總監微調：手機版圖說改為靠左對齊，閱讀長句子更順暢 */
                    text-align-last: left;
                    -webkit-line-clamp: 3;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }
            }
            /* =========================================
               民意熱區 (Neo War Room / Light Theme)
               ========================================= */
            .neo-war-room {
                display: grid;
                grid-template-columns: 6fr 4fr;
                gap: 24px;
                /* 明亮版：純淨白搭配極淺灰漸層 */
                background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
                padding: 32px;
                border-radius: 16px;
                box-shadow: 0 12px 32px rgba(0,0,0,0.06);
                border: 1px solid var(--border-color);
                color: var(--text-main);
            }

            .neo-chart-panel {
                background: #FFFFFF;
                border: 1px solid var(--border-color);
                border-radius: 12px;
                overflow: hidden;
                display: flex;
                flex-direction: column;
                box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            }

            .neo-panel-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 12px 20px;
                border-bottom: 1px solid var(--border-color);
                background: #F1F5F9; /* 淺灰標題列 */
            }

            .tech-indicator {
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .radar-pulse {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background-color: var(--primary-color);
                box-shadow: 0 0 0 rgba(230, 57, 70, 0.4);
                animation: tech-pulse 2s infinite;
            }
            @keyframes tech-pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
                }
                70% {
                    box-shadow: 0 0 0 6px rgba(230, 57, 70, 0);
                }
                100% {
                    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
                }
            }

            .tech-code {
                font-family: monospace;
                font-size: 11px;
                color: #94A3B8;
                letter-spacing: 2px;
            }

            .neo-chart-stage {
                position: relative;
                flex-grow: 1;
                padding: 24px;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: 350px;
            }

            /* 明亮版網格背景 */
            .cyber-grid {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-image:
                    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
                background-size: 20px 20px;
                z-index: 0;
                pointer-events: none;
            }

            .chart-img {
                position: relative;
                z-index: 1;
                width: 100%;
                max-height: 400px;
                object-fit: contain;
                cursor: zoom-in;
                transition: transform 0.4s ease;
                filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
            }
            .chart-img:hover {
                transform: scale(1.03);
            }

            .empty-state {
                font-family: monospace;
                color: #94A3B8;
                z-index: 1;
            }

            .neo-news-feed {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }
            .feed-title {
                font-size: 18px;
                font-weight: 700;
                color: var(--text-main);
                border-left: 4px solid var(--primary-color);
                padding-left: 12px;
                display: flex;
                align-items: baseline;
                gap: 8px;
                margin-bottom: 8px;
            }
            .feed-title span {
                font-family: monospace;
                font-size: 11px;
                color: #94A3B8;
                font-weight: 400;
                letter-spacing: 1px;
            }
            .feed-list {
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .neo-news-card {
                display: flex;
                align-items: center;
                gap: 16px;
                background: #FFFFFF;
                border: 1px solid var(--border-color);
                padding: 12px 16px;
                border-radius: 8px;
                text-decoration: none;
                color: inherit;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            }
            .neo-news-card::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                bottom: 0;
                width: 3px;
                background: var(--primary-color);
                transform: scaleY(0);
                transition: transform 0.3s ease;
                transform-origin: bottom;
            }
            .neo-news-card:hover {
                background: #F8FAFC;
                border-color: #CBD5E1;
                transform: translateX(4px);
                box-shadow: 0 6px 12px rgba(0,0,0,0.05);
            }
            .neo-news-card:hover::before {
                transform: scaleY(1);
            }

            .rank-badge {
                font-family: monospace;
                font-size: 18px;
                font-weight: 900;
                color: #CBD5E1;
                transition: color 0.3s ease;
            }
            .neo-news-card:hover .rank-badge {
                color: var(--primary-color);
            }

            .text-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                gap: 6px;
            }
            .neo-news-card .title {
                font-size: 15px;
                font-weight: 700;
                line-height: 1.4;
                color: var(--text-main);
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .neo-news-card:hover .title {
                color: var(--primary-color);
            }

            .neo-news-card .meta {
                font-size: 12px;
                color: #64748B;
                display: flex;
                align-items: center;
                gap: 4px;
                font-family: monospace;
            }
            .neo-news-card .meta svg {
                width: 12px;
                height: 12px;
            }

            .neo-news-card .img-wrapper {
                width: 72px;
                height: 54px;
                flex-shrink: 0;
                border-radius: 4px;
                overflow: hidden;
            }
            .neo-news-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: filter 0.3s ease;
            }

            /* --- RWD 手機版微調 --- */
            @media (max-width: 768px) {
                .neo-war-room {
                    grid-template-columns: 1fr;
                    padding: 20px 16px;
                    gap: 32px;
                    border-radius: 0;
                    box-shadow: none;
                    border-top: 1px solid var(--border-color);
                    border-bottom: 1px solid var(--border-color);
                }
                .neo-chart-stage {
                    min-height: 250px;
                    padding: 16px;
                }
                .neo-news-card {
                    padding: 12px;
                    gap: 12px;
                }
                .rank-badge {
                    font-size: 16px;
                }
                .neo-news-card .img-wrapper {
                    width: 80px;
                    height: 60px;
                }
            }
            .tech-indicator .label {
                /* 加入微軟正黑/蘋方等黑體作為中文的後備字體 */
                font-family: 'JetBrains Mono', 'Courier New', monospace, 'Noto Sans TC', sans-serif;
                font-size: 13px;
                font-weight: 500;
                color: #334155;
                letter-spacing: 1px;
            }
            /* =========================================
               專家解碼 (Editorial Style List)
               ========================================= */
            .expert-list {
                display: flex;
                flex-direction: column;
                gap: 0;
            }

            .expert-card {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 40px;
                padding: 32px 0;
                border-bottom: 1px solid var(--border-color);
                text-decoration: none;
                color: inherit;
                transition: background-color 0.3s ease;
            }

            /* 第一篇上方不要有線（因為 header 已經有粗底線了），保持乾淨 */
            .expert-card:first-child {
                padding-top: 8px;
            }

            .expert-card .text-content {
                flex-grow: 1;
                max-width: 800px;
            }

            .expert-card .meta {
                display: flex;
                align-items: center;
                gap: 12px;
                font-size: 13px;
                font-weight: 500;
                margin-bottom: 12px;
            }
            .expert-card .column-tag {
                color: var(--primary-color);
            }
            .expert-card .separator {
                color: #CCC;
            }
            .expert-card .time {
                color: var(--text-muted);
                font-weight: 500;
            }

            /* 總監特調：標題底線生長動畫 (Magazine Hover Effect) */
            .expert-card .title {
                font-size: 22px;
                font-weight: 500;
                line-height: 1.5;
                margin-bottom: 12px;
                color: var(--text-main);
                display: inline; /* 必須設定 inline 才能讓底線緊貼文字長度 */
                background-image: linear-gradient(transparent calc(100% - 2px), var(--primary-color) 2px);
                background-repeat: no-repeat;
                background-size: 0% 100%;
                transition: background-size 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            }
            .expert-card:hover .title {
                background-size: 100% 100%;
            }

            .expert-card .intro {
                font-size: 15px;
                color: var(--text-muted);
                line-height: 1.6;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            /* 專家專欄的縮圖比例改為 1:1，並加上微圓角，營造人物大頭貼或專欄插圖的意象 */
            .expert-card .img-wrapper {
                width: 140px;
                height: 140px;
                flex-shrink: 0;
                border-radius: 8px;
                overflow: hidden;
            }
            .expert-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: grayscale(20%);
                transition: all 0.4s ease;
            }
            .expert-card:hover img {
                filter: grayscale(0%);
                transform: scale(1.05);
            }

            /* --- RWD 手機版微調 --- */
            @media (max-width: 768px) {
                .expert-card {
                    flex-direction: row; /* 取消原本的上下堆疊，改回水平排列 */
                    align-items: flex-start;
                    gap: 16px;
                    padding: 20px 0;
                }

                /* 縮小為 90px 的精緻正方小圖 */
                .expert-card .img-wrapper {
                    width: 90px;
                    height: 90px;
                    flex-shrink: 0;
                    border-radius: 6px;
                }

                .expert-card .meta {
                    margin-bottom: 8px;
                    font-size: 12px;
                }

                /* 標題縮小並限制行數 */
                .expert-card .title {
                    font-size: 16px;
                    -webkit-line-clamp: 3;
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                }

                /* 總監的留白魔法：手機版空間有限，隱藏摘要讓畫面更乾淨 */
                .expert-card .intro {
                    display: none;
                }
            }
            /* =========================================
               AI 特派員 (Holographic Matrix / Light Theme)
               ========================================= */
            .ai-matrix-container {
                display: grid;
                grid-template-columns: 5fr 5fr;
                gap: 24px;
                /* 明亮版：清爽的極光漸層 */
                background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
                padding: 32px;
                border-radius: 16px;
                border: 1px solid #E2E8F0;
            }

            /* --- 明亮系毛玻璃卡片 --- */
            .ai-glass-card {
                position: relative;
                display: block;
                text-decoration: none;
                color: var(--text-main);
                border-radius: 12px;
                overflow: hidden;
                /* 核心：白底微透明 */
                background: rgba(255, 255, 255, 0.9);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 1px solid #FFFFFF;
                box-shadow: 0 8px 24px rgba(0,0,0,0.06);
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            }
            .ai-glass-card .card-inner {
                position: relative;
                z-index: 2;
                height: 100%;
                display: flex;
                flex-direction: column;
            }

            .ai-glass-card::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.4), rgba(230, 57, 70, 0.2), transparent);
                z-index: 0;
                opacity: 0;
                transition: opacity 0.4s ease;
                border-radius: 14px;
            }
            .ai-glass-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 40px rgba(0,0,0,0.12);
            }
            .ai-glass-card:hover::before {
                opacity: 1;
            }

            .ai-status {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 12px 16px;
                font-family: monospace;
                font-size: 12px;
                color: var(--primary-color);
                font-weight: 700;
                letter-spacing: 1px;
                border-bottom: 1px solid var(--border-color);
                background: #F8FAFC;
            }
            .ai-status.mini {
                padding: 8px 12px;
                font-size: 11px;
            }

            .processing-dot {
                width: 6px;
                height: 6px;
                background-color: var(--primary-color);
                border-radius: 50%;
                box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
                animation: blink 1.5s infinite;
            }

            .main-ai {
                display: flex;
                flex-direction: column;
            }
            .main-ai .img-wrapper {
                position: relative;
                width: 100%;
                height: 240px;
                overflow: hidden;
            }
            .main-ai .img-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }
            .main-ai:hover .img-wrapper img {
                transform: scale(1.03);
            }

            /* 明亮版圖片漸層覆蓋 */
            .main-ai .img-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(to bottom, transparent 40%, rgba(255, 255, 255, 1) 100%);
            }

            .main-ai .text-content {
                padding: 24px;
                color: var(--text-main);
                flex-grow: 1;
                display: flex;
                flex-direction: column;
            }
            .main-ai .title {
                font-size: 24px;
                font-weight: 700;
                line-height: 1.4;
                margin-bottom: 12px;
            }
            .main-ai .intro {
                font-size: 15px;
                color: var(--text-muted);
                line-height: 1.6;
                margin-bottom: 16px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .main-ai .meta {
                margin-top: auto;
                font-family: monospace;
                font-size: 12px;
                color: #94A3B8;
            }

            .scan-line {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 2px;
                background: linear-gradient(to right, transparent, rgba(230, 57, 70, 0.6), transparent);
                box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
                z-index: 5;
                opacity: 0;
                animation: scan 3s infinite linear;
            }
            .main-ai:hover .scan-line {
                opacity: 1;
            }

            .ai-sub-grid {
                display: grid;
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 1fr);
                gap: 12px;
            }
            .sub-ai .content-split {
                display: flex;
                padding: 12px;
                gap: 16px;
                align-items: stretch;
                height: calc(100% - 31px);
            }
            .sub-ai .text-content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            .sub-ai .title {
                font-size: 15px;
                font-weight: 700;
                color: var(--text-main);
                line-height: 1.4;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                transition: color 0.3s;
            }
            .sub-ai:hover .title {
                color: var(--primary-color);
            }
            .sub-ai .meta {
                font-family: monospace;
                font-size: 11px;
                color: #94A3B8;
            }

            .sub-ai .img-wrapper {
                width: 80px;
                flex-shrink: 0;
                border-radius: 6px;
                overflow: hidden;
            }
            .sub-ai img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all 0.3s ease;
            }
            .sub-ai:hover img {
                transform: scale(1.05);
            }

            @media (max-width: 768px) {
                .ai-matrix-container {
                    grid-template-columns: 1fr;
                    padding: 16px;
                    background: transparent;
                    box-shadow: none;
                    border: none;
                }
                .main-ai .title {
                    font-size: 20px;
                }
                .main-ai .img-wrapper {
                    height: 180px;
                }
            }
            /* =========================================
               網站頁尾 (Footer / Light Clean Theme)
               ========================================= */
            .site-footer {
                background: #FFFFFF; /* 明亮白底 */
                color: var(--text-muted);
                margin-top: calc(var(--spacing-unit) * 8);
                border-top: 1px solid var(--border-color);
                position: relative;
                overflow: hidden;
            }

            .site-footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 60%;
                height: 2px;
                background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            }

            .footer-container {
                max-width: 1280px;
                margin: 0 auto;
                padding: 64px 24px;
                display: flex;
                justify-content: space-between;
                gap: 48px;
                flex-wrap: wrap;
            }

            .footer-brand {
                flex: 1;
                min-width: 300px;
                max-width: 400px;
            }
            .footer-logo {
                font-size: 28px;
                font-weight: 700;
                color: var(--text-main);
                margin-bottom: 16px;
                letter-spacing: 2px;
            }
            .footer-logo span {
                color: var(--primary-color);
                font-family: monospace;
                font-weight: 700;
            }
            .footer-desc {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 24px;
                color: var(--text-muted);
            }

            /* 明亮版社群圖示 */
            .social-links {
                display: flex;
                gap: 16px;
            }
            .social-icon {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: #F1F5F9;
                color: #475569;
                border: 1px solid transparent;
                transition: all 0.3s ease;
            }
            .social-icon svg {
                width: 18px;
                height: 18px;
            }
            .social-icon:hover {
                background: var(--primary-color);
                border-color: var(--primary-color);
                color: #FFF;
                transform: translateY(-4px);
                box-shadow: 0 8px 16px rgba(230, 57, 70, 0.2);
            }

            .footer-links {
                display: flex;
                gap: 64px;
                flex-wrap: wrap;
            }
            .link-group h4 {
                color: var(--text-main);
                font-size: 16px;
                font-weight: 700;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }
            .link-group ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 12px;
            }

            .link-group a {
                color: var(--text-muted);
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s ease;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .link-group a::before {
                content: '›';
                color: var(--primary-color);
                font-size: 18px;
                line-height: 1;
                opacity: 0;
                transform: translateX(-8px);
                transition: all 0.3s ease;
            }
            .link-group a:hover {
                color: var(--primary-color);
            }
            .link-group a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

            .highlight-group a {
                color: var(--text-main);
                font-weight: 500;
            }

            .footer-bottom {
                max-width: 1280px;
                margin: 0 auto;
                padding: 24px;
                border-top: 1px solid var(--border-color);
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
            }
            .footer-copyright {
                font-size: 13px;
                color: #94A3B8;
                font-family: Arial, sans-serif;
                letter-spacing: 0.5px;
            }

            .footer-tech-badge {
                font-family: monospace;
                font-size: 11px;
                color: #94A3B8;
                display: flex;
                align-items: center;
                gap: 8px;
                letter-spacing: 2px;
            }
            .footer-tech-badge .pulse-dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: var(--primary-color);
                box-shadow: 0 0 8px rgba(230, 57, 70, 0.4);
            }

            @media (max-width: 768px) {
                .footer-container {
                    padding: 48px 24px;
                    flex-direction: column;
                    gap: 48px;
                }
                .footer-links {
                    gap: 40px;
                    justify-content: space-between;
                }
                .link-group {
                    flex: 1;
                    min-width: 120px;
                }
                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                    justify-content: center;
                    padding-bottom: 40px;
                }
            }
            /* =========================================
               總監特調：八大區塊交錯全寬背景 (Zebra Striping)
               ========================================= */

            /* 1. 移除主容器上下內距，交由 section 自己控制 */
            main.container {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            /* 2. 重置 section 間距：強制覆蓋原本 HTML 上的 inline margin，改用 padding 撐開呼吸空間 */
            main.container > section {
                margin-top: 0 !important;
                margin-bottom: 0 !important;
                padding-top: calc(var(--spacing-unit) * 8);
                padding-bottom: calc(var(--spacing-unit) * 4);
                position: relative;
            }

            main.container > section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                z-index: -1; /* 確保背景圖層墊在新聞卡片與內容的下方 */
            }

            main.container > section:nth-child(odd)::before {
                background-color: var(--bg-color); /* #F8F9FA */
            }

            main.container > section:nth-child(even)::before {
                background-color: #FFFFFF;
                border-top: 1px solid rgba(0,0,0,0.03);
                border-bottom: 1px solid rgba(0,0,0,0.03);
            }

            .site-footer {
                margin-top: 0 !important;
            }

            @media (max-width: 768px) {
                main.container > section {
                    padding-top: calc(var(--spacing-unit) * 4);
                    padding-bottom: calc(var(--spacing-unit) * 2);
                }
            }

            @media (max-width: 768px) {

                .news-grid {
                    grid-template-columns: 1fr;
                    gap: 24px;
                }
                .main-article .title {
                    font-size: 24px;
                }
                .sub-card {
                    grid-template-columns: 120px 1fr;
                    gap: 16px;
                    align-items: start;
                }
                .sub-card .img-wrapper {
                    aspect-ratio: 4 / 3;
                    border-radius: 6px;
                }
                .sub-card .title {
                    font-size: 16px;
                    line-height: 1.5;
                    -webkit-line-clamp: 3;
                }
                .sub-card .meta {
                    margin-bottom: 6px;
                    font-size: 12px;
                }
                .sub-card .badge {
                    padding: 2px 6px;
                    font-size: 10px;
                    top: 4px;
                    left: 4px;
                }

                .video-card {
                    flex: 0 0 85%;
                }

                .premium-theme .countdown-container {
                    flex-direction: column;
                    gap: 16px;
                    justify-content: center;
                }
                .premium-theme .countdown-title {
                    font-size: 15px;
                    letter-spacing: 1px;
                }
                .premium-theme .countdown-timer {
                    gap: 8px;
                }
                .premium-theme .time-box {
                    padding: 8px 12px;
                    min-width: 64px;
                }
                .premium-theme .num {
                    font-size: 28px;
                }
                .premium-theme .label {
                    font-size: 10px;
                    letter-spacing: 2px;
                    transform: scale(0.9);
                    transform-origin: center top;
                }

                /* ==================================================
                   總監特調：六都爭霸 - 手機版雙雄對決 (Side-by-side)
                   ================================================== */
                .city-tabs {
                    margin-bottom: 16px;
                    gap: 8px;
                }
                .city-tab {
                    padding: 10px 16px;
                    font-size: 16px;
                }

                /* 擂台強制橫向排列，營造面對面交鋒的張力 */
                .vs-arena {
                    flex-direction: row; /* 關鍵：保持水平並排 */
                    padding: 16px 12px;
                    gap: 8px; /* 縮小卡片間距以適應手機螢幕 */
                    border-radius: 12px;
                }

                /* 候選人卡片內部改為垂直置中堆疊 */
                .candidate-card {
                    flex-direction: column;
                    text-align: center;
                    gap: 12px;
                    padding: 16px 8px;
                    border-radius: 8px;
                }

                /* 縮小照片，但保留精緻的粗外框 */
                .candidate-photo {
                    width: 76px;
                    height: 76px;
                    margin: 0 auto; /* 確保照片在卡片正中央 */
                    border-width: 2px;
                }

                /* 緊縮字級與行距，防止版面炸裂 */
                .party-tag {
                    font-size: 10px;
                    margin-bottom: 4px;
                }
                .candidate-info .name {
                    font-size: 17px;
                    letter-spacing: 1px;
                    margin-bottom: 4px;
                }
                .candidate-info .slogan {
                    font-size: 12px;
                    line-height: 1.3;
                    -webkit-line-clamp: 2;
                }

                /* 縮小 VS 金屬標誌 */
                .vs-badge {
                    width: 36px;
                    height: 36px;
                    font-size: 13px;
                    border-width: 2px;
                }

                /* 戰區新聞保持左圖右文的優良傳統 */
                .city-news-grid {
                    grid-template-columns: 1fr;
                    gap: 16px;
                }
                .city-news-card {
                    flex-direction: row;
                    align-items: start;
                }
                .city-news-card .img-wrapper {
                    width: 110px;
                    flex-shrink: 0;
                    aspect-ratio: 4 / 3;
                }
                .city-news-card .title {
                    font-size: 15px;
                    -webkit-line-clamp: 3;
                }
                .battleground-grid {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
                /* 手機版維持左圖右文，保持閱讀節奏統一 */
                .bg-card {
                    flex-direction: row;
                    align-items: start;
                    gap: 16px;
                }
                .bg-card .img-wrapper {
                    width: 120px;
                    flex-shrink: 0;
                    aspect-ratio: 4 / 3;
                }
                .bg-card .title {
                    font-size: 16px;
                    -webkit-line-clamp: 3;
                }
                /* 縮小手機版的地理標籤 */
                /* --- 百里侯戰：手機版標籤扁平化處理 --- */
                /* 1. 隱藏圖片上的大標籤，釋放縮圖空間 */
                .desktop-badge {
                    display: none !important;
                }

                /* 2. 顯示內嵌在標題上方的輕量化標籤，並設計分隔線 */
                .mobile-location {
                    display: inline-flex;
                    align-items: center;
                    gap: 4px;
                    color: var(--primary-color);
                    font-weight: 500;
                    border-right: 1px solid var(--border-color);
                    padding-right: 8px;
                    margin-right: -4px; /* 微調與右側時間的間距 */
                }
            }