:root {
    --primary: #2563eb;
    --accent: #06b6d4;
    --bg: #f4f8ff;
    --ink: #0f1e3d;
    --radius: 0;
    --shadow: 6px 6px 0 rgba(15, 30, 61, 0.1);
}
* { border-radius: 0 !important; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.5;
}
h1,h2,h3,h4 { font-weight: 800; letter-spacing: -0.02em; }
.navbar-common {
    background: #fff;
    border-bottom: 3px solid var(--ink);
    padding: .8rem 1rem;
}
.navbar-brand { font-weight: 900; font-size: 1.8rem; color: var(--primary) !important; letter-spacing: -1px; }
.nav-link { font-weight: 600; color: var(--ink) !important; margin: 0 .5rem; border-bottom: 2px solid transparent; }
.nav-link:hover { border-bottom: 2px solid var(--accent); }
.hero-section {
    background-color: var(--ink);
    color: #fff;
    padding: 3rem 0;
    border-bottom: 4px solid var(--accent);
}
.btn-outline-light { border: 2px solid #fff; }
.btn-accent { background: var(--accent); border: 2px solid var(--ink); color: #fff; font-weight: 600; }
.btn-accent:hover { background: var(--primary); color: #fff; }
.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.section-title .num {
    font-weight: 900;
    font-size: 2rem;
    color: var(--primary);
    background: #fff;
    border: 3px solid var(--ink);
    padding: .25rem .75rem;
    box-shadow: var(--shadow);
}
.section-title h2 { margin: 0; font-weight: 800; }
.card-article, .info-card, .why-card, .scene-card, .faq-card, .compare-card {
    background: #fff;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow);
    padding: 1.2rem;
    transition: all 0.2s ease;
    height: 100%;
}
.card-article:hover, .why-card:hover, .compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 10px 0 rgba(15, 30, 61, 0.12);
}
.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1rem;
    width: 100%;
}
.poster-item {
    background: #fff;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow);
    transition: all .2s;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.poster-item:hover { transform: translateY(-5px); box-shadow: 10px 12px 0 var(--primary); }
.poster-thumb {
    position: relative;
    aspect-ratio: 2 / 3;
    background: #ddd;
    overflow: hidden;
}
.poster-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
}
.poster-thumb .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,30,61,0.7), transparent 70%);
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; transition: opacity .3s;
}
.poster-item:hover .overlay { opacity: 1; }
.play-icon {
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    border: 2px solid var(--ink);
}
.poster-info { padding: .8rem; border-top: 2px solid var(--ink); }
.poster-title { font-weight: 700; font-size: 1rem; }
.poster-meta { font-size: .8rem; color: #4b587a; }
/* 弹窗风格 */
.movie-modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(15,30,61,0.75);
    z-index: 10000; backdrop-filter: blur(10px);
    overflow-y: auto;
}
.modal-content {
    max-width: 650px; margin: 5vh auto; background: #fff;
    border: 3px solid var(--ink); box-shadow: 15px 15px 0 rgba(6,182,212,0.3);
    padding: 2rem; position: relative;
}
.modal-content h3 { font-weight: 800; margin-bottom: 1rem; }
.close-modal { position: absolute; right: 1rem; top: 1rem; font-size: 2rem; line-height: 1; cursor: pointer; }
.btn-up { display: none; position: fixed; bottom: 25px; right: 25px; background: var(--primary); color: #fff; border: 2px solid var(--ink); padding: .5rem 1rem; z-index: 999; cursor: pointer; font-weight: bold;}
.progress-bar-top { height: 4px; background: var(--accent); position: fixed; top: 0; left: 0; width: 0%; z-index: 10001; }
footer { background: var(--ink); color: #fff; border-top: 5px solid var(--primary); padding: 3rem 0 1rem; margin-top: 3rem; }
footer a { color: #f4f8ff; }
.footer-links a { display: inline-block; margin-right: 1.2rem; }
.link-section { background: #e4edf7; border: 2px solid var(--ink); padding: 1.2rem; margin: 2rem 0; }
@media (max-width: 992px) {
    .poster-grid { grid-template-columns: repeat(3,1fr); }
    .hero-section .row { flex-direction: column-reverse; }
}
@media (max-width: 576px) {
    .poster-grid { grid-template-columns: repeat(2,1fr); }
}

/* --- 子页面追加 --- */
.guide-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 90px 0 70px;
            text-align: center;
            color: #fff;
            border-bottom: 3px solid var(--ink);
        }
.guide-hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 12px;
            text-shadow: 3px 3px 0 rgba(0,0,0,0.15);
        }
.guide-hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 400;
        }
.guide-section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(37, 99, 235, 0.15);
        }
