:root {
            --primary: #f97316;
            --accent: #facc15;
            --bg-dark: #1a1410;
            --text-light: #fff7ed;
            --card-bg: #241c16;
            --glass-highlight: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
            --shadow-strong: 0 20px 35px -8px rgba(0, 0, 0, 0.8), 0 8px 15px rgba(0, 0, 0, 0.6);
            --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Noto Sans SC', 'Inter', sans-serif;
            background-image: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 35%);
            overflow-x: hidden;
        }
        h1, h2, h3, .font-serif {
            font-family: 'Noto Serif SC', serif;
            font-weight: 900;
        }
        .navbar-custom {
            background: #1e1611;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            transition: all 0.25s ease;
        }
        .navbar-custom.scrolled {
            background: rgba(26, 20, 16, 0.9) !important;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
        }
        .nav-link-custom {
            color: var(--text-light) !important;
            font-weight: 500;
            padding: 0.6rem 1.2rem !important;
            transition: 0.2s;
            border-radius: 30px;
        }
        .nav-link-custom:hover {
            color: var(--accent) !important;
            text-shadow: 0 0 10px var(--accent);
            background: rgba(250, 204, 21, 0.1);
        }
        .hero-gradient {
            background: linear-gradient(115deg, #ff8a33 10%, #facc15 40%, #f97316 75%, #fdba74);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: drop-shadow(0 6px 12px rgba(249, 115, 22, 0.3));
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.01em;
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 90px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
        }
        .magazine-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            opacity: 0.9;
            margin-right: 15px;
            font-family: 'Noto Serif SC', serif;
            text-shadow: 0 4px 10px rgba(249, 115, 22, 0.5);
        }
        .poster-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem 1.5rem;
            width: 100%;
            margin-bottom: 2rem;
        }
        @media (max-width: 992px) {
            .poster-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 700px) {
            .poster-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
        }
        @media (max-width: 450px) {
            .poster-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .movie-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            transition: 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            cursor: pointer;
            backdrop-filter: blur(2px);
        }
        .movie-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(249, 115, 22, 0.5);
            box-shadow: 0 25px 40px -10px #000000, 0 0 0 2px rgba(249,115,22,0.4);
        }
        .card-img-wrapper {
            aspect-ratio: 2 / 3;
            overflow: hidden;
            background: #2a211b;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .movie-card:hover .card-img-wrapper img {
            transform: scale(1.12) rotate(0.5deg);
        }
        .card-badge {
            position: absolute;
            top: 8px;
            left: 10px;
            background: #f97316;
            padding: 4px 10px;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(249,115,22,0.8);
            z-index: 3;
        }
        .card-rating-badge {
            position: absolute;
            right: 10px;
            top: 10px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            padding: 3px 10px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        .movie-info {
            padding: 12px 12px 20px;
        }
        .movie-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 4px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
        .meta-row {
            display: flex;
            gap: 10px;
            color: #bbb0a4;
            font-size: 0.8rem;
        }
        .outline-card {
            background: #201a15;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 24px;
            padding: 1.8rem;
            box-shadow: var(--shadow-soft);
            transition: 0.2s;
        }
        .outline-card:hover {
            border-color: rgba(249,115,22,0.4);
            background: #241e18;
        }
        .overlay-fade {
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 2;
            display: flex;
            align-items: flex-end;
        }
        .movie-card:hover .overlay-fade {
            opacity: 1;
        }
        .overlay-text {
            padding: 15px;
            font-size: 0.8rem;
            color: #fff;
        }
        /* 侧滑详情栏 */
        .side-drawer {
            position: fixed;
            right: -420px;
            top: 0;
            width: 380px;
            height: 100%;
            background: #221a15;
            box-shadow: -10px 0 30px rgba(0,0,0,0.8);
            transition: right 0.35s ease;
            z-index: 2000;
            padding: 25px;
            overflow-y: auto;
            border-left: 3px solid var(--primary);
        }
        .side-drawer.open {
            right: 0;
        }
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.65);
            backdrop-filter: blur(3px);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            z-index: 1999;
        }
        .drawer-backdrop.show {
            opacity: 1;
            pointer-events: auto;
        }
        .drawer-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--accent);
            position: absolute;
            right: 15px;
            top: 5px;
        }
        .top-scroll-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            opacity: 0;
            transition: 0.3s;
            z-index: 1500;
            border: none;
        }
        .top-scroll-btn.visible {
            opacity: 1;
        }
        .friend-links {
            background: #211912;
            padding: 2rem 0;
            border-radius: 30px 30px 0 0;
        }
        .friend-links a, .footer-area a {
            color: #ccc0b0;
            text-decoration: none;
            margin-right: 15px;
            font-size: 0.9rem;
        }
        .friend-links a:hover, .footer-area a:hover {
            color: var(--accent);
        }
        .footer-area {
            background: #14100c;
            padding: 2.5rem 0 1rem;
            border-top: 2px solid rgba(249,115,22,0.2);
        }
        .footer-link-list a {
            display: inline-block;
            margin: 5px 15px 5px 0;
        }
        .badge-hot {
            background: rgba(250, 204, 21, 0.2);
            border: 1px solid var(--accent);
            border-radius: 30px;
            padding: 0.2rem 1rem;
            font-size: 0.8rem;
        }
        .step-number {
            font-size: 2rem;
            color: var(--primary);
            font-weight: bold;
            margin-right: 15px;
            font-family: 'Noto Serif SC', serif;
        }

