:root {
    --primary: #b45309;
    --accent: #ca8a04;
    --bg: #fefce8;
    --text: #451a03;
  }
  * { box-sizing: border-box; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.9;
    margin: 0;
    padding: 0;
    letter-spacing: 0.01em;
  }
  h1,h2,h3,h4,h5,h6 {
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.3;
  }
  h2 { font-size: 2.1rem; margin-bottom: 1.2rem; }
  h3 { font-size: 1.4rem; }
  a { color: var(--primary); text-decoration: none; transition: all 0.2s ease; }
  a:hover { color: var(--accent); }
  .navbar-custom {
    background: var(--bg) !important;
    border-bottom: 2px solid var(--primary);
    padding: 0.6rem 0;
  }
  .navbar-brand {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--primary) !important;
  }
  .nav-link-custom {
    font-weight: 600;
    color: var(--text) !important;
    margin: 0 0.4rem;
    padding: 0.5rem 0.8rem !important;
    border: 2px solid transparent;
  }
  .nav-link-custom:hover {
    border-bottom-color: var(--primary);
    color: var(--primary) !important;
  }
  .hero-section {
    background: linear-gradient(135deg, #1a0a00 0%, #3a1a00 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 7rem;
    border-bottom: 3px solid var(--accent);
  }
  .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('{随机图片}');
    background-size: cover;
    background-position: center;
    opacity: 0.45;
  }
  .hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
  }
  .hero-overlay h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  }
  .hero-overlay p {
    color: #fef3c7;
    font-size: 1.3rem;
    max-width: 650px;
    margin: 1.2rem auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
  }
  .section-wave-top {
    position: relative;
    margin-top: -1px;
  }
  .section-wave-top::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 1;
  }
  .wave-divider {
    height: 50px;
    background: var(--bg);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: -1px;
  }
  .main-layout {
    display: flex;
    gap: 2rem;
    padding: 3rem 0;
  }
  .sidebar {
    flex: 0 0 240px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    border-right: 2px solid var(--primary);
    padding-right: 1.2rem;
    min-height: 400px;
  }
  .sidebar h5 {
    font-weight: 800;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sidebar ul li {
    margin-bottom: 0.3rem;
  }
  .sidebar ul li a {
    display: block;
    padding: 0.45rem 0.6rem;
    font-weight: 500;
    border-left: 3px solid transparent;
  }
  .sidebar ul li a:hover {
    border-left-color: var(--accent);
    background: rgba(202, 138, 4, 0.08);
  }
  .content-area {
    flex: 1;
    min-width: 0;
  }
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
  }
  .comic-card {
    background: var(--bg);
    border: 2px solid var(--text);
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }
  .comic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(69, 26, 3, 0.25);
    border-color: var(--primary);
  }
  .comic-card .card-img-wrapper {
    height: 180px;
    background: linear-gradient(145deg, #fde68a, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--text);
  }
  .comic-card .card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  .comic-card .card-body {
    padding: 1.2rem;
  }
  .comic-card .card-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .comic-card .card-text {
    font-size: 0.9rem;
    color: rgba(69, 26, 3, 0.85);
  }
  .badge-tag {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0;
  }
  .table-compare {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--text);
  }
  .table-compare th, .table-compare td {
    padding: 0.9rem 1rem;
    border: 2px solid var(--text);
    text-align: left;
  }
  .table-compare th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
  }
  .table-compare tr:nth-child(even) { background: #fef9e7; }
  .num-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
  }
  .num-list li {
    counter-increment: step-counter;
    margin-bottom: 1.2rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
  }
  .num-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
  }
  .mono-num {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
  }
  .faq-item {
    border: 2px solid var(--text);
    margin-bottom: 1rem;
    background: var(--bg);
  }
  .faq-question {
    padding: 1rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .faq-answer {
    padding: 0 1.2rem 1rem;
    border-top: 1px dashed var(--text);
  }
  .cta-section {
    background: var(--primary);
    color: #fff;
    padding: 3rem 0;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
  }
  .cta-section h2 {
    color: #fff;
  }
  .btn-custom {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0;
    transition: all 0.2s;
  }
  .btn-custom:hover {
    background: var(--text);
    color: #fff;
  }
  .footer-custom {
    background: var(--text);
    color: #fef3c7;
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
  }
  .footer-custom a {
    color: #fde68a;
  }
  .footer-custom a:hover {
    color: #fff;
  }
  .friend-links {
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    padding: 1rem 0;
    margin: 2rem 0;
  }
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }
  .back-to-top.show {
    opacity: 1;
    visibility: visible;
  }
  @media (max-width: 992px) {
    .main-layout { flex-direction: column; }
    .sidebar {
      flex: 1;
      position: static;
      border-right: none;
      border-bottom: 2px solid var(--primary);
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
    }
    .hero-overlay h1 { font-size: 2.5rem; }
  }
  @media (max-width: 576px) {
    .card-grid { grid-template-columns: 1fr; }
    .hero-overlay h1 { font-size: 2rem; }
  }
  .section-block { padding: 3rem 0; }
  .divider-slant {
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    margin-bottom: 1rem;
  }

