```css
/* ============================================
   momo漫画 - 治愈系少女漫专属平台
   风格：梦幻紫罗兰 + 温暖治愈系
   特性：渐变Banner、毛玻璃、暗色模式、滚动动画、响应式
   ============================================ */

/* ---------- 主题变量 ---------- */
:root {
  /* 主色板 - 治愈系紫罗兰 */
  --primary: #7C5CFC;
  --primary-light: #9A7BFF;
  --primary-dark: #5A3BD0;
  --accent: #4A4AF0;
  --accent-soft: #EDE7FF;

  /* 中性色 */
  --bg: #F8F4FF;
  --bg-soft: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.72);
  --text: #1A1A2E;
  --text-soft: #2D2D44;
  --text-light: #6B6B8A;
  --border: #E0D4FF;
  --border-light: #E4DCFC;

  /* 阴影与圆角 */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(124, 92, 252, 0.08);
  --shadow-lg: 0 16px 40px rgba(124, 92, 252, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 40px;

  /* 渐变 */
  --gradient-primary: linear-gradient(135deg, #6B4CFF 0%, #9A7BFF 100%);
  --gradient-banner: linear-gradient(145deg, #F0EAFF 0%, #E4DCFC 40%, #CDB9FF 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #FDFBFF 100%);

  /* 动画 */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  /* 字体 */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* ---------- 暗色模式 ---------- */
[data-theme="dark"] {
  --bg: #14101F;
  --bg-soft: #1E1830;
  --bg-glass: rgba(30, 24, 48, 0.75);
  --text: #F0EBFF;
  --text-soft: #C9C0E6;
  --text-light: #9A90B8;
  --border: #3A2E5C;
  --border-light: #2E2547;
  --accent-soft: #2A2145;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --gradient-banner: linear-gradient(145deg, #1A1530 0%, #241C3D 40%, #2D2050 100%);
  --gradient-card: linear-gradient(145deg, #221A38 0%, #1E1830 100%);
}

/* ---------- 基础重置 ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 20px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---------- 排版 ---------- */
h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  border-left: 6px solid var(--primary);
  padding-left: 18px;
  margin-top: 48px;
  margin-bottom: 28px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 4px;
  margin-top: 8px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  color: var(--text-soft);
  margin-bottom: 12px;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- 容器 ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ---------- 头部导航 ---------- */
header {
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
}

.logo h1::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.logo:hover h1::after {
  transform: scaleX(1);
}

nav ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

nav ul li a {
  font-weight: 500;
  color: var(--text);
  padding: 8px 4px;
  position: relative;
  transition: color var(--transition-fast);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-base);
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- 主内容区 ---------- */
main {
  padding: 32px 0 64px;
}

/* ---------- 卡片网格 ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

/* ---------- 卡片设计 ---------- */
.card {
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(145deg, rgba(124, 92, 252, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card:hover::before {
  opacity: 1;
}

.card img {
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base);
  filter: saturate(0.9);
}

.card:hover img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.card h3 {
  font-size: 1.1rem;
  margin: 12px 0 6px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--primary);
}

.card p {
  margin: 3px 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(124, 92, 252, 0.25);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 92, 252, 0.35);
  color: #fff;
}

.btn:hover::after {
  left: 100%;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(124, 92, 252, 0.2);
}

/* ---------- 侧边栏网格 ---------- */
.aside-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

/* ---------- 侧边栏 ---------- */
aside {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
  transition: all var(--transition-base);
}

aside h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-list li {
  background: var(--bg);
  padding: 12px 18px;
  margin: 8px 0;
  border-radius: var(--radius-full);
  list-style: none;
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-list li:hover {
  background: var(--accent-soft);
  border-color: var(--primary-light);
  transform: translateX(4px);
  color: var(--primary);
}

.rating-list li::before {
  content: attr(data-rank);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rating-list li:nth-child(1)::before,
.rating-list li:nth-child(2)::before,
.rating-list li:nth-child(3)::before {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

aside p {
  background: var(--bg);
  padding: 10px 16px;
  border-radius: 12px;
  margin: 6px 0;
  font-size: 0.92rem;
  border-left: 3px solid var(--primary);
}

/* ---------- 评论区 ---------- */
.comment-item {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.comment-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.comment-item strong {
  color: var(--text);
  font-size: 1rem;
  margin-right: 12px;
}

.comment-item .badge {
  font-size: 0.78rem;
  color: var(--text-light);
}

.comment-item p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* ---------- 徽章 ---------- */
.badge {
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 500;
  display: inline-block;
}

/* ---------- 详细介绍区块 ---------- */
section article {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

section article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
  opacity: 0.8;
}

section article:hover {
  box-shadow: var(--shadow-md);
}

section article h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

section article p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

/* ---------- 页脚 ---------- */
footer {
  background: var(--bg-soft);
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 16px 0;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 4px 0;
  position: relative;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

footer p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

/* ---------- 动画效果 ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* 滚动进入动画 */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 卡片入场动画 */
.card {
  animation: fadeInUp 0.6s ease backwards;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.2s; }
.card:nth-child(5) { animation-delay: 0.25s; }
.card:nth-child(6) { animation-delay: 0.3s; }
.card:nth-child(7) { animation-delay: 0.35s; }
.card:nth-child(8) { animation-delay: 0.4s; }
.card:nth-child(9) { animation-delay: 0.45s; }
.card:nth-child(10) { animation-delay: 0.5s; }
.card:nth-child(11) { animation-delay: 0.55s; }
.card:nth-child(12) { animation-delay: 0.6s; }
.card:nth-child(13) { animation-delay: 0.65s; }
.card:nth-child(14) { animation-delay: 0.7s; }
.card:nth-child(15) { animation-delay: 0.75s; }
.card:nth-child(16) { animation-delay: 0.8s; }

/* 徽章悬浮 */
.badge {
  transition: all var(--transition-base);
}

.badge:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

/* ---------- 响应式布局 ---------- */
@media (max-width: 1024px) {
  .aside-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  aside {
    position: static;
    margin-top: 24px;
  }

  .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  nav ul {
    justify-content: center;
    gap: 16px;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 32px;
  }

  .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .card {
    padding: 12px;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .card p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.88rem;
  }

  section article {
    padding: 20px;
  }

  .comment-item {
    padding: 14px;
  }

  footer {
    padding: 24px 0;
  }

  .footer-links {
    gap: 8px 16px;
  }
}

@media (max-width: 480px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card {
    padding: 10px;
    border-radius: 12px;
  }

  .card img {
    border-radius: 8px;
  }

  .card h3 {
    font-size: 0.88rem;
    margin: 8px 0 4px;
  }

  .card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  h2 {
    font-size: 1.3rem;
    padding-left: 12px;
  }

  nav ul {
    gap: 12px;
  }

  nav ul li a {
    font-size: 0.82rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  aside {
    padding: 20px;
  }

  .rating-list li {
    font-size: 0.82rem;
    padding: 8px 12px;
  }
}

/* ---------- 打印样式 ---------- */
@media print {
  header,
  footer,
  .btn,
  aside {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ---------- 无障碍与焦点样式 ---------- */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- 减少动画偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .card,
  section {
    opacity: 1 !important;
    transform: none !important;
  }
}
```