.guide-section:nth-child(even) {
            background: rgba(37, 99, 235, 0.03);
        }
.guide-section h2 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 24px;
            letter-spacing: -0.01em;
            display: flex;
            align-items: center;
            gap: 12px;
        }
.guide-section h2 i {
            color: var(--primary);
            font-size: 1.6rem;
        }
.guide-section h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 10px;
            margin-top: 24px;
        }
.guide-section p, .guide-section li {
            color: #334a6f;
            line-height: 1.75;
            font-size: 0.98rem;
        }
.guide-section ul {
            padding-left: 20px;
        }
.guide-section ul li {
            margin-bottom: 6px;
        }
.guide-card {
            background: #fff;
            border: 2px solid var(--ink);
            box-shadow: var(--shadow);
            padding: 28px;
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border-radius: var(--radius);
        }
.guide-card:hover {
            transform: translateY(-4px);
            box-shadow: 8px 8px 0 rgba(15, 30, 61, 0.15);
        }
.guide-card .icon-circle {
            width: 52px;
            height: 52px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
.guide-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--ink);
        }
.guide-card p {
            font-size: 0.92rem;
            color: #334a6f;
            line-height: 1.7;
        }
.step-box {
            background: #fff;
            border: 2px solid var(--ink);
            box-shadow: var(--shadow);
            padding: 24px;
            margin-bottom: 20px;
            border-radius: var(--radius);
        }
.step-box .step-num {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 2px 12px;
            border-radius: 20px;
            margin-bottom: 10px;
        }
.step-box p {
            margin-bottom: 0;
        }
.badge-guide {
            background: var(--primary);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            display: inline-block;
            margin-right: 6px;
            margin-bottom: 6px;
        }
.table-guide {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            font-size: 0.92rem;
        }
.table-guide th, .table-guide td {
            border: 1px solid rgba(15, 30, 61, 0.15);
            padding: 10px 14px;
            text-align: left;
        }
.table-guide th {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }
.table-guide tr:nth-child(even) {
            background: rgba(37, 99, 235, 0.06);
        }
.faq-item {
            background: #fff;
            border: 2px solid var(--ink);
            padding: 22px 24px;
            margin-bottom: 14px;
            border-radius: var(--radius);
            box-shadow: 3px 3px 0 rgba(15, 30, 61, 0.08);
        }
.faq-item h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 700;
        }
.faq-item p {
            margin-bottom: 0;
        }
.notice-box {
            background: rgba(6, 182, 212, 0.12);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin-top: 24px;
        }
.notice-box p {
            margin-bottom: 0;
        }