/* --- 子页面追加 --- */
/* 本页专属样式 - 关于页面 */
        .about-hero {
            background: linear-gradient(135deg, rgba(180, 83, 9, 0.08) 0%, rgba(202, 138, 4, 0.12) 50%, rgba(180, 83, 9, 0.08) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }
.about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(202, 138, 4, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }
.about-hero h1 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
.about-hero .lead {
            font-size: 1.25rem;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
.about-section {
            padding: 60px 0;
        }
.about-section:nth-child(even) {
            background: rgba(180, 83, 9, 0.03);
        }
.about-section h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
.about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
.about-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
            margin-bottom: 20px;
        }
.about-section .lead {
            font-size: 1.2rem;
            font-weight: 500;
        }
.about-card {
            background: rgba(180, 83, 9, 0.05);
            border: 2px solid rgba(180, 83, 9, 0.1);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
.about-card:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 25px rgba(180, 83, 9, 0.1);
            transform: translateY(-3px);
        }
.about-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
            display: block;
        }
.about-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
.about-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.timeline {
            position: relative;
            padding-left: 40px;
        }
.timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent), var(--primary));
            border-radius: 3px;
        }
.timeline-item {
            position: relative;
            margin-bottom: 35px;
        }
.timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 3px var(--accent);
        }
.timeline-item .year {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            display: block;
        }
.timeline-item p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
.about-badge {
            display: inline-block;
            background: rgba(202, 138, 4, 0.1);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
.about-value {
            background: rgba(202, 138, 4, 0.08);
            border-radius: 20px;
            padding: 15px 25px;
            margin-bottom: 15px;
            border-left: 4px solid var(--accent);
        }
.about-value h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
.about-value p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

/* --- 子页面追加 --- */
/* 兔子漫画免责声明页面微调 — 仅补充细节，不破坏全局 */
        .disclaimer-title {
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--primary);
            border-left: 6px solid var(--accent);
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
.disclaimer-section {
            background-color: rgba(254, 252, 232, 0.5);
            border-radius: 20px;
            padding: 2rem 1.8rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(180, 83, 9, 0.15);
            box-shadow: 0 10px 25px -12px rgba(69, 26, 3, 0.15);
        }
.disclaimer-section h2 {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
.disclaimer-section h2 i {
            color: var(--accent);
            font-size: 1.4rem;
        }
.disclaimer-section p, .disclaimer-section li {
            color: var(--text);
            line-height: 1.8;
            font-weight: 400;
        }
.disclaimer-section ul {
            padding-left: 1.6rem;
            margin-top: 0.5rem;
        }
.disclaimer-section li {
            margin-bottom: 0.4rem;
        }
.highlight-box {
            background: rgba(202, 138, 4, 0.08);
            border-left: 4px solid var(--accent);
            padding: 1.2rem 1.4rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
.update-tag {
            font-size: 0.85rem;
            background: var(--primary);
            color: #fefce8;
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
/* 保持卡片风格统一 */
        .card-compat {
            background: var(--bg);
            border: 1px solid rgba(180, 83, 9, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
        }
.breadcrumb-zone {
            font-size: 0.9rem;
            color: var(--text);
            opacity: 0.8;
        }
.breadcrumb-zone a {
            color: var(--primary);
            font-weight: 500;
        }

/* --- 子页面追加 --- */
/* 隐私页特殊微调 —— 保证与兔子漫画品牌色一致 */
    .privacy-hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      padding: 3rem 0;
      color: var(--bg);
    }
.privacy-hero h1 {
      font-weight: 900;
      color: var(--bg);
      text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
.privacy-hero p {
      color: rgba(254, 252, 232, 0.9);
      font-size: 1.1rem;
    }
.privacy-card {
      background: rgba(254, 252, 232, 0.65);
      border: 1px solid rgba(180, 83, 9, 0.25);
      border-radius: 20px;
      padding: 1.8rem 1.5rem;
      backdrop-filter: blur(2px);
      margin-bottom: 1.5rem;
      box-shadow: 0 8px 20px rgba(69, 26, 3, 0.06);
    }
.privacy-card h2, .privacy-card h3 {
      color: var(--primary);
      font-weight: 800;
      border-left: 5px solid var(--accent);
      padding-left: 0.8rem;
      margin-bottom: 1.2rem;
    }
.privacy-card ul, .privacy-card ol {
      color: var(--text);
      padding-left: 1.2rem;
    }
.privacy-card li {
      margin-bottom: 0.4rem;
    }
.privacy-card a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: underline dotted;
    }
.privacy-card a:hover {
      color: var(--accent);
    }
.table-compare td, .table-compare th {
      border-color: rgba(180, 83, 9, 0.2);
      color: var(--text);
    }

/* --- Bootstrap 组件配色适配(程序自动补,避免白底黑字) --- */
.table { color:#451a03 !important; border-color:rgba(0,0,0,.12) !important; --bs-table-bg:transparent !important; --bs-table-color:#451a03 !important; }
