:root {
    --primary: #9f1239;
    --accent: #e11d48;
    --bg: #fafafa;
    --text: #3f0a1a;
    --soft-shadow: 0 12px 28px -8px rgba(159, 18, 57, 0.12), 0 4px 12px rgba(0,0,0,0.03);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    background-image: radial-gradient(circle, rgba(159,18,57,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
  }
  h1, h2, h3, .display-font {
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  a { text-decoration: none; color: inherit; }

  /* 侧栏布局 */
  .layout-sidebar {
    display: flex;
    max-width: 1420px;
    margin: 0 auto;
    gap: 24px;
    padding: 0 20px 40px;
  }
  .sidebar-left {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    box-shadow: var(--soft-shadow);
    height: fit-content;
    border: 1px solid rgba(159,18,57,0.08);
  }
  .main-content {
    flex: 1;
    min-width: 0;
  }

  /* 导航 */
  .navbar-custom {
    background: rgba(250,250,250,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(159,18,57,0.1);
    padding: 14px 0;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .navbar-inner {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-brand i { font-size: 1.8rem; color: var(--accent); }
  .nav-links {
    display: flex;
    gap: 26px;
    font-weight: 600;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.95rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    color: var(--text);
  }
  .nav-links a:hover { color: var(--primary); border-bottom-color: var(--primary); }

  /* hero */
  .hero-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0 25px;
  }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: white;
    padding: 26px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    flex: 1;
    border: 1px solid rgba(159,18,57,0.05);
  }
  .stat-item {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
    color: var(--primary);
    line-height: 1.2;
  }
  .stat-label {
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.7;
    letter-spacing: 0.5px;
    margin-top: 4px;
  }
  .hero-cta {
    background: var(--accent);
    color: white !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px -6px rgba(225,29,72,0.3);
    transition: 0.2s;
  }
  .hero-cta:hover { transform: translateY(-2px); background: var(--primary); }

  /* 卡片网格 */
  .comic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-top: 15px;
  }
  .comic-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02);
    border: 1px solid rgba(159,18,57,0.05);
    transition: all 0.25s ease;
    position: relative;
  }
  .comic-card:hover { transform: translateY(-6px); box-shadow: var(--soft-shadow); }
  .card-img-wrap {
    height: 200px;
    background: #f0e3e8;
    overflow: hidden;
    position: relative;
  }
  .card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
  }
  .comic-card:hover .card-img-wrap img { transform: scale(1.08); }
  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(159,18,57,0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 12px;
  }
  .comic-card:hover .card-overlay { opacity: 1; }
  .card-overlay span {
    color: white; font-weight: 700; font-size: 0.9rem;
  }
  .card-info { padding: 12px 12px 14px; }
  .card-title { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
  .card-meta { font-size: 0.75rem; color: var(--primary); font-weight: 600; }

  /* 区块通用 */
  .section-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-title i { color: var(--accent); }

  /* 对比表格 */
  .compare-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
  }
  .compare-table th {
    background: var(--primary);
    color: white;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 1rem;
  }
  .compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1e4e8;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table .fa-check-circle { color: #0f9d58; }
  .compare-table .fa-times-circle { color: #c00; }

  /* 编号清单 */
  .step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
  }
  .step-list li {
    counter-increment: step-counter;
    margin-bottom: 18px;
    padding-left: 42px;
    position: relative;
    font-weight: 500;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 12px 20px 12px 48px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    border: 1px solid rgba(159,18,57,0.03);
  }
  .step-list li::before {
    content: counter(step-counter);
    background: var(--primary);
    color: white;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    position: absolute; left: 8px; top: 50%;
    transform: translateY(-50%);
  }

  /* faq */
  .faq-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--soft-shadow);
  }
  .faq-item { margin-bottom: 20px; }
  .faq-question { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; color: var(--primary); }
  .faq-answer { color: var(--text); opacity: 0.85; }

  /* 友链 */
  .friend-links {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 40px 0 30px;
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(159,18,57,0.05);
  }
  .friend-links h4 { font-weight: 800; margin-bottom: 12px; font-size: 1.1rem; }

  /* 回到顶部 */
  #goTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(159,18,57,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
  }
  #goTop.show { opacity: 1; visibility: visible; }

  /* 滚动显现 */
  .fade-section { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-section.visible { opacity: 1; transform: translateY(0); }

  /* 移动端 */
  @media (max-width: 992px) {
    .layout-sidebar { flex-direction: column; }
    .sidebar-left { width: 100%; position: static; }
    .navbar-inner { flex-wrap: wrap; gap: 10px; }
    .nav-links { display: none; } /* 简化：移动端仅保留logo和汉堡(演示) */
  }
  @media (max-width: 768px) {
    .hero-section { flex-direction: column; }
    .hero-stats { width: 100%; }
  }

/* --- 子页面追加 --- */
/* 本页专属小样式——合并进站点CSS */
        .about-hero {
            padding: 80px 0 40px;
            background: linear-gradient(135deg, rgba(159,18,57,0.06) 0%, rgba(225,29,72,0.04) 100%);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            margin-bottom: 32px;
        }
.about-hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
.about-hero .lead {
            font-size: 1.1rem;
            max-width: 720px;
            margin: 0 auto;
            opacity: 0.85;
            line-height: 1.7;
        }
.about-section {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            margin-bottom: 28px;
            box-shadow: var(--soft-shadow);
        }
.about-section h2 {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.about-section h2 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.about-section h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text);
            margin: 22px 0 12px;
        }
