```css
/* ===== 爱趣漫画 全局样式 ===== */
:root {
  --primary: #6B4CFF;
  --primary-light: #4A6CF7;
  --primary-gradient: linear-gradient(135deg, #6B4CFF 0%, #4A6CF7 50%, #8B5CF6 100%);
  --bg: #F8F4FF;
  --bg-dark: #0F0F1A;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(26, 26, 46, 0.85);
  --text: #1A1A2E;
  --text-light: #F5F0FF;
  --text-muted: #2D2D44;
  --border-radius: 24px;
  --shadow: 0 8px 32px rgba(26, 26, 46, 0.12);
  --shadow-hover: 0 12px 40px rgba(107, 76, 255, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F0F1A;
    --card-bg: rgba(26, 26, 46, 0.9);
    --text: #F5F0FF;
    --text-muted: #C4B5FD;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(26, 26, 46, 0.7);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

/* ===== 滚动动画 ===== */
@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(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

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

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

/* ===== Header 样式 ===== */
header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

header .badge {
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.3);
  animation: pulse 2s infinite;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

header nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  transition: var(--transition);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

header nav a:hover {
  background: var(--primary-gradient);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(107, 76, 255, 0.4);
  border-color: transparent;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
  transform: translateX(-50%);
}

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

/* ===== Main 布局 ===== */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  animation: fadeInUp 0.6s ease;
}

@media (max-width: 1024px) {
  main {
    grid-template-columns: 1fr;
  }
  
  aside {
    order: -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 16px;
    gap: 16px;
  }
  
  header {
    padding: 12px 16px;
    justify-content: center;
    text-align: center;
  }
  
  header nav {
    justify-content: center;
    gap: 4px;
  }
  
  header nav a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* ===== 卡片通用样式 ===== */
section, article, aside > div {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

section:hover, article:hover, aside > div:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

section::before, article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition);
}

section:hover::before, article:hover::before {
  opacity: 1;
}

/* 标题样式 */
h2 {
  color: var(--text);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  border-left: 6px solid var(--primary);
  padding-left: 16px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

h3 {
  color: var(--text);
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== 动漫卡片网格 ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
}

.anime-card {
  background: rgba(245, 240, 255, 0.8);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.anime-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(107, 76, 255, 0.25);
}

.anime-card img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

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

.anime-card .info {
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.anime-card:hover .info {
  background: rgba(255, 255, 255, 0.95);
}

.anime-card .rating {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFD700;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

/* ===== 新番推荐网格 ===== */
.new-season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 480px) {
  .new-season-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.new-season-card {
  background: rgba(245, 240, 255, 0.8);
  border-radius: 16px;
  padding: 12px;
  transition: var(--transition);
  cursor: pointer;
}

.new-season-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.2);
}

.new-season-card img {
  border-radius: 8px;
  transition: var(--transition);
}

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

/* ===== 文章样式 ===== */
article {
  line-height: 1.8;
}

article p {
  margin: 12px 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

article .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

article .tags span {
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

article .tags span:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 76, 255, 0.3);
}

/* ===== 角色卡片 ===== */
.character-card {
  background: rgba(245, 240, 255, 0.8);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.character-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.2);
}

.character-card img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--primary);
  transition: var(--transition);
}

.character-card:hover img {
  border-color: var(--primary-light);
  transform: scale(1.05);
}

/* ===== 平台优势 ===== */
.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-item {
  background: rgba(245, 240, 255, 0.8);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.2);
}

.feature-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ===== APP下载区域 ===== */
.download-section {
  background: var(--primary-gradient);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  border-radius: var(--border-radius);
  padding: 24px;
  color: #FFFFFF;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.download-section h2 {
  color: #FFFFFF;
  border-left-color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
}

.download-section p {
  color: rgba(255, 255, 255, 0.9);
}

.download-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.download-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ===== 用户评论 ===== */
.comment-item {
  background: rgba(245, 240, 255, 0.8);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}

.comment-item:hover {
  background: rgba(245, 240, 255, 0.95);
  border-left-color: var(--primary);
  transform: translateX(4px);
}

.comment-item strong {
  color: var(--primary);
  margin-right: 8px;
}

/* ===== 侧边栏 ===== */
aside > div {
  animation: slideInLeft 0.5s ease;
  animation-fill-mode: both;
}

aside > div:nth-child(1) { animation-delay: 0.1s; }
aside > div:nth-child(2) { animation-delay: 0.2s; }
aside > div:nth-child(3) { animation-delay: 0.3s; }
aside > div:nth-child(4) { animation-delay: 0.4s; }

aside h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
}

aside ul {
  list-style: none;
  padding: 0;
}

aside ul li {
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 4px;
}

aside ul li:hover {
  background: rgba(107, 76, 255, 0.1);
  transform: translateX(4px);
  color: var(--primary);
}

aside ul li::before {
  content: '▸ ';
  color: var(--primary);
}

/* ===== Footer ===== */
footer {
  background: #1A1A2E;
  color: var(--text-light);
  padding: 30px 24px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

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

footer a {
  color: #A9B8FF;
  transition: var(--transition);
}

footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

footer .copyright {
  color: rgba(245, 240, 255, 0.8);
  font-size: 0.85rem;
}

/* ===== 响应式优化 ===== */
@media (max-width: 768px) {
  h2 {
    font-size: 1.4rem;
    padding-left: 12px;
  }
  
  section, article, aside > div {
    padding: 16px;
    border-radius: 16px;
  }
  
  .download-section {
    padding: 16px;
  }
  
  .download-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  footer {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.3rem;
  }
  
  header .badge {
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  
  .anime-card .info {
    padding: 8px;
  }
  
  .anime-card h3 {
    font-size: 0.95rem;
  }
  
  .anime-card p {
    font-size: 0.75rem;
  }
}

/* ===== 动画增强 ===== */
@media (prefers-reduced-motion: no-preference) {
  section, article, aside > div {
    animation: fadeInUp 0.6s ease both;
  }
  
  section:nth-child(2) { animation-delay: 0.1s; }
  section:nth-child(3) { animation-delay: 0.2s; }
  section:nth-child(4) { animation-delay: 0.3s; }
  section:nth-child(5) { animation-delay: 0.4s; }
  section:nth-child(6) { animation-delay: 0.5s; }
  section:nth-child(7) { animation-delay: 0.6s; }
}

/* ===== 工具类 ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

/* ===== 暗色模式适配 ===== */
@media (prefers-color-scheme: dark) {
  .anime-card, .new-season-card, .character-card, .comment-item, .feature-item {
    background: rgba(26, 26, 46, 0.8);
  }
  
  .anime-card .info {
    background: rgba(26, 26, 46, 0.9);
  }
  
  .anime-card:hover .info {
    background: rgba(26, 26, 46, 0.95);
  }
  
  header {
    background: rgba(15, 15, 26, 0.95);
  }
  
  footer {
    background: #0F0F1A;
  }
  
  .download-section {
    background: var(--primary-gradient);
  }
  
  aside ul li:hover {
    background: rgba(107, 76, 255, 0.2);
  }
}

/* ===== 加载动画 ===== */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.loading {
  background: linear-gradient(90deg, rgba(245,240,255,0) 0%, rgba(245,240,255,0.5) 50%, rgba(245,240,255,0) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* ===== 滚动进度条 ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 1001;
  transition: width 0.2s ease;
}

/* ===== 回到顶部按钮 ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(107, 76, 255, 0.3);
  transition: var(--transition);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107, 76, 255, 0.4);
}

.back-to-top::before {
  content: '↑';
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: bold;
}

/* ===== 图片懒加载占位 ===== */
img[loading="lazy"] {
  background: linear-gradient(90deg, rgba(245,240,255,0.3) 0%, rgba(245,240,255,0.6) 50%, rgba(245,240,255,0.3) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ===== 打印样式 ===== */
@media print {
  header, footer, aside, .back-to-top, .download-section {
    display: none !important;
  }
  
  main {
    display: block;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  section, article {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
```