:root {
      --main: #10b981;
      --accent: #fbbf24;
      --bg: #0a1410;
      --text: #ecfdf5;
      --card-radius: 22px;
      --card-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
      --hover-shadow: 0 20px 35px rgba(16, 185, 129, 0.2);
      --font-display: 'Inter', sans-serif;
    }
    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: var(--font-display);
      font-weight: 400;
      letter-spacing: 0.2px;
    }
    h1,h2,h3,h4,h5,.display-title {
      font-weight: 900;
      letter-spacing: -0.02em;
    }
    .navbar {
      backdrop-filter: blur(16px);
      background-color: rgba(10,20,16,0.75);
      border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.9rem;
      color: var(--main) !important;
      letter-spacing: -0.5px;
    }
    .nav-link {
      color: var(--text) !important;
      font-weight: 500;
      margin: 0 0.5rem;
    }
    .nav-link:hover {
      color: var(--accent) !important;
    }
    .btn-main {
      background: var(--main);
      color: #0a1410;
      font-weight: 700;
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      border: none;
      transition: all 0.2s;
    }
    .btn-main:hover {
      background: var(--accent);
      transform: scale(1.03);
      color: #0a1410;
    }
    .btn-outline-light-custom {
      border: 2px solid rgba(236, 253, 245, 0.4);
      color: var(--text);
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      background: transparent;
      transition: all 0.2s;
    }
    .btn-outline-light-custom:hover {
      border-color: var(--accent);
      color: var(--accent);
    }
    .section-title {
      position: relative;
      display: inline-block;
      font-weight: 900;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      border-left: 6px solid var(--accent);
      padding-left: 1rem;
    }
    .poster-card {
      background: rgba(255,255,255,0.03);
      border-radius: var(--card-radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
      box-shadow: var(--card-shadow);
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      backdrop-filter: blur(4px);
    }
    .poster-card:hover {
      transform: scale(1.03) translateY(-6px);
      box-shadow: var(--hover-shadow);
      border-color: var(--main);
    }
    .poster-card img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      background: linear-gradient(145deg, #1d2e26, #12211b);
      display: block;
      transition: opacity 0.3s;
    }
    .badge-quality {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(0,0,0,0.7);
      color: var(--accent);
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.2rem 0.8rem;
      border-radius: 30px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(251,191,36,0.3);
      z-index: 5;
      letter-spacing: 0.5px;
    }
    .poster-info {
      padding: 0.9rem 1rem 1.2rem;
      background: transparent;
    }
    .poster-info h5 {
      font-weight: 800;
      font-size: 1.2rem;
      margin-bottom: 0.3rem;
    }
    .rating {
      font-family: 'SF Mono', 'Fira Code', monospace;
      font-weight: 700;
      color: var(--accent);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .rating i {
      font-size: 0.9rem;
    }
    .list-inline-item i {
      color: var(--main);
      margin-right: 4px;
    }
    .genre-chip {
      background: rgba(16, 185, 129, 0.2);
      color: var(--main);
      padding: 0.2rem 0.9rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      display: inline-block;
    }
    .horizontal-scroll {
      display: flex;
      overflow-x: auto;
      gap: 1.5rem;
      padding-bottom: 1rem;
      scrollbar-width: thin;
      scrollbar-color: var(--main) #1e2e27;
    }
    .horizontal-scroll::-webkit-scrollbar {
      height: 8px;
    }
    .horizontal-scroll::-webkit-scrollbar-thumb {
      background: var(--main);
      border-radius: 20px;
    }
    .horizontal-scroll > * {
      flex: 0 0 180px;
    }
    .card-bg {
      background: #11241b;
      border-radius: 22px;
      padding: 1.5rem;
      border: 1px solid rgba(255,255,255,0.04);
    }
    .accordion-item {
      background-color: rgba(255,255,255,0.02);
      border: 1px solid rgba(16,185,129,0.15);
      border-radius: 18px !important;
      margin-bottom: 0.8rem;
      overflow: hidden;
    }
    .accordion-button {
      background: rgba(16,185,129,0.05);
      color: var(--text);
      font-weight: 600;
      padding: 1.2rem 1.2rem;
    }
    .accordion-button:not(.collapsed) {
      background: rgba(251,191,36,0.1);
      color: var(--accent);
      box-shadow: none;
    }
    .footer-link {
      color: var(--text);
      opacity: 0.75;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .footer-link:hover {
      color: var(--accent);
      opacity: 1;
    }
    /* 弹窗 */
    .modal-mask {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(4px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }
    .modal-card {
      max-width: 760px;
      width: 92%;
      background: #0e1e17;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(16,185,129,0.4);
      box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    }
    .modal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .modal-close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 2.2rem;
      color: var(--text);
      opacity: 0.8;
      z-index: 10;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s;
    }
    .modal-close:hover {
      opacity: 1;
      transform: rotate(90deg);
    }
    .stat-number {
      font-family: 'SF Mono', monospace;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--accent);
    }
    .hero-bg {
      background: radial-gradient(circle at 60% 30%, #1e3a2f 0%, var(--bg) 100%);
      padding: 4rem 0 6rem;
      position: relative;
      overflow: hidden;
    }
    /* 渐显占位 */
    .poster-card img {
      background: #23392f;
      animation: imgPulse 1.8s infinite;
    }
    @keyframes imgPulse {
      0% { opacity: 0.6; }
      50% { opacity: 1; }
      100% { opacity: 0.6; }
    }
    .poster-card img.loaded {
      animation: none;
      opacity: 1;
    }

/* --- 子页面追加 --- */
/* 本页专属补充样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, transparent 50%, rgba(251,191,36,0.1) 100%);
            padding: 60px 0 30px;
        }
.about-section {
            padding: 50px 0;
        }
.about-card {
            background: var(--card-bg, rgba(255,255,255,0.05));
            border: 1px solid rgba(16,185,129,0.15);
            border-radius: var(--card-radius);
            padding: 28px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            height: 100%;
        }
.about-card:hover {
            box-shadow: var(--hover-shadow);
            transform: translateY(-4px);
            border-color: rgba(16,185,129,0.4);
        }
.about-icon {
            font-size: 2.2rem;
            color: var(--main);
            margin-bottom: 16px;
            display: block;
        }
.about-card h3 {
            color: var(--text);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
.about-card p {
            color: rgba(236,253,245,0.75);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0;
        }
.highlight-text {
            color: var(--accent);
            font-weight: 600;
        }
.stat-block {
            background: rgba(16,185,129,0.08);
            border-radius: var(--card-radius);
            padding: 30px 20px;
            text-align: center;
            border: 1px solid rgba(16,185,129,0.2);
        }
.stat-label {
            color: var(--text);
            opacity: 0.8;
            font-size: 0.9rem;
            margin-top: 8px;
        }
.value-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
.value-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(16,185,129,0.1);
            display: flex;
            align-items: flex-start;
            color: rgba(236,253,245,0.8);
            font-size: 0.95rem;
            line-height: 1.7;
        }
.value-list li:last-child {
            border-bottom: none;
        }
.value-list li i {
            color: var(--main);
            margin-right: 12px;
            margin-top: 5px;
            font-size: 0.9rem;
        }
.nav-link.active {
            color: var(--main) !important;
            font-weight: 600;
        }
.about-hero {
                padding: 40px 0 20px;
            }
.about-section {
                padding: 30px 0;
            }

/* --- 子页面追加 --- */
.rank-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
            padding: 80px 0 40px;
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }
.rank-section {
            padding: 50px 0;
        }
.rank-card {
            background: rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: var(--card-radius);
            padding: 24px;
            margin-bottom: 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
.rank-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--hover-shadow);
        }
.rank-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            min-width: 60px;
            text-align: center;
            line-height: 1;
        }