/* --- 子页面追加 --- */
/* 确保卡片/表格等组件跟随深色主题，防止白块 */
    .guide-section .outline-card,
    .guide-section .card,
    .guide-section .list-group-item,
    .guide-section .accordion-item {
      background: var(--card-bg);
      color: var(--text-light);
      border-color: #3a2e26;
    }
.guide-section .card-title,
    .guide-section .card-text {
      color: var(--text-light);
    }
.guide-section .step-number {
      background: rgba(249, 115, 22, 0.15);
      color: var(--primary);
      border: 1px solid rgba(249, 115, 22, 0.3);
    }
.guide-section .outline-card {
      background: var(--card-bg);
      border-radius: 16px;
      padding: 1.5rem;
      height: 100%;
      transition: transform 0.2s ease;
    }
.guide-section .outline-card:hover {
      transform: translateY(-3px);
    }
.guide-section .table {
      --bs-table-bg: transparent;
      --bs-table-color: var(--text-light);
      --bs-table-border-color: #3a2e26;
    }
.guide-section .table td,
    .guide-section .table th {
      background: transparent;
      border-color: #3a2e26;
      color: var(--text-light);
    }
.guide-section .table-hover > tbody > tr:hover > * {
      background: rgba(249, 115, 22, 0.06);
      color: var(--accent);
    }
.anchor-offset {
      scroll-margin-top: 80px;
    }

/* --- 子页面追加 --- */
/* 保证所有卡片、表单等与深色主题完全融合，不出现白底 */
        .card, .card-body, .card-header, .card-footer,
        .form-control, .form-select, .accordion-item, .accordion-button, .list-group-item {
            background: var(--card-bg) !important;
            color: var(--text-light) !important;
            border-color: rgba(255,255,255,0.08) !important;
        }
.accordion-button:not(.collapsed) {
            background: rgba(249, 115, 22, 0.15) !important;
            color: var(--primary) !important;
        }
.accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.15);
        }
.nav-link-custom.active {
            color: var(--accent) !important;
            text-shadow: 0 0 8px rgba(250, 204, 21, 0.5);
        }
.content-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem 2.2rem;
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.04);
            transition: transform .25s ease, box-shadow .25s ease;
        }
.content-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-strong);
        }
.list-bullet {
            list-style: none;
            padding-left: 1.2rem;
        }
.list-bullet li {
            position: relative;
            padding: 0.3rem 0 0.3rem 1.8rem;
            border-bottom: 1px dashed rgba(255,255,255,0.06);
        }
.list-bullet li:last-child { border-bottom: none; }
.list-bullet li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.4rem;
            color: var(--primary);
            font-size: 0.9rem;
        }
.section-title i {
            font-size: 1.8rem;
            color: var(--primary);
            background: rgba(249,115,22,0.12);
            width: 3rem;
            height: 3rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
        }
.badge-soft {
            background: rgba(250,204,21,0.15);
            color: var(--accent);
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(250,204,21,0.2);
        }
.content-card { padding: 1.5rem 1rem; }
/* 品牌名连续完整 */
        .brand-text {
            font-family: 'Noto Serif SC', serif;
            white-space: nowrap;
        }
.brand-text i {
            color: var(--primary);
        }

/* --- 子页面追加 --- */
/* 覆盖 Bootstrap 卡片/表格等组件为深色暖调，与站内配色统一 */
        .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
        .list-group-item, .accordion-item, .accordion-button, .accordion-body,
        .form-control, .form-select, .modal-content, .table {
            background: var(--card-bg) !important;
            color: var(--text-light) !important;
            border-color: var(--card-bg) !important;
        }
.card, .list-group-item, .accordion-item, .modal-content {
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow-soft);
        }
.accordion-button::after {
            filter: invert(1) sepia(0.5) saturate(3) hue-rotate(5deg);
        }
.dropdown-menu, .dropdown-item {
            background-color: #241c16 !important;
            color: var(--text-light) !important;
        }
/* 站点地图卡片内部链接颜色 */
        .map-link-list a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
        }
.map-link-list a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
.map-link-list i {
            color: var(--accent);
            width: 24px;
        }
.map-section-title {
            border-left: 5px solid var(--primary);
            padding-left: 12px;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.accordion-header { background:transparent !important; }
.breadcrumb { color:#fff7ed !important; }
