```css
/* ===== CSS变量与主题系统 ===== */
:root {
  /* 主色调 - 紫色系 */
  --primary: #9b59b6;
  --primary-dark: #6a0dad;
  --primary-light: #e0b0ff;
  --primary-gradient: linear-gradient(135deg, #9b59b6, #6a0dad);
  --secondary: #2d1b4e;
  --secondary-light: #4a2c88;
  --accent: #ff6b9d;
  --accent-gradient: linear-gradient(135deg, #ff6b9d, #c44569);

  /* 中性色 */
  --bg-main: #f5f5ff;
  --bg-card: #ffffff;
  --bg-soft: #faf5ff;
  --bg-hover: #f0e6ff;
  --border-light: #ead9ff;
  --border-medium: #d4b5ff;

  /* 文字色 */
  --text-primary: #2d1b4e;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-light: #b8a0d8;
  --text-white: #ffffff;

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(106, 13, 173, 0.08);
  --shadow-md: 0 4px 20px rgba(106, 13, 173, 0.12);
  --shadow-lg: 0 10px 40px rgba(106, 13, 173, 0.15);
  --shadow-hover: 0 15px 35px rgba(106, 13, 173, 0.2);

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* 渐变背景 */
  --gradient-header: linear-gradient(135deg, #2d1b4e, #4a2c88);
  --gradient-download: linear-gradient(135deg, #f0e6ff, #e0c8ff);
  --gradient-banner: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  /* 毛玻璃效果 */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-blur: blur(20px);

  /* 动画 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 暗色模式 */
[data-theme="dark"] {
  --bg-main: #1a1a2e;
  --bg-card: #16213e;
  --bg-soft: #1f1f3a;
  --bg-hover: #2d2d4a;
  --border-light: #3a3a5c;
  --border-medium: #4a4a6a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --text-light: #8888aa;
  --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 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.6);
  --glass-bg: rgba(30, 30, 60, 0.85);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

body {
  font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  transition: background var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

/* 暗色模式自动切换 */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-main: #1a1a2e;
    --bg-card: #16213e;
    --bg-soft: #1f1f3a;
    --bg-hover: #2d2d4a;
    --border-light: #3a3a5c;
    --border-medium: #4a4a6a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --text-light: #8888aa;
    --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 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.6);
    --glass-bg: rgba(30, 30, 60, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

a {
  text-decoration: none;
  color: var(--primary-dark);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal), filter var(--transition-normal);
}

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

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
}

/* ===== 顶部导航 ===== */
.site-header {
  background: var(--gradient-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(45, 27, 78, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.logo h1 {
  font-size: 2.2rem;
  color: var(--text-white);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(155, 89, 182, 0.8);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.logo h1:hover {
  transform: scale(1.05);
}

.logo h1 span {
  color: var(--primary-light);
  -webkit-text-fill-color: var(--primary-light);
}

.main-nav ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  transform: translateY(-2px);
}

.main-nav a:hover::before {
  width: 70%;
}

/* ===== 主区域布局 ===== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  margin: 30px 0;
}

@media (max-width: 992px) {
  .main-content {
    grid-template-columns: 1fr;
  }
}

/* ===== 内容区 ===== */
.content-area {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.section {
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.section-title::before {
  content: '◆';
  color: var(--primary);
  animation: pulse 2s infinite;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent-gradient);
  animation: slideRight 3s ease-in-out infinite;
}

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

@keyframes slideRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(50px); }
  100% { transform: translateX(0); }
}

/* ===== 漫画网格 ===== */
.comic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.comic-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
}

.comic-card::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 var(--transition-slow);
  z-index: 1;
}

.comic-card:hover::before {
  left: 100%;
}

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

.comic-card .cover {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.comic-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.comic-card:hover .cover img {
  transform: scale(1.08);
}

.comic-info {
  padding: 15px;
  position: relative;
  z-index: 2;
}

.comic-info h3 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.comic-info .meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3px;
  line-height: 1.4;
}

.comic-info .tag {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--text-white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
  transition: all var(--transition-normal);
}

.comic-card:hover .tag {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(155, 89, 182, 0.4);
}

/* ===== 侧边栏 ===== */
.sidebar {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: var(--shadow-lg);
  height: fit-content;
  position: sticky;
  top: 90px;
  transition: all var(--transition-normal);
}

.widget {
  margin-bottom: 30px;
  animation: fadeInUp var(--transition-slow);
}

.widget-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px dashed var(--border-medium);
  position: relative;
  padding-left: 15px;
}

.widget-title::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.rank-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.rank-list li:last-child {
  border-bottom: none;
}

.rank-list li:hover {
  background: var(--bg-soft);
  padding-left: 10px;
  border-radius: var(--radius-sm);
}

.rank-num {
  width: 30px;
  height: 30px;
  background: var(--primary-gradient);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

.rank-list li:nth-child(1) .rank-num {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.rank-list li:nth-child(2) .rank-num {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
}

.rank-list li:nth-child(3) .rank-num {
  background: linear-gradient(135deg, #cd7f32, #b87333);
}

.stats-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-item {
  background: var(--bg-soft);
  padding: 15px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1px solid transparent;
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.stat-item .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== 底部 ===== */
.site-footer {
  background: var(--gradient-header);
  color: var(--text-light);
  padding: 40px 0 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.footer-links a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.copyright p {
  margin-bottom: 5px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  background: var(--primary-gradient);
  color: var(--text-white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-normal);
}

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

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
  color: var(--text-white);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 10px 25px rgba(155, 89, 182, 0.3);
}

/* ===== 角色卡片 ===== */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.character-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.character-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}

.character-card:hover::after {
  transform: scaleX(1);
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.character-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 15px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.2);
}

.character-card:hover img {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.3);
}

.character-card h4 {
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.character-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

/* ===== 评论 ===== */
.comment-item {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  transition: all var(--transition-normal);
  animation: fadeInUp var(--transition-normal);
}

.comment-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  background: var(--bg-hover);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.comment-user {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-user::before {
  content: '👤';
  font-size: 1rem;
}

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

.comment-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== 详细介绍 ===== */
.detail-section {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-top: 20px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

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

.detail-section h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
  position: relative;
  padding-left: 15px;
}

.detail-section h3::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.detail-section p {
  margin-bottom: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: justify;
}

.detail-section p:last-child {
  margin-bottom: 0;
}

/* ===== 下载区 ===== */
.download-area {
  background: var(--gradient-download);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-area::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%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.download-area h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-area p {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* ===== 平台特性 ===== */
.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.feature-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 15px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.feature-item:hover::before {
  opacity: 0.05;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-item .icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
  transition: transform var(--transition-normal);
}

.feature-item:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

.feature-item h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

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

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

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

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

/* 滚动进入动画 */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
  .comic-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 992px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .main-nav ul {
    justify-content: center;
  }

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

  .sidebar {
    position: static;
    padding: 15px;
  }

  .download-area {
    padding: 25px;
  }

  .download-area h3 {
    font-size: 1.5rem;
  }

  .section {
    margin-bottom: 30px;
  }

  .content-area {
    padding: 15px;
  }

  .character-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .platform-features {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .stats-box {
    grid-template-columns: 1fr 1fr;
  }

  .logo h1 {
    font-size: 1.8rem;
  }

  .main-nav a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

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

  .comic-card .cover {
    height: 180px;
  }

  .comic-info {
    padding: 10px;
  }

  .comic-info h3 {
    font-size: 0.95rem;
  }

  .comic-info .meta {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .footer-links {
    gap: 10px;
    justify-content: center;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .character-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .character-card {
    padding: 15px;
  }

  .character-card img {
    width: 80px;
    height: 80px;
  }

  .stats-box {
    gap: 8px;
  }

  .stat-item {
    padding: 10px;
  }

  .stat-item .num {
    font-size: 1.2rem;
  }
}

/* ===== 打印样式 ===== */
@media print {
  .site-header,
  .sidebar,
  .site-footer,
  .download-area,
  .btn {
    display: none;
  }

  .main-content {
    display: block;
  }

  .content-area {
    box-shadow: none;
    padding: 0;
  }

  body {
    background: white;
  }
}

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

/* ===== 额外增强 ===== */
/* 毛玻璃效果应用于卡片 */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* 渐变边框 */
.gradient-border {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--primary-gradient) border-box;
}

/* 悬浮提升 */
.hover-lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* 文字渐变 */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 呼吸动画 */
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.breathe {
  animation: breathe 3s ease-in-out infinite;
}

/* 闪烁动画 */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background-size: 1000px 100%;
  animation: shimmer 2s linear infinite;
}
```