.rank-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }
.rank-meta {
            font-size: 0.85rem;
            color: rgba(236, 253, 245, 0.7);
            margin-bottom: 8px;
        }
.rank-desc {
            font-size: 0.9rem;
            color: rgba(236, 253, 245, 0.85);
            line-height: 1.5;
        }
.rank-tag {
            display: inline-block;
            background: rgba(251, 191, 36, 0.15);
            color: var(--accent);
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 6px;
        }
.rank-category-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
.rank-category-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--main), transparent);
            border-radius: 3px;
        }
.trend-up {
            color: #10b981;
            font-size: 0.85rem;
        }
.trend-down {
            color: #ef4444;
            font-size: 0.85rem;
        }
.trend-flat {
            color: rgba(236, 253, 245, 0.5);
            font-size: 0.85rem;
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .disclaimer-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
.disclaimer-section {
            background: var(--card-bg, rgba(255, 255, 255, 0.04));
            border-radius: var(--card-radius, 22px);
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--card-shadow, 0 12px 30px rgba(0, 0, 0, 0.6));
            transition: box-shadow 0.3s ease;
        }
.disclaimer-section:hover {
            box-shadow: var(--hover-shadow, 0 20px 35px rgba(16, 185, 129, 0.2));
        }
.disclaimer-section h2 {
            color: var(--main, #10b981);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
            letter-spacing: -0.01em;
        }
.disclaimer-section h3 {
            color: var(--accent, #fbbf24);
            font-weight: 600;
            font-size: 1.15rem;
            margin: 20px 0 10px;
        }
.disclaimer-section p, .disclaimer-section li {
            color: rgba(236, 253, 245, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
        }
.disclaimer-section ul, .disclaimer-section ol {
            padding-left: 20px;
            margin-bottom: 15px;
        }
.disclaimer-section li {
            margin-bottom: 8px;
        }
.highlight-box {
            background: rgba(16, 185, 129, 0.08);
            border-left: 3px solid var(--main, #10b981);
            padding: 15px 20px;
            border-radius: 0 12px 12px 0;
            margin: 20px 0;
        }
.highlight-box p {
            margin: 0;
            color: var(--text, #ecfdf5);
        }
.contact-info {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(251, 191, 36, 0.08);
            padding: 15px 20px;
            border-radius: 12px;
            margin-top: 15px;
        }
.contact-info i {
            color: var(--accent, #fbbf24);
            font-size: 1.2rem;
        }
.contact-info p {
            margin: 0;
            color: var(--text, #ecfdf5);
        }
.disclaimer-hero {
                padding: 60px 0 30px;
            }
.disclaimer-section {
                padding: 20px;
            }

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