:root {
      --main: #10b981;
      --accent: #fbbf24;
      --bg-deep: #0a1410;
      --text-light: #ecfdf5;
      --card-bg: #12211a;
      --card-bg-hover: #1a2d23;
      --shadow-heavy: 0 15px 35px rgba(0,0,0,0.8), 0 5px 15px rgba(0,0,0,0.6);
      --gradient-highlight: linear-gradient(145deg, #1d3a2a, #0f2017);
    }

    * { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
    body {
      background-color: var(--bg-deep);
      color: var(--text-light);
      overflow-x: hidden;
    }

    /* 滚动进度条 */
    #scrollProgress {
      position: fixed;
      top: 0; left: 0;
      height: 4px;
      width: 0%;
      background: linear-gradient(90deg, var(--main), var(--accent));
      z-index: 10000;
      transition: width 0.05s linear;
      box-shadow: 0 0 12px var(--accent);
    }

    /* Hero 视差背景 */
    .hero-parallax {
      background-image: url('{随机图片}'); 
      background-attachment: fixed;
      background-position: center;
      background-size: cover;
      position: relative;
      isolation: isolate;
    }
    .hero-parallax::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 30%, rgba(16,185,129,0.3), rgba(10,20,16,0.85) 70%);
      z-index: -1;
    }

    /* 拟物厚重卡片 */
    .card-skeuo {
      background: var(--gradient-highlight);
      border-radius: 18px;
      box-shadow: var(--shadow-heavy);
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
      overflow: hidden;
    }
    .card-skeuo:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 40px rgba(0,0,0,0.9);
    }

    /* 海报卡片 */
    .movie-card {
      cursor: pointer;
      position: relative;
      background: #10201a;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.7);
      border: 1px solid rgba(255,215,0,0.15);
      transition: transform 0.3s;
    }
    .movie-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
    .movie-card .play-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s;
      font-size: 3rem;
      color: white;
      text-shadow: 0 4px 12px black;
    }
    .movie-card:hover .play-overlay { opacity: 1; }

    /* 翻转卡片详情 */
    .flip-card-inner {
      transition: transform 0.7s;
      transform-style: preserve-3d;
      position: relative;
    }
    .flip-card-inner.flipped { transform: rotateY(180deg); }
    .flip-card-front, .flip-card-back {
      backface-visibility: hidden;
    }
    .flip-card-back {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #0d1f17;
      transform: rotateY(180deg);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 18px;
      border: 2px solid var(--accent);
    }

    /* 分类胶囊 */
    .cat-pill {
      background: rgba(16,185,129,0.2);
      border: 1px solid var(--main);
      color: var(--text-light);
      padding: 0.3rem 0.9rem;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: 0.2s;
    }
    .cat-pill:hover { background: var(--main); color: #0a1410; }

    /* 金银铜奖牌 */
    .rank-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 50%;
      font-weight: 800;
      font-size: 1.2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.5);
      margin-right: 8px;
    }
    .rank-gold { background: #ffd966; color: #3b2f0a; }
    .rank-silver { background: #bfc9d4; color: #1a202c; }
    .rank-bronze { background: #c47e4f; color: #2d1a0b; }

    /* 区块标题 */
    .section-title {
      font-weight: 800;
      letter-spacing: -0.01em;
      border-left: 6px solid var(--accent);
      padding-left: 1rem;
      margin-bottom: 1.5rem;
      font-size: 1.9rem;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    }

    /* 导航栏 */
    .navbar-custom {
      background: rgba(10, 20, 16, 0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(16,185,129,0.3);
    }
    .navbar-brand { font-weight: 900; font-size: 1.8rem; color: var(--accent) !important; }
    .nav-link { color: var(--text-light) !important; font-weight: 600; margin: 0 0.8rem; }
    .nav-link:hover { color: var(--main) !important; }

    /* 底部 */
    .footer-custom {
      background: #06100b;
      border-top: 2px solid var(--main);
      padding: 2.5rem 0;
      color: #9fb3a8;
    }

    /* 区块间分隔 */
    .block-margin { margin-top: 5rem; }

    /* 横向滑动 */
    .h-scroll {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      padding-bottom: 1rem;
      scrollbar-width: thin;
      scrollbar-color: var(--main) #1c2a22;
    }
    .h-scroll::-webkit-scrollbar { height: 6px; }
    .h-scroll::-webkit-scrollbar-thumb { background: var(--main); border-radius: 10px; }

/* --- 子页面追加 --- */
/* 关于页专属微调，保证与首页完全同风格 */
        .about-hero {
            padding: 4rem 0 3rem;
        }
.about-section {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 2rem 2rem;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(255,255,255,0.04);
            transition: background 0.2s;
        }
.about-section:hover {
            background: var(--card-bg-hover);
        }
.about-section h2, .about-section h3 {
            color: var(--text-light);
            font-weight: 700;
            letter-spacing: -0.01em;
        }
.about-section p, .about-section li {
            color: rgba(236,253,245,0.8);
            font-weight: 400;
            line-height: 1.75;
        }
.icon-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--gradient-highlight);
            border-radius: 14px;
            color: var(--main);
            font-size: 1.4rem;
            margin-right: 12px;
            border: 1px solid rgba(16,185,129,0.2);
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
.stat-label {
            color: rgba(236,253,245,0.6);
            font-size: 0.9rem;
        }
.about-list {
            list-style: none;
            padding-left: 0;
        }
.about-list li {
            padding: 0.4rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }
.about-list i {
            color: var(--main);
            margin-top: 5px;
        }