```css
:root {
  /* 萌喵漫画主题色 - 治愈系粉紫渐变 */
  --primary: #FF6B9D;
  --primary-light: #FF8FB3;
  --primary-dark: #E84A7A;
  --secondary: #9B6BFF;
  --secondary-light: #B79CFF;
  --secondary-dark: #7B4FE0;
  --accent: #FFD93D;
  --bg: #FDF6F9;
  --bg-alt: #F8F0F5;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --text: #2D1B2E;
  --text-secondary: #5A4A5E;
  --text-muted: #8A7B8E;
  --border: #F0D9E5;
  --border-light: #F8E8F0;
  --shadow-sm: 0 2px 8px rgba(255, 107, 157, 0.06);
  --shadow-md: 0 4px 20px rgba(155, 107, 255, 0.08);
  --shadow-lg: 0 8px 32px rgba(255, 107, 157, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --blur: blur(16px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1A1020;
    --bg-alt: #241630;
    --bg-card: #2D1B3A;
    --bg-elevated: #3A254A;
    --text: #F5E8F8;
    --text-secondary: #CBB2D4;
    --text-muted: #9A85A3;
    --border: #3D2A4A;
    --border-light: #332040;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --primary: #FF8FB3;
    --primary-light: #FFA8C5;
    --primary-dark: #E86A9B;
    --secondary: #B79CFF;
    --secondary-light: #CCB8FF;
    --secondary-dark: #9B7BE8;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-alt);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  border: 2px solid var(--bg-alt);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

/* 链接 */
a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* 标题 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* 头部导航 */
header {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-light);
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

nav a:hover::after {
  width: 60%;
}

/* 主内容区 */
main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}

/* 卡片网格 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* 卡片 */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  animation: fadeInUp 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

.card:nth-child(1) { --i: 0; }
.card:nth-child(2) { --i: 1; }
.card:nth-child(3) { --i: 2; }
.card:nth-child(4) { --i: 3; }
.card:nth-child(5) { --i: 4; }
.card:nth-child(6) { --i: 5; }
.card:nth-child(7) { --i: 6; }
.card:nth-child(8) { --i: 7; }
.card:nth-child(9) { --i: 8; }
.card:nth-child(10) { --i: 9; }
.card:nth-child(11) { --i: 10; }
.card:nth-child(12) { --i: 11; }

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

.card img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-alt);
  transition: transform 0.5s ease;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 1rem 1.2rem 1.2rem;
  background: var(--bg-card);
  color: var(--text);
  position: relative;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

/* 徽章 */
.badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.score {
  color: var(--accent);
  font-weight: 700;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* 侧边栏 */
aside {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

aside h2 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
  display: block;
}

aside h2::after {
  display: none;
}

aside ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

aside li {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

aside li:hover {
  background: var(--bg-alt);
  padding-left: 1.2rem;
  color: var(--primary);
}

/* 数据统计卡片 */
.data-stats {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.data-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.data-stats p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.data-stats span {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* 评论区 */
.comment-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comment-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  color: var(--text);
  transition: var(--transition);
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-item:hover {
  background: var(--bg-alt);
  padding-left: 1rem;
  border-radius: var(--radius-sm);
}

.comment-item strong {
  color: var(--primary);
  font-weight: 600;
}

.comment-item time {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 1rem;
}

.comment-item p {
  margin-top: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* 按钮 */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  margin: 0.3rem 0.2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  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 {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 107, 255, 0.4);
  color: #fff;
}

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

/* 页脚 */
footer {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--text-secondary);
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-light);
}

footer a {
  color: var(--secondary);
  margin: 0 0.3rem;
  transition: color 0.2s ease;
}

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

footer p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.friend-links a {
  margin: 0 0.8rem;
  font-size: 0.95rem;
  position: relative;
}

.friend-links a::after {
  content: '·';
  position: absolute;
  right: -0.9rem;
  color: var(--text-muted);
}

.friend-links a:last-child::after {
  display: none;
}

/* 深度推荐区域 */
article {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

article img {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
}

article p {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

article strong {
  color: var(--text);
  font-weight: 600;
}

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

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* 滚动进入动画 */
section, article, aside {
  animation: fadeInUp 0.8s ease both;
}

section:nth-child(2), article:nth-child(3) {
  animation-delay: 0.2s;
}

section:nth-child(4), article:nth-child(5) {
  animation-delay: 0.4s;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  main {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 992px) {
  main {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  aside {
    position: static;
    max-height: none;
    margin-top: 2rem;
  }
  
  header {
    padding: 1rem;
  }
  
  nav ul {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  
  nav ul {
    justify-content: center;
    gap: 0.5rem;
  }
  
  nav a {
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  main {
    padding: 1rem;
    gap: 2rem;
  }
  
  .content {
    gap: 2rem;
  }
  
  article, .comment-list {
    padding: 1.5rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
  
  footer {
    padding: 1.5rem 1rem;
  }
  
  .friend-links a {
    display: inline-block;
    margin: 0.3rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .card-body {
    padding: 0.8rem;
  }
  
  .card-body h3 {
    font-size: 0.9rem;
  }
  
  .card-body p {
    font-size: 0.75rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  
  aside {
    padding: 1.2rem;
  }
  
  .data-stats p {
    font-size: 0.85rem;
  }
  
  .data-stats span {
    font-size: 0.95rem;
  }
}

/* 暗色模式微调 */
@media (prefers-color-scheme: dark) {
  .card, aside, article, .comment-list {
    background: var(--bg-card);
    border-color: var(--border);
  }
  
  .badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  }
  
  .btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  }
  
  .data-stats {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  }
  
  nav a:hover {
    background: var(--bg-alt);
  }
  
  .comment-item:hover {
    background: var(--bg-alt);
  }
}

/* 减少动画偏好 */
@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;
  }
}

/* 其他细节 */
img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* 页面顶部渐变横幅效果 */
main::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  z-index: 1001;
  pointer-events: none;
}

/* 毛玻璃效果增强 */
@supports (backdrop-filter: blur(16px)) or (-webkit-backdrop-filter: blur(16px)) {
  header, aside {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
  }
}

/* 打印样式 */
@media print {
  header, aside, footer, .btn {
    display: none;
  }
  
  main {
    display: block;
    padding: 0;
  }
  
  .content {
    gap: 1rem;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  body {
    background: #fff;
    color: #000;
  }
}
```