:root {
    --ink: #f9fbff;
    --muted: #b8c3d8;
    --deep: #071122;
    --panel: #101b31;
    --panel-soft: #182641;
    --line: rgba(255,255,255,.12);
    --red: #d5323f;
    --red-soft: #ff5967;
    --gold: #f1bd62;
    --gold-soft: #ffe1a5;
    --shadow: 0 24px 70px rgba(0,0,0,.32);
    --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    color: var(--ink);
    background: radial-gradient(circle at 20% 0%, rgba(213,50,63,.28), transparent 32%), radial-gradient(circle at 80% 8%, rgba(241,189,98,.18), transparent 30%), var(--deep);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7,17,34,.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), #7d1622 56%, #151515);
    color: #fff7ea;
    box-shadow: 0 12px 30px rgba(213,50,63,.35), inset 0 0 0 1px rgba(255,255,255,.18);
}
.brand-text { font-size: 1.05rem; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: .95rem;
    transition: .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); color: #fff; border-radius: 12px; padding: 7px 11px; font-size: 1.15rem; }
.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 44px; align-items: center; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
h1, h2, h3 { line-height: 1.22; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.7rem); letter-spacing: -.05em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 3rem); letter-spacing: -.035em; }
h3 { font-size: 1.28rem; }
p { color: var(--muted); margin: 0; }
.hero p.lead { font-size: 1.1rem; max-width: 720px; margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    transition: .22s ease;
}
.btn.primary { background: linear-gradient(135deg, var(--red), #8d1f2d); color: #fff; border-color: transparent; box-shadow: 0 16px 34px rgba(213,50,63,.28); }
.btn.ghost { background: rgba(255,255,255,.08); color: #fff; }
.btn:hover { transform: translateY(-2px); }
.hero-card {
    position: relative;
    border-radius: 34px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
    padding: 18px;
    box-shadow: var(--shadow);
}
.hero-card img { border-radius: 24px; width: 100%; }
.floating-ticket {
    position: absolute;
    right: 0;
    bottom: 8%;
    transform: translateX(18%);
    max-width: 210px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(7,17,34,.9);
    padding: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
}
.section { padding: 70px 0; }
.section.alt { background: rgba(255,255,255,.035); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head p { max-width: 640px; }
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    padding: 24px;
    box-shadow: 0 16px 44px rgba(0,0,0,.16);
}
.card.soft { background: rgba(16,27,49,.78); }
.card .icon { width: 54px; height: 54px; border-radius: 18px; margin-bottom: 14px; background: rgba(241,189,98,.14); display: grid; place-items: center; color: var(--gold-soft); font-weight: 900; }
.card h3 { margin-bottom: 10px; }
.card img { border-radius: 18px; margin-bottom: 16px; border: 1px solid var(--line); }
.schedule-list { display: grid; gap: 16px; }
.schedule-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(16,27,49,.7);
    padding: 18px;
}
.time { font-size: 1.55rem; font-weight: 900; color: var(--gold-soft); }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 11px; color: #fff3d4; background: rgba(241,189,98,.14); border: 1px solid rgba(241,189,98,.28); font-size: .83rem; white-space: nowrap; }
.movie-title { color: #fff; font-weight: 800; font-size: 1.05rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { color: var(--muted); background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-size: .82rem; }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.timeline-item { position: relative; padding-left: 62px; }
.timeline-item::before { content: ""; position: absolute; left: 12px; top: 5px; width: 22px; height: 22px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(213,50,63,.18); }
.process { counter-reset: step; }
.process .card { position: relative; }
.process .card::before { counter-increment: step; content: "0" counter(step); color: var(--gold); font-size: .9rem; font-weight: 900; letter-spacing: .1em; }
.search-note {
    border-radius: 26px;
    border: 1px solid rgba(241,189,98,.32);
    background: linear-gradient(135deg, rgba(241,189,98,.12), rgba(213,50,63,.08));
    padding: 24px;
}
.search-note strong { color: #fff; }
.video-frame {
    position: relative;
    min-height: 260px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 50% 20%, rgba(241,189,98,.32), transparent 38%), linear-gradient(180deg, #0d172b, #05080e);
}
.video-frame::before { content: "▶"; width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: rgba(213,50,63,.86); box-shadow: 0 20px 50px rgba(213,50,63,.36); font-size: 1.8rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.filter-bar button {
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255,255,255,.07);
    padding: 10px 16px;
}
.filter-bar button.active { background: var(--red); border-color: var(--red); }
.notice { color: #fff3d4; background: rgba(241,189,98,.11); border: 1px solid rgba(241,189,98,.24); border-radius: 18px; padding: 14px 16px; }
.kv-list { display: grid; gap: 12px; }
.kv-list div { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.kv-list span:first-child { color: var(--muted); }
.kv-list span:last-child { color: #fff; text-align: right; }
.map-placeholder { min-height: 340px; border-radius: 26px; border: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.04); }
.faq { display: grid; gap: 14px; }
details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.055); padding: 16px 18px; }
summary { cursor: pointer; font-weight: 800; color: #fff; }
details p { margin-top: 10px; }
.site-footer { padding: 46px 0; background: #050a13; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 28px; }
.footer-grid strong { color: #fff; display: block; margin-bottom: 10px; }
.footer-grid a { color: var(--gold-soft); }
.page-hero { padding: 58px 0 38px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 10% 0%, rgba(213,50,63,.24), transparent 38%); }
.page-hero p { max-width: 760px; margin-top: 16px; font-size: 1.05rem; }
.table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: rgba(16,27,49,.74); min-width: 720px; }
th, td { text-align: left; padding: 16px; border-bottom: 1px solid var(--line); }
th { color: var(--gold-soft); font-weight: 900; }
td { color: var(--muted); }
td strong { color: #fff; }
@media (max-width: 920px) {
    .hero-grid, .grid.cols-2, .grid.cols-3, .grid.cols-4, .footer-grid { grid-template-columns: 1fr; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .schedule-item { grid-template-columns: 1fr; }
    .floating-ticket { display: none; }
    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(7,17,34,.97);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 12px 14px; }
    .nav-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
    .container { width: min(100% - 22px, 1180px); }
    .hero { padding-top: 46px; }
    .section { padding: 48px 0; }
    .card { padding: 20px; }
    .brand-text { font-size: .98rem; }
    .kv-list div { flex-direction: column; gap: 2px; }
    .kv-list span:last-child { text-align: left; }
}
.mt-22 { margin-top: 22px; }
.mb-22 { margin-bottom: 22px; }
