:root {
      --primary: #10b981;
      --accent: #fbbf24;
      --bg: #0a1410;
      --text: #ecfdf5;
      --card-bg: #13251d;
      --radius-lg: 24px;
      --radius-md: 16px;
      --shadow: 0 12px 30px rgba(0,0,0,0.5);
    }

    * { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Noto Sans SC', sans-serif;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .serif {
      font-family: 'Noto Serif SC', serif;
      font-weight: 700;
    }

    /* 导航 */
    .navbar-custom {
      background: rgba(10,20,16,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(16,185,129,0.25);
    }
    .navbar-brand {
      font-weight: 900;
      font-size: 1.7rem;
      letter-spacing: -0.5px;
      color: var(--primary) !important;
      font-family: 'Noto Serif SC', serif;
    }
    .navbar-brand i {
      color: var(--accent);
      margin-right: 8px;
    }
    .nav-link {
      color: var(--text) !important;
      margin: 0 0.5rem;
      font-weight: 500;
      transition: 0.2s;
    }
    .nav-link:hover { color: var(--primary) !important; }

    /* 按钮光泽 */
    .btn-glow {
      background: var(--primary);
      border: none;
      color: #062015;
      font-weight: 600;
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      position: relative;
      overflow: hidden;
      transition: 0.3s;
    }
    .btn-glow::after {
      content: '';
      position: absolute;
      top: 0; left: -80%;
      width: 40%; height: 100%;
      background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
      transform: skewX(-20deg);
      transition: 0.6s;
    }
    .btn-glow:hover::after { left: 120%; }
    .btn-glow:hover { background: #0e9e6e; color: white; }

    /* 区块标题 */
    .section-title {
      font-size: 2.3rem;
      font-weight: 800;
      position: relative;
      margin-bottom: 1.8rem;
      padding-left: 1.2rem;
    }
    .section-title::before {
      content: '';
      position: absolute;
      left: 0; top: 8px; bottom: 8px;
      width: 5px;
      background: var(--accent);
      border-radius: 4px;
    }
    .section-title i { color: var(--accent); margin-right: 12px; }

    /* 卡片圆角 */
    .poster-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: 0.25s ease;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.05);
      cursor: pointer;
      height: 100%;
    }
    .poster-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.7); }
    .poster-img-wrap { position: relative; aspect-ratio: 2/3; overflow: hidden; background: #0d1c15; }
    .poster-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: 0.4s;
    }
    .poster-card:hover img { transform: scale(1.06); }
    .badge-ep {
      position: absolute;
      top: 10px; left: 10px;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
      color: var(--accent);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.25rem 0.7rem;
      border-radius: 30px;
      border-left: 2px solid var(--accent);
    }
    .rating-badge {
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(4px);
      border-radius: 30px;
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
      color: #fff;
      font-weight: 600;
      display: flex; align-items: center; gap: 4px;
    }
    .rating-badge i { color: var(--accent); font-size: 0.65rem; }

    .card-body-custom {
      padding: 1rem 0.8rem 0.8rem;
    }
    .card-title-custom {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 0.2rem;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      font-family: 'Noto Sans SC', sans-serif;
    }
    .card-meta {
      font-size: 0.8rem;
      color: rgba(236,253,245,0.6);
      display: flex; justify-content: space-between;
    }

    /* 横向滚动海报行 */
    .scroll-row {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      padding-bottom: 1rem;
      scrollbar-width: thin;
      scrollbar-color: var(--primary) var(--bg);
    }
    .scroll-row::-webkit-scrollbar { height: 6px; }
    .scroll-row::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
    .scroll-item { flex: 0 0 180px; }

    /* 周榜列表 */
    .rank-list {
      background: rgba(18,35,28,0.8);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
    }
    .rank-item {
      display: flex; align-items: center;
      padding: 0.8rem 0.5rem;
      border-bottom: 1px dashed rgba(255,255,255,0.1);
    }
    .rank-num {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--accent);
      width: 2.5rem;
      font-family: 'Noto Serif SC', serif;
    }

    /* 抽屉弹窗 */
    .drawer-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(3px);
      opacity: 0; visibility: hidden;
      transition: 0.3s;
      z-index: 999;
    }
    .drawer {
      position: fixed; left: 0; right: 0; bottom: 0;
      background: #12241b;
      border-radius: 30px 30px 0 0;
      padding: 2rem 1.5rem 2.5rem;
      transform: translateY(100%);
      transition: 0.4s cubic-bezier(.175,.885,.32,1.1);
      max-height: 80vh;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    }
    .drawer.show { transform: translateY(0); }
    .drawer-overlay.show { opacity: 1; visibility: visible; }
    .drawer-close {
      position: absolute; top: 15px; right: 20px;
      background: none; border: none;
      color: var(--text); font-size: 1.8rem;
      opacity: 0.7;
    }
    .drawer-close:hover { opacity: 1; }

    /* hero 大数字 */
    .hero-stat { font-size: 3.5rem; font-weight: 900; color: var(--accent); font-family: 'Noto Serif SC', serif; line-height: 1.2; }

    /* 回到顶部 */
    #topBtn {
      position: fixed; bottom: 2rem; right: 2rem;
      background: var(--primary); color: #062015;
      border: none; border-radius: 50%;
      width: 48px; height: 48px;
      font-size: 1.2rem;
      box-shadow: 0 8px 20px rgba(16,185,129,0.3);
      opacity: 0; visibility: hidden;
      transition: 0.3s;
      z-index: 999;
    }
    #topBtn.show { opacity: 1; visibility: visible; }

    footer a { color: var(--text); text-decoration: none; }
    footer a:hover { color: var(--primary); }

    .friend-links a {
      color: rgba(236,253,245,0.7);
      margin-right: 1.2rem;
      text-decoration: underline dotted;
      font-size: 0.9rem;
    }

