:root{
      --main: #2563eb;
      --accent: #06b6d4;
      --bg: #f4f8ff;
      --text: #0f1e3d;
      --radius: 1rem;
      --shadow: 0 4px 12px rgba(37,99,235,0.08);
    }
    body{
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
    h1,h2,h3,h4,h5,.font-serif{
      font-family: 'Source Han Serif SC', 'Noto Serif SC', 'Songti SC', Georgia, serif;
      font-weight: 600;
    }
    /* 胶囊圆角 + 轻阴影 */
    .btn-capsule, .badge-capsule, .capsule{
      border-radius: 50rem !important;
    }
    .card-poster{
      border-radius: var(--radius);
      overflow: hidden;
      border: none;
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      background: white;
      position: relative;
    }
    .card-poster:hover{
      transform: translateY(-5px);
      box-shadow: 0 12px 20px rgba(37,99,235,0.15);
    }
    .card-poster .poster-img{
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      background: #dbeafe;
    }
    .card-poster .play-overlay{
      position: absolute;
      inset: 0;
      background: rgba(15,30,61,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .card-poster:hover .play-overlay{
      opacity: 1;
    }
    .play-btn{
      background: rgba(255,255,255,0.9);
      color: var(--main);
      width: 48px;
      height: 48px;
      border-radius: 50rem;
      display: grid;
      place-items: center;
      font-size: 1.5rem;
      padding-left: 4px;
    }
    .badge-hd{
      position: absolute;
      top: 8px;
      right: 8px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: 0.65rem;
      padding: 2px 8px;
      border-radius: 30px;
      backdrop-filter: blur(2px);
    }
    .poster-info{
      padding: 10px 12px 14px;
    }
    .poster-info .name{
      font-weight: 600;
      font-size: 0.95rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .poster-info .meta{
      font-size: 0.8rem;
      color: #5b6b8c;
    }
    .rating-star{
      color: #f59e0b;
      font-size: 0.75rem;
    }
    .section-title{
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 1.2rem 0 0.8rem;
      font-size: 1.3rem;
    }
    .section-title i{
      color: var(--main);
    }
    .nav-bg{
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e9edf5;
    }
    .navbar-brand{
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--main) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand i{
      margin-right: 6px;
    }
    .navbar .nav-link{
      font-weight: 500;
      color: var(--text);
      border-radius: 40px;
      padding: 0.3rem 0.8rem;
      margin: 0 2px;
    }
    .navbar .nav-link:hover{
      background: rgba(37,99,235,0.08);
      color: var(--main);
    }
    /* 打字机动画 */
    .typewriter{
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 3px solid var(--main);
      animation: typing 3.5s steps(20,end) infinite, blink 0.8s step-end infinite;
      max-width: fit-content;
    }
    @keyframes typing{
      0%{width:0}
      50%{width:100%}
      100%{width:0}
    }
    @keyframes blink{
      50%{border-color: transparent}
    }
    /* 错落滚动 */
    .stagger-fade{
      opacity:0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .stagger-fade.show{
      opacity:1;
      transform: translateY(0);
    }
    .stagger-fade:nth-child(1){transition-delay:0.05s}
    .stagger-fade:nth-child(2){transition-delay:0.15s}
    .stagger-fade:nth-child(3){transition-delay:0.25s}
    .stagger-fade:nth-child(4){transition-delay:0.35s}
    .stagger-fade:nth-child(5){transition-delay:0.45s}
    .stagger-fade:nth-child(6){transition-delay:0.55s}
    /* 手风琴自定义 */
    .accordion-button:not(.collapsed){
      background: #eaf2ff;
      color: var(--main);
    }
    .accordion-item{
      border: 1px solid #dbe7ff;
      border-radius: 12px !important;
      overflow: hidden;
      margin-bottom: 8px;
    }
    /* 区块背景 */
    .hot-bg{
      background: linear-gradient(145deg, #ffffff, #f4f8ff);
    }
    .footer-bg{
      background: #0b1832;
      color: #cbd5e1;
    }
    .friend-links a{
      color: #94a3b8;
      margin: 0 8px;
    }
    .parallax-hero{
      background: linear-gradient(120deg, #f4f8ff 0%, #ffffff 40%, #e6efff 100%);
      position: relative;
      overflow: hidden;
    }
    .parallax-hero::before{
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle at 20% 20%, rgba(6,182,212,0.1), transparent 60%);
      transform: translate(10%, 10%);
      z-index: 0;
    }
    /* 弹窗 */
    .modal-card{
      max-width: 720px;
      margin: 8vh auto;
      background: white;
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(0,0,0,0.2);
      overflow: hidden;
    }
    .modal-backdrop-custom{
      position: fixed;
      inset: 0;
      background: rgba(15,30,61,0.5);
      backdrop-filter: blur(3px);
      display: none;
      z-index: 1050;
      align-items: center;
      padding: 16px;
    }
    .modal-backdrop-custom.show{
      display: flex;
    }
    .modal-close{
      position: absolute;
      top: 10px;
      right: 16px;
      font-size: 2rem;
      background: transparent;
      border: none;
      line-height: 1;
      cursor: pointer;
      color: #5b6b8c;
      z-index: 2;
    }
    .movie-detail-img{
      width: 100%;
      max-height: 280px;
      object-fit: cover;
    }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(6,182,212,0.06) 100%);
            padding: 3rem 0 2rem;
            border-bottom: 1px solid rgba(37,99,235,0.08);
        }
.about-card {
            background: #fff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(37,99,235,0.06);
        }
.about-card h2 {
            color: var(--main);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
.about-card h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48px;
            height: 3px;
            background: linear-gradient(90deg, var(--main), var(--accent));
            border-radius: 3px;
        }
.about-card p {
            color: var(--text);
            opacity: 0.85;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
.about-card ul {
            list-style: none;
            padding: 0;
        }
.about-card ul li {
            padding: 0.4rem 0;
            color: var(--text);
            opacity: 0.85;
            font-size: 0.95rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
.about-card ul li i {
            color: var(--accent);
            margin-top: 0.25rem;
            font-size: 0.85rem;
        }
.stat-badge {
            background: linear-gradient(135deg, var(--main), var(--accent));
            color: #fff;
            border-radius: 50px;
            padding: 0.5rem 1.2rem;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
.timeline-item {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
            border-left: 2px solid rgba(37,99,235,0.15);
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: var(--main);
            border-radius: 50%;
            border: 2px solid #fff;
            box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
        }
.timeline-item strong {
            color: var(--main);
            display: block;
            margin-bottom: 0.2rem;
        }
.timeline-item p {
            margin-bottom: 0.3rem;
        }
.about-hero {
                padding: 2rem 0 1.5rem;
            }
.about-card {
                padding: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 保证隐私页内卡片/容器与站点配色完全一致 */
    .privacy-container {
      background: var(--bg);
      color: var(--text);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 2.2rem 2.5rem;
      margin-bottom: 2.5rem;
    }
.privacy-container h2, .privacy-container h3 {
      color: var(--main);
      font-weight: 700;
      margin-top: 1.8rem;
      border-left: 4px solid var(--accent);
      padding-left: 1rem;
    }
.privacy-container p, .privacy-container li {
      color: var(--text);
      opacity: 0.92;
      line-height: 1.75;
    }
.privacy-container ul, .privacy-container ol {
      padding-left: 1.6rem;
    }
.privacy-container a {
      color: var(--main);
      font-weight: 500;
      text-decoration: underline;
      text-underline-offset: 3px;
    }
.privacy-container a:hover {
      color: var(--accent);
    }
.badge-privacy {
      background: rgba(6, 182, 212, 0.12);
      color: var(--main);
      border: 1px solid rgba(6, 182, 212, 0.3);
      border-radius: 2rem;
      padding: 0.25rem 0.9rem;
      font-weight: 600;
      font-size: 0.85rem;
    }
/* 导航当前页高亮 */
    .nav-item .nav-link.active-privacy {
      color: var(--accent) !important;
      font-weight: 700;
      border-bottom: 2px solid var(--accent);
    }
/* 页脚链接沿用 */
    .footer-bg a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
.footer-bg a:hover {
      color: #fff;
    }

/* --- 子页面追加 --- */
/* 仅本页微调，不动全局变量 */
    .disclaimer-card {
      background: var(--card-bg, #ffffff);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.75rem 1.75rem;
      transition: transform .2s ease, box-shadow .2s ease;
    }
.disclaimer-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(37,99,235,0.12);
    }
.disclaimer-icon {
      color: var(--main);
      font-size: 1.6rem;
      margin-right: 0.5rem;
      vertical-align: middle;
    }
.disclaimer-sub {
      color: var(--text);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      border-bottom: 2px solid var(--accent);
      padding-bottom: 0.5rem;
    }
.disclaimer-text {
      color: var(--text);
      line-height: 1.75;
    }
.disclaimer-text a {
      color: var(--main);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
.disclaimer-text a:hover {
      color: var(--accent);
    }
/* 覆盖 bootstrap 默认白底（若有卡片/列表等，确保风格统一） */
    .card, .card-body, .list-group-item, .accordion-item {
      background: var(--card-bg, #ffffff);
      color: var(--text);
      border-color: rgba(37,99,235,0.15);
    }
.form-control, .form-select {
      background: rgba(255,255,255,0.7);
      color: var(--text);
      border: 1px solid rgba(37,99,235,0.2);
    }
.form-control:focus {
      background: white;
      color: var(--text);
      border-color: var(--main);
      box-shadow: 0 0 0 0.2rem rgba(37,99,235,0.15);
    }
.navbar, .footer-bg {
      background: var(--bg) !important; 
    }
/* 保持导航高亮 */
    .navbar-nav .nav-link.active {
      color: var(--main) !important;
      font-weight: 600;
    }
.navbar-nav .nav-link {
      color: var(--text);
    }
.navbar-nav .nav-link:hover {
      color: var(--accent);
    }

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