:root {
      --main: #10b981;
      --accent: #fbbf24;
      --bg: #0a1410;
      --text: #ecfdf5;
      --border: 3px solid #2c3e3a;
      --shadow: 6px 6px 0 rgba(0,0,0,0.7);
      --radius: 0px; /* 全直角 */
    }

    * { border-radius: var(--radius) !important; }

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

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

    /* 滚动进度条 */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 4px;
      width: 0%;
      background: var(--accent);
      z-index: 9999;
      transition: width 0.1s;
    }

    /* 顶部导航 */
    .navbar-own {
      background: #0d1b16;
      border-bottom: var(--border);
      box-shadow: var(--shadow);
      z-index: 100;
    }
    .navbar-brand { font-weight: 900; font-size: 1.6rem; color: var(--text) !important; }
    .nav-link { color: #d1e7dd !important; font-weight: 500; }
    .nav-link:hover { color: var(--accent) !important; }

    /* 区块通用 */
    .section-title {
      border-left: 8px solid var(--accent);
      padding-left: 0.8rem;
      margin: 2.5rem 0 1.5rem;
      font-weight: 900;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .section-title small { color: var(--main); font-weight: 400; }

    /* 卡片 */
    .movie-card {
      background: #101f19;
      border: 2px solid #2c4a3f;
      box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
      transition: all 0.25s ease;
      cursor: pointer;
      margin-bottom: 1.5rem;
      height: 100%;
    }
    .movie-card:hover {
      transform: translateY(-6px);
      box-shadow: 8px 10px 0 rgba(0,0,0,0.7);
      border-color: var(--main);
    }
    .movie-card img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      border-bottom: 2px solid #1f3a30;
    }
    .card-body-custom {
      padding: 0.6rem 0.8rem;
    }
    .card-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
    .card-meta { font-size: 0.75rem; color: #a7c9bd; }

    /* 海报渐变遮罩 + 播放浮层 */
    .img-wrap { position: relative; overflow: hidden; }
    .img-wrap::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,20,16,0.7) 0%, transparent 60%);
    }
    .play-icon {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      font-size: 3rem;
      color: var(--accent);
      opacity: 0.8;
      text-shadow: 0 0 15px black;
      z-index: 5;
      transition: 0.2s;
    }
    .movie-card:hover .play-icon { opacity: 1; transform: translate(-50%,-50%) scale(1.1); }

    /* 硬朗区块 */
    .hard-box {
      border: 2px solid #2e4d40;
      background: #0f1d17;
      padding: 1.2rem;
      box-shadow: var(--shadow);
    }

    /* 排行榜 */
    .rank-item {
      border-bottom: 1px dashed #2c4a3f;
      padding: 0.6rem 0.2rem;
      display: flex;
      gap: 0.7rem;
      align-items: center;
    }
    .rank-num {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--accent);
      width: 2.5rem;
    }

    /* 打字机效果 */
    @keyframes typing { from { width: 0; } to { width: 100%; } }
    .typewriter {
      display: inline-block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 4px solid var(--accent);
      animation: typing 3s steps(30, end) infinite alternate;
      font-family: 'Noto Serif SC', serif;
      font-weight: 900;
      font-size: 2.5rem;
    }

    /* 淡入上移动效 */
    .fade-section {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* 手风琴 */
    .accordion-item { background: #0f1d17; border: 1px solid #2e4d40; }
    .accordion-button { background: #132a20; color: var(--text); }
    .accordion-button:not(.collapsed) { background: #1a3529; color: var(--accent); }

    /* 分类入口 */
    .cat-entry {
      background: #10231c;
      border: 2px solid #2a4a3d;
      padding: 1rem 0.5rem;
      text-align: center;
      transition: 0.2s;
      box-shadow: 3px 3px 0 #000;
    }
    .cat-entry:hover { background: #163a2a; border-color: var(--accent); transform: scale(0.98); }
    .cat-entry i { font-size: 2.2rem; color: var(--accent); }

    /* 页脚 */
    .footer-links a { color: #cde8dd; text-decoration: none; margin-right: 1rem; }
    .footer-links a:hover { color: var(--accent); }

    /* 弹窗 */
    .custom-modal {
      display: none;
      position: fixed; inset: 0;
      z-index: 2000;
      background-color: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
    }
    .custom-modal-content {
      position: relative;
      max-width: 600px;
      margin: 8vh auto;
      background: #0d1f18;
      border: 3px solid var(--main);
      box-shadow: 0 0 40px var(--main);
      padding: 2rem;
      color: var(--text);
    }
    .close-modal { position: absolute; top: 8px; right: 18px; font-size: 2rem; cursor: pointer; }

/* --- 子页面追加 --- */
/* 保证 Bootstrap 组件不破坏深色风格——此处只做防御性覆盖，若站点样式已定义则复用 */
    .card, .card-body, .card-title, .card-text, .card-header, .card-footer,
    .form-control, .form-select, .form-label, .input-group-text,
    .table, .list-group-item, .accordion-item, .accordion-button, .accordion-body,
    .modal-content, .modal-header, .modal-body, .dropdown-menu, .dropdown-item,
    .nav-link, .navbar, .navbar-brand, .btn-light, .btn-outline-* {
      background-color: var(--bg) !important;
      color: var(--text) !important;
      border-color: var(--border) !important;
    }
.card, .hard-box, .movie-card {
      border: var(--border) !important;
      box-shadow: var(--shadow) !important;
    }
/* 保证直角 */
    .card, .movie-card, .hard-box, .accordion-item { border-radius: 0 !important; }
/* 自定义链接高亮 */
    .nav-link.active-cat {
      color: var(--main) !important;
      font-weight: 700;
      border-bottom: 2px solid var(--accent);
    }
.cat-hero {
      background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(10,20,16,0.9) 80%);
    }

/* --- 子页面追加 --- */
/* 动漫页特有微调 */
    .anime-hero { border-bottom: var(--border); background: linear-gradient(145deg, #0f1e18 0%, #0a1410 100%); }
.season-badge { display: inline-block; background: var(--accent); color: #0a1410; font-weight: 700; padding: 0.15rem 0.9rem; font-size: 0.85rem; border-radius: 0; box-shadow: 3px 3px 0 rgba(0,0,0,0.6); }
.table-anime-schedule td, .table-anime-schedule th { border-color: #2c3e3a; }
.table-anime-schedule th { background: rgba(16,185,129,0.15); font-weight: 600; color: var(--main); }
.table-anime-schedule td { background: rgba(0,0,0,0.2); }
.accordion-button::after { filter: invert(80%) sepia(30%); }
.list-group-item { background: rgba(0,0,0,0.25); border: 1px solid #2c3e3a; color: var(--text); }

/* --- 子页面追加 --- */
/* 关于页面专属微调样式 */
        .about-hero {
            background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(251,191,36,0.05) 100%);
            border-bottom: var(--border);
        }
.about-section {
            padding: 60px 0;
        }
.about-section h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 12px;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 48px;
            height: 3px;
            background: var(--main);
        }
.about-content {
            color: rgba(236,253,245,0.88);
            line-height: 1.9;
            font-size: 1.02rem;
        }
.about-content p {
            margin-bottom: 1.2rem;
        }
.feature-block {
            background: rgba(16,185,129,0.06);
            border-left: 3px solid var(--main);
            padding: 20px 24px;
            margin-bottom: 20px;
            transition: transform 0.2s ease;
        }
.feature-block:hover {
            transform: translateX(4px);
        }
.feature-block h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--main);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
.feature-block h3 i {
            font-size: 1rem;
            width: 24px;
            text-align: center;
        }
.stat-box {
            background: rgba(16,185,129,0.08);
            border: 1px solid rgba(16,185,129,0.2);
            padding: 24px 16px;
            text-align: center;
            transition: all 0.3s ease;
        }
.stat-box:hover {
            background: rgba(16,185,129,0.15);
            transform: translateY(-3px);
        }
.stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--main);
            display: block;
            font-family: 'Inter', sans-serif;
        }
.stat-label {
            font-size: 0.9rem;
            color: rgba(236,253,245,0.7);
            margin-top: 4px;
        }
.timeline {
            position: relative;
            padding-left: 28px;
            border-left: 2px solid rgba(16,185,129,0.3);
        }
.timeline-item {
            position: relative;
            margin-bottom: 28px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 6px;
            width: 12px;
            height: 12px;
            background: var(--main);
            border-radius: 50%;
            border: 2px solid var(--bg);
        }
.timeline-year {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 4px;
        }
.promise-list {
            list-style: none;
            padding: 0;
        }
.promise-list li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(255,255,255,0.08);
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.promise-list li i {
            color: var(--main);
            margin-top: 4px;
            font-size: 1rem;
            flex-shrink: 0;
        }
.promise-list li strong {
            color: var(--text);
            font-weight: 600;
        }
.contact-card {
            background: rgba(16,185,129,0.05);
            border: 1px solid rgba(16,185,129,0.15);
            padding: 24px;
            margin-top: 20px;
        }
.contact-card i {
            color: var(--main);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
.about-footer-note {
            background: rgba(251,191,36,0.06);
            border-left: 3px solid var(--accent);
            padding: 16px 20px;
            margin-top: 30px;
            font-size: 0.95rem;
            color: rgba(236,253,245,0.75);
        }
.about-section {
                padding: 40px 0;
            }
.about-section h2 {
                font-size: 1.4rem;
            }
.stat-number {
                font-size: 1.8rem;
            }

/* --- 子页面追加 --- */
/* 本页专属少量样式 */
        .disclaimer-hero {
            padding: 60px 0 30px;
        }
.disclaimer-section {
            background: rgba(16, 185, 129, 0.06);
            border-left: 4px solid var(--main);
            padding: 25px 30px;
            margin-bottom: 30px;
        }
.disclaimer-section h3 {
            color: var(--main);
            font-weight: 700;
            margin-bottom: 15px;
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            opacity: 0.9;
            line-height: 1.9;
        }
.disclaimer-section ul {
            padding-left: 20px;
        }
.disclaimer-highlight {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid var(--accent);
            padding: 20px 25px;
            margin: 30px 0;
        }
.disclaimer-highlight h4 {
            color: var(--accent);
        }
.disclaimer-meta {
            color: rgba(236, 253, 245, 0.6);
            font-size: 0.9rem;
        }
.btn-back-home {
            background: var(--main);
            color: #0a1410;
            border: 2px solid var(--main);
            padding: 10px 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
.btn-back-home:hover {
            background: transparent;
            color: var(--main);
        }

/* --- 子页面追加 --- */
/* 本页专属样式 */
        .privacy-hero {
            padding: 60px 0 40px;
            border-bottom: var(--border);
            background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(0,0,0,0.3) 100%);
        }
.privacy-section {
            padding: 50px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
.privacy-section:last-child {
            border-bottom: none;
        }
.privacy-section h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--main);
            margin-bottom: 20px;
            padding-left: 16px;
            border-left: 4px solid var(--accent);
        }
.privacy-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text);
            margin: 24px 0 12px;
        }
.privacy-section p {
            line-height: 1.8;
            color: rgba(236,253,245,0.85);
            margin-bottom: 16px;
        }
.privacy-section ul {
            padding-left: 24px;
            margin-bottom: 16px;
        }
.privacy-section ul li {
            line-height: 1.8;
            color: rgba(236,253,245,0.85);
            margin-bottom: 8px;
        }
.privacy-section strong {
            color: var(--accent);
            font-weight: 600;
        }
.privacy-box {
            background: rgba(16,185,129,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 20px 24px;
            margin: 24px 0;
            border-left: 4px solid var(--main);
        }
.last-updated {
            font-size: 0.9rem;
            color: rgba(236,253,245,0.6);
            text-align: right;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
.privacy-highlight {
            background: rgba(251,191,36,0.08);
            border: 1px solid rgba(251,191,36,0.2);
            padding: 16px 20px;
            margin: 20px 0;
        }
.privacy-highlight h3 {
            color: var(--accent);
            margin-top: 0;
        }
.privacy-hero {
                padding: 40px 0 30px;
            }
.privacy-section h2 {
                font-size: 1.4rem;
            }

/* --- 子页面追加 --- */
/* 本页专属微调 —— 站点地图页专用 */
        .sitemap-list { list-style: none; padding-left: 0; }
.sitemap-list li { margin-bottom: 0.75rem; }
.sitemap-list a { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.sitemap-list a:hover { color: var(--main); }
.sitemap-cat { font-size: 1.1rem; font-weight: 700; color: var(--main); margin-top: 1.5rem; margin-bottom: 0.5rem; }
.sitemap-cat i { margin-right: 8px; color: var(--accent); }
.sitemap-desc { font-size: 0.9rem; color: rgba(236,253,245,0.6); margin-bottom: 0.25rem; }
.map-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 1rem; }
.map-card { background: rgba(255,255,255,0.04); padding: 1rem; border: var(--border); box-shadow: var(--shadow); }
.map-card a { color: var(--text); text-decoration: none; font-weight: 600; }
.map-card a:hover { color: var(--main); }
.map-card p { font-size: 0.85rem; color: rgba(236,253,245,0.65); margin-bottom: 0; }
.badge-new { background: var(--accent); color: #0a1410; font-size: 0.7rem; padding: 2px 8px; font-weight: 800; margin-left: 6px; }

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