.about-section p {
            line-height: 1.8;
            color: var(--text);
            opacity: 0.92;
            margin-bottom: 14px;
        }
.about-section ul, .about-section ol {
            padding-left: 22px;
            margin-bottom: 16px;
            line-height: 1.8;
        }
.about-section li {
            margin-bottom: 6px;
            color: var(--text);
        }
.highlight-box {
            background: rgba(159,18,57,0.06);
            border-left: 4px solid var(--accent);
            padding: 18px 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 22px 0;
        }
.highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
        }
.feature-tag {
            display: inline-block;
            background: rgba(159,18,57,0.08);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            margin: 4px 6px 4px 0;
        }
.timeline-item {
            position: relative;
            padding-left: 28px;
            margin-bottom: 20px;
        }
.timeline-item::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 6px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent);
        }
.timeline-item::after {
            content: "";
            position: absolute;
            left: 12px;
            top: 20px;
            width: 2px;
            height: calc(100% + 8px);
            background: rgba(159,18,57,0.15);
        }
.timeline-item:last-child::after {
            display: none;
        }
.timeline-item h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
.timeline-item p {
            font-size: 0.92rem;
            margin-bottom: 0;
        }
.about-hero h1 { font-size: 1.7rem; }
.about-section { padding: 24px 18px; }
.about-section h2 { font-size: 1.2rem; }

/* --- 子页面追加 --- */
.privacy-container {
            max-width: 860px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }
.privacy-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
.privacy-title h1 {
            color: var(--primary);
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
        }
.privacy-title p {
            color: var(--text);
            opacity: 0.7;
            font-size: 1rem;
        }
.privacy-section {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--soft-shadow);
            border: 1px solid rgba(159, 18, 57, 0.06);
        }
.privacy-section h2 {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(225, 29, 72, 0.15);
        }
.privacy-section h3 {
            color: var(--text);
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1.25rem 0 0.75rem;
        }
.privacy-section p {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
.privacy-section ul {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }
.privacy-section ul li {
            color: var(--text);
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            position: relative;
        }
.privacy-section ul li::before {
            content: "▸";
            color: var(--accent);
            position: absolute;
            left: -1.25rem;
        }
.privacy-highlight {
            background: rgba(225, 29, 72, 0.05);
            border-left: 4px solid var(--accent);
            padding: 1rem 1.25rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.25rem 0;
        }
.privacy-highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
.last-updated {
            text-align: center;
            color: var(--text);
            opacity: 0.6;
            font-size: 0.85rem;
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(159, 18, 57, 0.1);
        }
.privacy-title h1 {
                font-size: 1.7rem;
            }
.privacy-section {
                padding: 1.5rem;
            }

/* --- 子页面追加 --- */
/* 本页专属样式 - 免责声明页面 */
        .disclaimer-hero {
            background: linear-gradient(135deg, rgba(159,18,57,0.08) 0%, rgba(225,29,72,0.04) 100%);
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(159,18,57,0.1);
        }
.disclaimer-title {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
.disclaimer-subtitle {
            font-size: 1.05rem;
            color: #8a4a5a;
            max-width: 700px;
            line-height: 1.7;
        }
.disclaimer-content {
            padding: 50px 0 60px;
        }
.disclaimer-section {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            margin-bottom: 28px;
            box-shadow: var(--soft-shadow);
            border: 1px solid rgba(159,18,57,0.06);
            transition: transform 0.2s ease;
        }
.disclaimer-section:hover {
            transform: translateY(-2px);
        }
.disclaimer-section h2 {
            font-size: 1.45rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.01em;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            font-size: 1.2rem;
        }
.disclaimer-section p {
            color: #5d2a3a;
            line-height: 1.85;
            margin-bottom: 14px;
            font-size: 0.98rem;
        }
.disclaimer-section p:last-child {
            margin-bottom: 0;
        }
.disclaimer-section ul {
            padding-left: 20px;
            margin-bottom: 14px;
        }
.disclaimer-section ul li {
            color: #5d2a3a;
            line-height: 1.8;
            margin-bottom: 8px;
            font-size: 0.96rem;
            position: relative;
            padding-left: 6px;
        }
.disclaimer-section ul li::marker {
            color: var(--accent);
        }
.notice-box {
            background: rgba(159,18,57,0.05);
            border-left: 4px solid var(--accent);
            padding: 16px 20px;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 20px 0;
            font-size: 0.93rem;
            color: #6b3345;
            line-height: 1.7;
        }
.notice-box i {
            color: var(--accent);
            margin-right: 8px;
        }
.disclaimer-meta {
            text-align: center;
            padding: 30px 0 0;
            color: #9a6a78;
            font-size: 0.9rem;
            border-top: 1px solid rgba(159,18,57,0.08);
            margin-top: 40px;
        }
.disclaimer-meta p {
            margin-bottom: 6px;
        }
.disclaimer-hero {
                padding: 40px 0 30px;
            }
.disclaimer-title {
                font-size: 1.8rem;
            }
.disclaimer-section {
                padding: 24px 20px;
                border-radius: var(--radius-md);
            }
.disclaimer-section h2 {
                font-size: 1.2rem;
            }