/* --- 子页面追加 --- */
/* 保证子页与首页一致——微调间距与卡片风格 */
    .about-hero {
      background: linear-gradient(145deg, var(--bg) 0%, #0d1f17 100%);
      border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    }
.about-section {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 2rem 2rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.04);
      margin-bottom: 2.2rem;
    }
.about-section h2, .about-section h3 {
      color: var(--primary);
      font-weight: 700;
      letter-spacing: -0.01em;
      border-left: 5px solid var(--accent);
      padding-left: 1.2rem;
      margin-bottom: 1.6rem;
    }
.about-section p {
      color: var(--text);
      opacity: 0.92;
      line-height: 1.8;
    }
.highlight-badge {
      display: inline-block;
      background: rgba(16, 185, 129, 0.12);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: var(--primary);
      padding: 0.3rem 1rem;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-right: 0.6rem;
      margin-bottom: 0.6rem;
    }
.feature-icon {
      font-size: 1.8rem;
      color: var(--accent);
      margin-right: 1rem;
    }
.about-stat {
      background: rgba(0,0,0,0.25);
      border-radius: var(--radius-md);
      padding: 1.4rem 0.8rem;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.05);
    }
.about-stat .num {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.2;
    }
.about-stat .label {
      color: rgba(236, 253, 245, 0.7);
      font-size: 0.9rem;
    }
/* 导航栏高亮当前页 */
    .navbar-custom .nav-link.active-about {
      color: var(--primary) !important;
      font-weight: 600;
      border-bottom: 2px solid var(--accent);
    }
/* 页脚友链样式 */
    .footer-links a {
      color: rgba(236, 253, 245, 0.6);
      text-decoration: none;
      margin-right: 1.2rem;
      transition: 0.2s;
    }
.footer-links a:hover {
      color: var(--primary);
    }
.about-section {
        padding: 1.5rem 1.2rem;
      }

/* --- 子页面追加 --- */
.privacy-hero {
            padding: 80px 0 40px;
            text-align: center;
        }
.privacy-hero h1 {
            color: var(--primary);
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
.privacy-hero p {
            color: rgba(236, 253, 245, .7);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
.privacy-section {
            padding: 30px 0;
        }
.privacy-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 40px 45px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(16, 185, 129, .15);
            transition: transform .3s ease, box-shadow .3s ease;
        }
.privacy-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
        }
.privacy-card h2 {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(16, 185, 129, .2);
            display: flex;
            align-items: center;
            gap: 12px;
        }
.privacy-card h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
.privacy-card h3 {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 20px 0 12px;
        }
.privacy-card p {
            color: rgba(236, 253, 245, .85);
            margin-bottom: 15px;
            font-size: 1rem;
        }
.privacy-card ul, .privacy-card ol {
            color: rgba(236, 253, 245, .85);
            padding-left: 20px;
            margin-bottom: 15px;
        }
.privacy-card li {
            margin-bottom: 8px;
            padding-left: 5px;
        }
.privacy-card strong {
            color: var(--accent);
        }
.privacy-card .highlight-box {
            background: rgba(16, 185, 129, .08);
            border-left: 4px solid var(--primary);
            padding: 16px 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
.privacy-card .highlight-box p {
            margin-bottom: 0;
            color: rgba(236, 253, 245, .95);
        }
.privacy-card .last-updated {
            font-size: .85rem;
            color: rgba(236, 253, 245, .5);
            text-align: right;
            margin-top: 20px;
            font-style: italic;
        }
.contact-box {
            background: rgba(251, 191, 36, .08);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
.contact-box p {
            color: rgba(236, 253, 245, .9) !important;
        }
.privacy-hero h1 { font-size: 2rem; }
.privacy-card { padding: 25px 20px; }
.privacy-card h2 { font-size: 1.3rem; }