.guide-hero h1 { font-size: 1.9rem; }
.guide-hero p { font-size: 1rem; }
.guide-section h2 { font-size: 1.5rem; }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .news-hero { padding: 60px 0 30px; background: linear-gradient(180deg, rgba(37,99,235,0.08) 0%, transparent 100%); }
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; margin-top: 30px; }
.news-layout { grid-template-columns: 1fr; }
.article-card { background: #ffffff; border: 1px solid rgba(15,30,61,0.08); border-radius: 0; padding: 28px 30px; margin-bottom: 24px; box-shadow: 6px 6px 0 rgba(15, 30, 61, 0.06); transition: transform .3s ease; }
.article-card:hover { transform: translateY(-3px); box-shadow: 8px 8px 0 rgba(15, 30, 61, 0.1); }
.article-meta { font-size: .82rem; color: #64748b; margin-bottom: 12px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-meta i { margin-right: 4px; color: var(--primary); }
.article-tag { display: inline-block; background: rgba(37,99,235,0.1); color: var(--primary); padding: 3px 12px; font-size: .78rem; font-weight: 600; margin-bottom: 12px; border-radius: 0; }
.article-card h2 { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.5; }
.article-card h2 a { color: var(--ink); text-decoration: none; }
.article-card h2 a:hover { color: var(--primary); }
.article-excerpt { color: #475569; font-size: .95rem; line-height: 1.8; }
.sidebar-section { background: #ffffff; border: 1px solid rgba(15,30,61,0.08); padding: 20px 22px; margin-bottom: 24px; box-shadow: 4px 4px 0 rgba(15, 30, 61, 0.06); }
.sidebar-section h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); padding-bottom: 10px; border-bottom: 2px solid var(--primary); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px dashed rgba(15,30,61,0.1); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: #475569; text-decoration: none; font-size: .9rem; transition: color .2s; display: block; }
.sidebar-list a:hover { color: var(--primary); padding-left: 4px; }
.hot-topic-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px dashed rgba(15,30,61,0.1); }
.hot-topic-item:last-child { border-bottom: none; }
.hot-num { width: 24px; height: 24px; background: var(--primary); color: #fff; font-size: .75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hot-topic-item a { text-decoration: none; color: #334155; font-size: .88rem; line-height: 1.5; }
.hot-topic-item a:hover { color: var(--primary); }
.page-title-area { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.page-title-area h1 { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 0; }
.breadcrumb-custom { font-size: .85rem; color: #64748b; }
.breadcrumb-custom a { color: var(--primary); text-decoration: none; }
.newsletter-box { background: rgba(37,99,235,0.05); padding: 20px 22px; border-left: 4px solid var(--primary); }
.newsletter-box p { font-size: .9rem; color: #475569; }
.newsletter-input { width: 100%; padding: 10px 14px; border: 1px solid rgba(15,30,61,0.15); font-size: .9rem; background: #fff; color: var(--ink); }
.newsletter-btn { width: 100%; margin-top: 10px; background: var(--primary); color: #fff; border: none; padding: 10px; font-weight: 600; font-size: .9rem; cursor: pointer; }
.newsletter-btn:hover { background: #1d4ed8; }
.featured-badge { background: var(--accent); color: #fff; font-size: .7rem; padding: 2px 8px; font-weight: 700; margin-left: 6px; vertical-align: middle; }

/* --- 子页面追加 --- */
.page-hero {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #fff;
            padding: 3rem 0 2.5rem;
            margin-bottom: 2.5rem;
        }
.movie-feature-card {
            background: #fff;
            border: 2px solid var(--ink);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.movie-feature-card:hover {
            transform: translate(-3px, -3px);
            box-shadow: 8px 8px 0 rgba(15, 30, 61, 0.15);
        }
.movie-feature-img {
            position: relative;
            height: 320px;
            overflow: hidden;
        }
.movie-feature-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.movie-feature-card:hover .movie-feature-img img {
            transform: scale(1.05);
        }
.movie-feature-body {
            padding: 1.5rem;
            background: #fff;
        }
.movie-feature-body h3 {
            color: var(--ink);
            font-weight: 700;
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
        }
.movie-feature-body p {
            color: #334;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
.movie-badge {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 0.25rem 0.75rem;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 0.4rem;
            margin-bottom: 0.4rem;
        }
.movie-badge.accent {
            background: var(--accent);
        }
.movie-category-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 2rem;
        }
.movie-cat-btn {
            background: #fff;
            border: 2px solid var(--ink);
            color: var(--ink);
            padding: 0.4rem 1.2rem;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.25s;
            cursor: pointer;
        }
.movie-cat-btn:hover, .movie-cat-btn.active {
            background: var(--ink);
            color: #fff;
        }
.pick-card {
            background: #fff;
            border: 2px solid var(--ink);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            height: 100%;
            transition: transform 0.3s;
        }
.pick-card:hover {
            transform: translateY(-5px);
        }
.pick-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
.pick-card h4 {
            color: var(--ink);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
.pick-card p {
            color: #445;
            font-size: 0.9rem;
            line-height: 1.6;
        }
.pick-reason {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.85rem;
            margin-top: 0.5rem;
        }
.update-timeline {
            background: #fff;
            border: 2px solid var(--ink);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.5rem;
        }
.timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px dashed #ccc;
        }
.timeline-item:last-child {
            border-bottom: none;
        }
.timeline-date {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.3rem 0.8rem;
            white-space: nowrap;
            flex-shrink: 0;
        }
.timeline-info {
            color: var(--ink);
            font-size: 0.95rem;
            line-height: 1.5;
        }
.timeline-info strong {
            color: var(--primary);
        }
.film-tip-box {
            background: #fff;
            border: 2px solid var(--accent);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            height: 100%;
        }
.film-tip-box h4 {
            color: var(--ink);
            font-weight: 700;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
.film-tip-box p, .film-tip-box li {
            color: #445;
            font-size: 0.9rem;
            line-height: 1.7;
        }
.film-tip-box ul {
            padding-left: 1.2rem;
            margin-bottom: 0;
        }
.film-tip-box ul li {
            margin-bottom: 0.4rem;
        }

/* --- 子页面追加 --- */
.sitemap-wrap { padding: 60px 0; }
.sitemap-hero { background: var(--bg); padding: 48px 0 32px; border-bottom: 2px solid var(--ink); }
.sitemap-hero h1 { font-weight: 900; color: var(--ink); margin-bottom: 12px; font-size: 2.2rem; }
.sitemap-hero p { color: var(--ink); opacity: .75; max-width: 700px; font-size: 1.05rem; }
.map-section { background: var(--bg); padding: 40px; margin-bottom: 24px; border: 2px solid var(--ink); box-shadow: var(--shadow); }
.map-section h2 { font-weight: 800; color: var(--primary); font-size: 1.4rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.map-section h2 i { color: var(--accent); }
.map-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.map-link { display: flex; align-items: center; gap: 10px; background: rgba(37, 99, 235, .05); padding: 14px 18px; border: 1px solid rgba(37, 99, 235, .15); color: var(--ink); text-decoration: none; font-weight: 500; transition: all .25s; }
.map-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: 4px 4px 0 rgba(15,30,61,.2); }
.map-link i { width: 20px; text-align: center; color: var(--accent); transition: color .25s; }
.map-link:hover i { color: #fff; }
.hot-list { display: flex; flex-wrap: wrap; gap: 8px; }
.hot-tag { background: var(--ink); color: #fff; padding: 6px 16px; font-size: .85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; transition: background .2s; }
.hot-tag:hover { background: var(--primary); }
.hot-tag i { font-size: .8rem; }
.help-box { background: var(--bg); border: 2px solid var(--ink); padding: 24px 32px; box-shadow: var(--shadow); }
.help-box h3 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.help-box p { color: var(--ink); opacity: .8; font-size: .95rem; margin-bottom: 0; }
.btn-custom-map { display: inline-block; background: var(--primary); color: #fff; padding: 10px 28px; font-weight: 600; text-decoration: none; border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transition: all .2s; }
.btn-custom-map:hover { background: var(--accent); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.section-divider { border-top: 2px dashed rgba(15,30,61,.15); margin: 36px 0; }
.list-unstyled-map { list-style: none; padding: 0; margin: 0; }
.list-unstyled-map li { padding: 8px 0; border-bottom: 1px dashed rgba(15,30,61,.1); display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: .95rem; }
.list-unstyled-map li:last-child { border-bottom: none; }
.list-unstyled-map i { color: var(--primary); width: 18px; text-align: center; }