```css
/* ============================================
   漫蛙漫画 - 完整样式表
   风格：奇幻紫罗兰 + 现代卡片式设计
   包含：响应式布局、暗色模式、滚动动画、hover效果
   ============================================ */

/* ===== CSS 变量与主题系统 ===== */
:root {
  /* 主色调 - 奇幻紫 */
  --primary: #6B4CFF;
  --primary-light: #9B7BFF;
  --primary-dark: #4A2FD6;
  --primary-gradient: linear-gradient(135deg, #6B4CFF 0%, #9B7BFF 100%);
  --primary-gradient-reverse: linear-gradient(135deg, #9B7BFF 0%, #6B4CFF 100%);
  
  /* 辅助色 */
  --accent: #FF6B9D;
  --accent-light: #FFA8C5;
  --success: #00C896;
  --warning: #FFB800;
  --danger: #FF4757;
  
  /* 背景色 */
  --bg-body: #F8F4FF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F3EDFF;
  --bg-section: #FFFFFF;
  --bg-sidebar: #FFFFFF;
  --bg-tag: #F0EBFF;
  
  /* 文字颜色 */
  --text-primary: #1A1A2E;
  --text-secondary: #4A4A6A;
  --text-muted: #6E6E8E;
  --text-on-dark: #FFFFFF;
  --text-heading: #0D0820;
  
  /* 边框与阴影 */
  --border-color: rgba(107, 76, 255, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(107, 76, 255, 0.12);
  --shadow-lg: 0 8px 32px rgba(107, 76, 255, 0.18);
  --shadow-hover: 0 12px 40px rgba(107, 76, 255, 0.25);
  
  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  
  /* 间距 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* 字体 */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 28px;
  --font-size-3xl: 36px;
  
  /* 布局 */
  --container-max: 1280px;
  --nav-height: 64px;
  
  /* 动画 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --animation-duration: 0.6s;
  
  /* 毛玻璃效果 */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-blur: 20px;
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  
  /* 暗色模式变量 */
  --dark-bg-body: #0D0820;
  --dark-bg-card: #1A1530;
  --dark-bg-card-hover: #241D40;
  --dark-bg-section: #1A1530;
  --dark-bg-sidebar: #1A1530;
  --dark-bg-tag: rgba(107, 76, 255, 0.2);
  --dark-text-primary: #E8E6F0;
  --dark-text-secondary: #B0AAC8;
  --dark-text-muted: #8A84A8;
  --dark-text-heading: #FFFFFF;
  --dark-border-color: rgba(155, 123, 255, 0.2);
  --dark-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --dark-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --dark-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --dark-glass-bg: rgba(26, 21, 48, 0.85);
}

/* ===== 暗色模式 ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-body: var(--dark-bg-body);
    --bg-card: var(--dark-bg-card);
    --bg-card-hover: var(--dark-bg-card-hover);
    --bg-section: var(--dark-bg-section);
    --bg-sidebar: var(--dark-bg-sidebar);
    --bg-tag: var(--dark-bg-tag);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
    --text-muted: var(--dark-text-muted);
    --text-heading: var(--dark-text-heading);
    --border-color: var(--dark-border-color);
    --shadow-sm: var(--dark-shadow-sm);
    --shadow-md: var(--dark-shadow-md);
    --shadow-lg: var(--dark-shadow-lg);
    --glass-bg: var(--dark-glass-bg);
  }
  
  img {
    filter: brightness(0.9) contrast(1.05);
  }
  
  .banner-gradient {
    background: linear-gradient(135deg, #4A2FD6 0%, #6B4CFF 50%, #9B7BFF 100%) !important;
  }
  
  .app-section {
    background: linear-gradient(135deg, #4A2FD6 0%, #6B4CFF 50%, #9B7BFF 100%) !important;
  }
}

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

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: var(--font-size-md);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== 滚动条样式 ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-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.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

/* 滚动进入动画 */
section, aside, footer {
  animation: fadeInUp var(--animation-duration) ease-out both;
}

section:nth-child(even) {
  animation-name: fadeIn;
}

/* ===== 主容器 ===== */
main {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

/* ===== 顶部导航 ===== */
header {
  background-color: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: var(--glass-border);
  transition: all var(--transition-normal);
}

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

nav {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: 1px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition-normal);
}

.logo-text:hover {
  transform: scale(1.02);
}

nav ul {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

nav ul li a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

nav ul li a:hover::after {
  width: 100%;
}

/* ===== 横幅Banner ===== */
.banner-gradient {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  margin-bottom: 40px;
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.banner-gradient:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.banner-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.banner-gradient::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.banner-gradient h1 {
  font-size: var(--font-size-3xl);
  margin: 0 0 12px 0;
  color: var(--text-on-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-weight: 900;
}

.banner-gradient p {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
  max-width: 700px;
  color: var(--text-on-dark);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

/* ===== 区块标题 ===== */
.section-title {
  font-size: var(--font-size-2xl);
  color: var(--text-heading);
  border-left: 6px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
  transition: color var(--transition-normal);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  opacity: 0.6;
}

/* ===== 热门漫画卡片 ===== */
.comics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.comic-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  border: 1px solid transparent;
}

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

.comic-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

.comic-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.comic-card-content {
  padding: 16px;
  background: var(--bg-card);
  transition: background var(--transition-normal);
}

.comic-card:hover .comic-card-content {
  background: var(--bg-card-hover);
}

.comic-card h3 {
  font-size: 18px;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 700;
  transition: color var(--transition-fast);
}

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

.comic-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.5;
}

.comic-card p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.tag {
  display: inline-block;
  background: var(--bg-tag);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  margin-top: 8px;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.comic-card:hover .tag {
  background: var(--primary);
  color: var(--text-on-dark);
  border-color: var(--primary);
  transform: scale(1.05);
}

/* ===== 精品推荐 ===== */
.recommend-section {
  background: var(--bg-section);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.recommend-card {
  background: var(--bg-body);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.recommend-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.recommend-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-normal);
}

.recommend-card:hover img {
  transform: scale(1.03);
}

.recommend-card h3 {
  font-size: 18px;
  color: var(--text-heading);
  margin: 12px 0 8px 0;
  font-weight: 700;
}

.recommend-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ===== 详细介绍 ===== */
.intro-section {
  background: var(--bg-section);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.intro-section article h3 {
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

.intro-section article h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.intro-section article p {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

.intro-section article p strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ===== 角色介绍 ===== */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.character-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.character-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
  background: var(--bg-card-hover);
}

.character-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid var(--primary);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.3);
}

.character-card:hover img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.4);
}

.character-card h3 {
  font-size: 20px;
  color: var(--text-heading);
  margin-bottom: 4px;
  font-weight: 700;
}

.character-card p {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.character-card p strong {
  color: var(--text-primary);
}

.character-card > p:last-of-type {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== 平台介绍 ===== */
.platform-section {
  background: var(--bg-section);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.platform-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.platform-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.platform-item h3 {
  font-size: 20px;
  color: var(--text-heading);
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-item h3::before {
  content: '◆';
  color: var(--primary);
  font-size: 16px;
}

.platform-item p {
  font-size: var(--font-size-md);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== APP下载区域 ===== */
.app-section {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  animation: gradientMove 6s ease infinite;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  color: var(--text-on-dark);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.app-section:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.01);
}

.app-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: float 8s ease-in-out infinite;
}

.app-section h2 {
  font-size: 32px;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.app-section p {
  font-size: 18px;
  color: var(--text-on-dark);
  max-width: 600px;
  margin: 0 auto 32px auto;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  opacity: 0.95;
}

.app-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.app-button {
  display: inline-block;
  background: var(--text-on-dark);
  color: var(--text-heading);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-md);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.app-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background: var(--primary-light);
  color: var(--text-on-dark);
}

.app-button-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid var(--text-on-dark);
  box-shadow: none;
}

.app-button-outline:hover {
  background: var(--text-on-dark);
  color: var(--primary);
  transform: translateY(-3px) scale(1.05);
}

/* ===== 用户评论 ===== */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.comment-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
}

.comment-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 48px;
  color: var(--primary);
  opacity: 0.3;
  font-family: Georgia, serif;
  transition: opacity var(--transition-normal);
}

.comment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-color);
  background: var(--bg-card-hover);
}

.comment-card:hover::before {
  opacity: 0.6;
}

.comment-card p:first-of-type {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
  font-style: italic;
}

.comment-card p:not(:first-of-type) {
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  margin: 0;
}

.comment-card p:last-of-type {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== 侧边栏 ===== */
.sidebar {
  background: var(--bg-sidebar);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.sidebar:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-item {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-body);
  transition: all var(--transition-normal);
}

.sidebar-item:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.sidebar-item h3 {
  font-size: 20px;
  color: var(--text-heading);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-item h3::before {
  content: '📊';
  font-size: 18px;
}

.sidebar-item:nth-child(2) h3::before {
  content: '📈';
}

.sidebar-item:nth-child(3) h3::before {
  content: '📚';
}

.sidebar-item ol {
  padding-left: 20px;
  color: var(--text-secondary);
}

.sidebar-item ol li {
  margin-bottom: 8px;
  font-size: 15px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  cursor: default;
}

.sidebar-item ol li:hover {
  background: var(--bg-tag);
  color: var(--primary);
  padding-left: 12px;
  transform: translateX(4px);
}

.sidebar-item ol li::marker {
  color: var(--primary);
  font-weight: bold;
}

.sidebar-item ul {
  color: var(--text-secondary);
}

.sidebar-item ul li {
  margin-bottom: 12px;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-item ul li:hover {
  background: var(--bg-tag);
  transform: translateX(4px);
}

.sidebar-item ul li strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ===== 页脚 ===== */
footer {
  background: var(--dark-bg-body);
  color: var(--text-on-dark);
  padding: 40px 24px 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-item h4 {
  font-size: 18px;
  color: var(--text-on-dark);
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.footer-item h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.footer-item ul li {
  margin-bottom: 8px;
}

.footer-item ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-item ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-item p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-bottom p {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ===== 毛玻璃效果 ===== */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  :root {
    --font-size-3xl: 32px;
    --font-size-2xl: 24px;
  }
  
  .comics-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }
  
  .recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-3xl: 28px;
    --font-size-2xl: 22px;
    --font-size-xl: 20px;
    --space-2xl: 32px;
  }
  
  nav {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav ul {
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  nav ul li {
    flex-shrink: 0;
  }
  
  nav ul li a {
    font-size: 14px;
    white-space: nowrap;
  }
  
  .banner-gradient {
    padding: 32px 20px;
    border-radius: var(--radius-md);
  }
  
  .banner-gradient h1 {
    font-size: 24px;
  }
  
  .banner-gradient p {
    font-size: 16px;
  }
  
  .comics-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .comic-card img {
    height: 200px;
  }
  
  .comic-card h3 {
    font-size: 16px;
  }
  
  .recommend-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
  }
  
  .recommend-card img {
    height: 180px;
  }
  
  .characters-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  
  .character-card {
    padding: 16px;
  }
  
  .character-card img {
    width: 100px;
    height: 100px;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .app-section {
    padding: 32px 20px;
  }
  
  .app-section h2 {
    font-size: 24px;
  }
  
  .app-section p {
    font-size: 16px;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .app-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .comments-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  main {
    padding: 16px 12px;
  }
  
  .section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .intro-section, .recommend-section, .platform-section {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-3xl: 24px;
    --font-size-2xl: 20px;
    --font-size-xl: 18px;
  }
  
  .logo-text {
    font-size: 24px;
  }
  
  nav ul {
    gap: 12px;
  }
  
  nav ul li a {
    font-size: 13px;
  }
  
  .banner-gradient {
    padding: 24px 16px;
  }
  
  .banner-gradient h1 {
    font-size: 20px;
  }
  
  .banner-gradient p {
    font-size: 14px;
  }
  
  .comics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .comic-card img {
    height: 160px;
  }
  
  .comic-card-content {
    padding: 12px;
  }
  
  .comic-card h3 {
    font-size: 14px;
  }
  
  .comic-card p {
    font-size: 12px;
  }
  
  .tag {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .recommend-card img {
    height: 200px;
  }
  
  .characters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .character-card {
    padding: 12px;
  }
  
  .character-card img {
    width: 80px;
    height: 80px;
  }
  
  .character-card h3 {
    font-size: 16px;
  }
  
  .character-card p {
    font-size: 12px;
  }
  
  .app-section {
    padding: 24px 16px;
  }
  
  .app-section h2 {
    font-size: 20px;
  }
  
  .app-section p {
    font-size: 14px;
  }
  
  .app-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .sidebar-item ol li, .sidebar-item ul li {
    font-size: 14px;
  }
  
  .footer-item p, .footer-item ul li a {
    font-size: 13px;
  }
}

/* ===== 暗色模式微调 ===== */
@media (prefers-color-scheme: dark) {
  .banner-gradient, .app-section {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .comic-card, .recommend-card, .character-card, .comment-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .comic-card:hover, .recommend-card:hover, .character-card:hover, .comment-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  }
  
  .sidebar-item ul li {
    background: var(--dark-bg-body);
  }
  
  .platform-item {
    background: var(--dark-bg-body);
  }
  
  .recommend-card, .sidebar-item {
    background: var(--dark-bg-body);
  }
  
  .recommend-card:hover, .sidebar-item:hover {
    background: var(--dark-bg-card-hover);
  }
  
  .character-card img {
    border-color: var(--primary-light);
  }
  
  .tag {
    background: var(--dark-bg-tag);
    color: var(--dark-text-primary);
  }
  
  .comic-card:hover .tag {
    background: var(--primary);
    color: var(--text-on-dark);
  }
  
  .sidebar-item ol li:hover {
    background: var(--dark-bg-tag);
  }
  
  .comment-card p:first-of-type {
    color: var(--dark-text-secondary);
  }
  
  .comment-card p:not(:first-of-type) {
    color: var(--dark-text-primary);
  }
  
  .comment-card p:last-of-type {
    color: var(--dark-text-muted);
  }
}

/* ===== 打印样式 ===== */
@media print {
  header, footer, .app-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  main {
    max-width: 100%;
    padding: 0;
  }
  
  .comic-card, .recommend-card, .character-card, .comment-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===== 无障碍支持 ===== */
@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;
  }
}

/* ===== 工具类 ===== */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: var(--primary-gradient);
}

.shadow-hover {
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.rounded-full {
  border-radius: var(--radius-full);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-md {
  border-radius: var(--radius-md);
}

/* ===== 隐藏滚动条但保留功能 ===== */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== 图片加载动画 ===== */
img.loading {
  background: linear-gradient(90deg, var(--bg-body) 0%, var(--bg-card-hover) 50%, var(--bg-body) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* ===== 链接hover效果 ===== */
a[href="#"] {
  position: relative;
}

a[href="#"]:hover {
  color: var(--primary);
}

/* ===== 标题hover效果 ===== */
h1:hover, h2:hover, h3:hover, h4:hover {
  text-shadow: 0 2px 8px rgba(107, 76, 255, 0.2);
}

/* ===== 卡片进入动画 ===== */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.comic-card, .recommend-card, .character-card, .comment-card {
  animation: cardFadeIn 0.5s ease-out both;
}

.comic-card:nth-child(1), .recommend-card:nth-child(1), .character-card:nth-child(1), .comment-card:nth-child(1) {
  animation-delay: 0.05s;
}

.comic-card:nth-child(2), .recommend-card:nth-child(2), .character-card:nth-child(2), .comment-card:nth-child(2) {
  animation-delay: 0.1s;
}

.comic-card:nth-child(3), .recommend-card:nth-child(3), .character-card:nth-child(3), .comment-card:nth-child(3) {
  animation-delay: 0.15s;
}

.comic-card:nth-child(4), .recommend-card:nth-child(4), .character-card:nth-child(4), .comment-card:nth-child(4) {
  animation-delay: 0.2s;
}

.comic-card:nth-child(5), .recommend-card:nth-child(5), .character-card:nth-child(5), .comment-card:nth-child(5) {
  animation-delay: 0.25s;
}

.comic-card:nth-child(6), .recommend-card:nth-child(6), .character-card:nth-child(6), .comment-card:nth-child(6) {
  animation-delay: 0.3s;
}

.comic-card:nth-child(7), .recommend-card:nth-child(7), .character-card:nth-child(7), .comment-card:nth-child(7) {
  animation-delay: 0.35s;
}

.comic-card:nth-child(8), .recommend-card:nth-child(8), .character-card:nth-child(8), .comment-card:nth-child(8) {
  animation-delay: 0.4s;
}

.comic-card:nth-child(9), .recommend-card:nth-child(9), .character-card:nth-child(9), .comment-card:nth-child(9) {
  animation-delay: 0.45s;
}

.comic-card:nth-child(10), .recommend-card:nth-child(10), .character-card:nth-child(10), .comment-card:nth-child(10) {
  animation-delay: 0.5s;
}

.comic-card:nth-child(11), .recommend-card:nth-child(11), .character-card:nth-child(11), .comment-card:nth-child(11) {
  animation-delay: 0.55s;
}

.comic-card:nth-child(12), .recommend-card:nth-child(12), .character-card:nth-child(12), .comment-card:nth-child(12) {
  animation-delay: 0.6s;
}

.comic-card:nth-child(13), .recommend-card:nth-child(13), .character-card:nth-child(13), .comment-card:nth-child(13) {
  animation-delay: 0.65s;
}

.comic-card:nth-child(14), .recommend-card:nth-child(14), .character-card:nth-child(14), .comment-card:nth-child(14) {
  animation-delay: 0.7s;
}

.comic-card:nth-child(15), .recommend-card:nth-child(15), .character-card:nth-child(15), .comment-card:nth-child(15) {
  animation-delay: 0.75s;
}

.comic-card:nth-child(16), .recommend-card:nth-child(16), .character-card:nth-child(16), .comment-card:nth-child(16) {
  animation-delay: 0.8s;
}

/* ===== 性能优化 ===== */
img {
  content-visibility: auto;
  contain: content;
}

.card {
  contain: layout paint;
}

/* ===== 结束 ===== */
```