:root {
      --primary: #e50914;
      --accent: #f5c518;
      --bg: #0b0b0f;
      --text: #f5f5f7;
      --card-bg: #16161d;
      --border-light: #2c2c3a;
      --shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
      --radius: 8px;
      --font-title: 'Segoe Script', 'Brush Script MT', 'Comic Sans MS', cursive, sans-serif;
      --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, .hero-title, .brand-font {
      font-family: var(--font-title);
      letter-spacing: 1px;
    }

    /* 导航栏 */
    .navbar-custom {
      background: rgba(11, 11, 15, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-light);
      padding: 0.5rem 1rem;
      z-index: 1030;
    }

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--accent) !important;
      text-shadow: 0 0 15px rgba(245, 197, 24, 0.5);
      letter-spacing: 1px;
      transition: 0.2s;
    }
    .navbar-brand i {
      color: var(--primary);
      margin-right: 4px;
    }

    .nav-link-custom {
      color: var(--text) !important;
      font-weight: 500;
      margin: 0 8px;
      transition: 0.2s;
      border-bottom: 2px solid transparent;
    }
    .nav-link-custom:hover {
      color: var(--accent) !important;
      border-bottom-color: var(--accent);
    }

    /* Hero */
    .hero-section {
      position: relative;
      padding: 5rem 0 3rem;
      background: radial-gradient(circle at 30% 30%, #2a1216, #0b0b0f 80%);
      overflow: hidden;
      text-align: center;
      border-bottom: 1px solid var(--border-light);
    }
    .hero-title {
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent), #fff, var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
      text-shadow: 0 0 40px rgba(229, 9, 20, 0.3);
      position: relative;
      z-index: 2;
    }
    .hero-sub {
      font-size: 1.2rem;
      opacity: 0.9;
      font-weight: 300;
    }
    .floating-elem {
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(229,9,20,0.2), transparent 70%);
      top: -30px;
      left: -30px;
      animation: float 8s infinite alternate;
      z-index: 1;
    }
    .floating-elem2 {
      position: absolute;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,197,24,0.15), transparent 70%);
      bottom: -50px;
      right: -50px;
      animation: float2 12s infinite alternate-reverse;
      z-index: 1;
    }
    @keyframes float {
      0% { transform: translateY(0px) scale(1); }
      100% { transform: translateY(30px) scale(1.05); }
    }
    @keyframes float2 {
      0% { transform: translateY(0) scale(1); }
      100% { transform: translateY(-30px) scale(1.1); }
    }

    /* 区块通用 */
    .section-padding {
      padding: 2.5rem 0;
    }
    .section-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.5rem;
      font-weight: 700;
      font-size: 2rem;
      border-left: 6px solid var(--primary);
      padding-left: 12px;
    }
    .section-title i {
      color: var(--accent);
    }

    /* 卡片海报 */
    .movie-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
      border: 1px solid var(--border-light);
      cursor: pointer;
      height: 100%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    .movie-card:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow);
      border-color: var(--accent);
    }
    .movie-poster {
      position: relative;
      aspect-ratio: 2 / 3;
      overflow: hidden;
      background: #222;
    }
    .movie-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity 0.4s;
      opacity: 0;
      background: linear-gradient(145deg, #1f1f2b, #2c2c3a);
    }
    .movie-poster img.loaded {
      opacity: 1;
    }
    .badge-quality {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.7);
      color: var(--accent);
      font-weight: 700;
      font-size: 0.7rem;
      padding: 4px 8px;
      border-radius: 6px;
      border: 1px solid var(--accent);
      letter-spacing: 1px;
      backdrop-filter: blur(4px);
    }
    .badge-rating {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: var(--primary);
      color: white;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 20px;
      font-size: 0.85rem;
    }
    .movie-info {
      padding: 12px 12px 14px;
    }
    .movie-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .movie-meta {
      color: #aaa;
      font-size: 0.8rem;
      display: flex;
      justify-content: space-between;
    }

    /* 横向滚动 */
    .horizon-scroll {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      padding-bottom: 10px;
      scrollbar-width: thin;
      scrollbar-color: var(--primary) var(--bg);
    }
    .horizon-scroll::-webkit-scrollbar {
      height: 6px;
    }
    .horizon-scroll::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 6px;
    }
    .horizon-scroll .movie-card {
      flex: 0 0 200px;
    }

    /* 手风琴 */
    .accordion-item {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: var(--radius) !important;
      margin-bottom: 8px;
    }
    .accordion-button {
      background: transparent;
      color: var(--text);
      font-weight: 600;
      box-shadow: none;
      border-bottom: 1px solid var(--border-light);
    }
    .accordion-button:not(.collapsed) {
      background: rgba(229, 9, 20, 0.1);
      color: var(--accent);
    }

    /* 图标列表 */
    .icon-list {
      list-style: none;
      padding: 0;
    }
    .icon-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px dashed #2c2c3a;
    }
    .icon-list i {
      color: var(--accent);
      width: 24px;
      text-align: center;
    }

    /* 分类入口 */
    .cat-item {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 12px 6px;
      text-align: center;
      transition: 0.2s;
      border: 1px solid transparent;
    }
    .cat-item:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }
    .cat-item i {
      font-size: 2rem;
      color: var(--accent);
      margin-bottom: 6px;
    }

    /* 页脚 */
    footer {
      background: #050508;
      border-top: 2px solid var(--primary);
      padding: 2rem 0;
      color: #aaa;
    }

    /* 弹窗 */
    .modal-mask {
      display: none;
      position: fixed;
      top:0; left:0; width:100%; height:100%;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(6px);
      z-index: 1050;
      justify-content: center;
      align-items: center;
    }
    .modal-card {
      background: #fff;
      color: #111;
      max-width: 700px;
      width: 90%;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      position: relative;
      box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    }
    .modal-poster {
      width: 250px;
      min-height: 350px;
      background: #222;
    }
    .modal-poster img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .modal-info {
      flex: 1;
      padding: 24px;
    }
    .modal-close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 2rem;
      color: #aaa;
      cursor: pointer;
      transition: 0.2s;
      background: none;
      border: none;
      z-index: 5;
    }
    .modal-close:hover {
      color: var(--primary);
    }

    /* 友情链接 */
    .friend-links {
      border-top: 1px solid var(--border-light);
      margin-top: 2rem;
      padding-top: 1.5rem;
    }

    /* 懒加载占位渐变 */
    img.lazy-img {
      background: linear-gradient(110deg, #2a2a35 30%, #3c3c4a 50%, #2a2a35 70%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

/* --- 子页面追加 --- */
/* 关于我们页面专属样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(11,11,15,.92) 0%, rgba(22,22,29,.88) 100%);
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--border-light);
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(229,9,20,.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
.about-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.about-hero h1 .brand-highlight {
            color: var(--primary);
            font-weight: 900;
        }
.about-hero p {
            font-size: 1.15rem;
            color: rgba(245,245,247,.75);
            max-width: 700px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
.about-section {
            padding: 70px 0;
        }
.about-section:nth-child(even) {
            background: rgba(22,22,29,.4);
        }
.about-section .section-title {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
.about-section .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }
.about-text {
            color: rgba(245,245,247,.8);
            line-height: 1.9;
            font-size: 1.05rem;
        }
.about-text p {
            margin-bottom: 18px;
        }
.about-text strong {
            color: var(--accent);
            font-weight: 600;
        }
.feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 25px;
            height: 100%;
            transition: transform .3s ease, box-shadow .3s ease;
        }
.feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
.feature-card .icon-wrap {
            width: 52px;
            height: 52px;
            background: rgba(229,9,20,.12);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
.feature-card .icon-wrap i {
            font-size: 1.4rem;
            color: var(--primary);
        }
.feature-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }
.feature-card p {
            font-size: .92rem;
            color: rgba(245,245,247,.65);
            line-height: 1.7;
            margin-bottom: 0;
        }
.stats-row {
            margin-top: 40px;
            padding: 30px 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
.stat-item {
            text-align: center;
            padding: 20px 10px;
        }
.stat-item .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary);
            font-family: var(--font-title);
            line-height: 1.2;
        }
.stat-item .stat-label {
            font-size: .85rem;
            color: rgba(245,245,247,.6);
            margin-top: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.timeline-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }
.timeline-list::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            border-radius: 2px;
        }
.timeline-list li {
            position: relative;
            padding-left: 45px;
            margin-bottom: 28px;
        }
.timeline-list li::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 5px;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            border: 2px solid var(--bg);
            box-shadow: 0 0 0 3px rgba(229,9,20,.2);
        }
.timeline-list .time-item {
            font-size: .8rem;
            color: var(--accent);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
.timeline-list .time-title {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }
.timeline-list .time-desc {
            font-size: .9rem;
            color: rgba(245,245,247,.65);
            line-height: 1.6;
        }
.about-cta {
            background: linear-gradient(135deg, rgba(229,9,20,.08) 0%, rgba(245,197,24,.05) 100%);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
            margin-top: 50px;
        }
.about-cta h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 15px;
        }
.about-cta p {
            color: rgba(245,245,247,.7);
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
.btn-custom {
            background: var(--primary);
            color: #fff;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: background .3s ease, transform .3s ease;
        }
.btn-custom:hover {
            background: #f6121d;
            color: #fff;
            transform: translateY(-2px);
        }
.about-hero h1 {
                font-size: 2rem;
            }
.about-section .section-title {
                font-size: 1.5rem;
            }
.stat-item .stat-number {
                font-size: 1.6rem;
            }

/* --- 子页面追加 --- */
/* 保证任何bootstrap组件都被站点配色覆盖，不用bootstrap组件类，仅用栅格 */
    .disclaimer-section {
      background: var(--bg);
      color: var(--text);
    }
.disclaimer-card {
      background: var(--card-bg);
      border: 1px solid var(--border-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.8rem;
      margin-bottom: 2rem;
    }
.disclaimer-card h2 {
      font-family: var(--font-title);
      color: var(--accent);
      font-size: 1.9rem;
      margin-bottom: 1.2rem;
      letter-spacing: 0.5px;
      border-left: 5px solid var(--primary);
      padding-left: 1rem;
    }
.disclaimer-card p, .disclaimer-card li {
      font-family: var(--font-body);
      color: var(--text);
      line-height: 1.7;
      font-size: 1rem;
    }
.disclaimer-card ul {
      padding-left: 1.5rem;
    }
.disclaimer-card a {
      color: var(--accent);
      text-decoration: underline;
      transition: opacity 0.2s;
    }
.disclaimer-card a:hover {
      opacity: 0.8;
    }
.disclaimer-highlight {
      background: rgba(245, 197, 24, 0.08);
      border-left: 4px solid var(--accent);
      padding: 0.8rem 1.2rem;
      border-radius: 0 6px 6px 0;
    }
.btn-custom-outline {
      border: 1px solid var(--accent);
      color: var(--accent);
      background: transparent;
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      font-weight: 600;
      transition: 0.2s;
      display: inline-block;
    }
.btn-custom-outline:hover {
      background: var(--accent);
      color: var(--bg);
    }
.footer-link-inline a {
      color: var(--text);
      margin: 0 8px;
      opacity: 0.8;
      text-decoration: none;
    }
.footer-link-inline a:hover {
      opacity: 1;
      color: var(--accent);
    }

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