```css
/* ===== 全局变量与主题 ===== */
:root {
  --primary: #4A6CF7;
  --primary-dark: #3A5BD0;
  --primary-light: #6B4CFF;
  --bg-main: #F8F4FF;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-deep: #1A1A2E;
  --bg-nav: rgba(26, 26, 46, 0.9);
  --text-main: #1A1A2E;
  --text-light: #F5F0FF;
  --text-muted: #2D2D44;
  --border-color: rgba(74, 108, 247, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 30px;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-main: #0f0f1a;
    --bg-card: rgba(30, 30, 50, 0.9);
    --bg-deep: #12121f;
    --bg-nav: rgba(18, 18, 31, 0.95);
    --text-main: #e8e0f5;
    --text-light: #f0eaff;
    --text-muted: #b0a8c8;
    --border-color: rgba(108, 92, 231, 0.2);
    --shadow-sm: 0 4px 12px 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);
    --glass-bg: rgba(30, 30, 50, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.4s ease, color 0.4s ease;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

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

/* ===== 容器布局 ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* ===== 头部渐变Banner ===== */
header.bg-deep {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 40%, #4A6CF7 100%);
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  backdrop-filter: blur(10px);
}

header.bg-deep::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

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

header h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 20px rgba(74, 108, 247, 0.4);
  letter-spacing: -0.02em;
}

header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-top: 4px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* ===== 导航栏 ===== */
nav.bg-deep {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  justify-content: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  background: rgba(74, 108, 247, 0.2);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.nav-links a:hover::before {
  width: 60%;
}

.nav-links a:active {
  transform: scale(0.95);
}

/* ===== 主内容区域 ===== */
main.container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  padding-bottom: 40px;
}

main > section {
  flex: 2 1 70%;
  min-width: 280px;
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  perspective: 1000px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

.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; }

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 108, 247, 0.3);
}

.card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: linear-gradient(135deg, #e0d6f0, #f0eaff);
}

.card h3 {
  font-size: 1.1rem;
  margin: 12px 0 8px;
  color: var(--text-main);
  transition: var(--transition);
  line-height: 1.4;
}

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

.card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 4px 0;
  line-height: 1.5;
}

/* ===== 新番推荐卡片 ===== */
section[style*="grid-template-columns"] article {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
}

section[style*="grid-template-columns"] article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 108, 247, 0.3);
}

section[style*="grid-template-columns"] article img {
  border-radius: 12px;
  margin-bottom: 12px;
  transition: var(--transition);
}

section[style*="grid-template-columns"] article:hover img {
  transform: scale(1.02);
}

section[style*="grid-template-columns"] article h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

section[style*="grid-template-columns"] article p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== 专题文章 ===== */
article[style*="margin-top: 48px"] {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease both;
}

article[style*="margin-top: 48px"] h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 16px;
  color: var(--text-main);
  position: relative;
  padding-bottom: 12px;
}

article[style*="margin-top: 48px"] h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

article[style*="margin-top: 48px"] h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: var(--primary);
}

article[style*="margin-top: 48px"] p {
  line-height: 1.8;
  margin-bottom: 12px;
  color: var(--text-main);
}

article[style*="margin-top: 48px"] img {
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

/* ===== 角色卡片 ===== */
section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] div {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease both;
}

section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] div:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74, 108, 247, 0.3);
}

section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] img {
  border-radius: 12px;
  margin-bottom: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
}

section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] div:hover img {
  transform: scale(1.03);
}

section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

section[style*="grid-template-columns: repeat(auto-fill, minmax(220px, 1fr))"] p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 4px 0;
}

/* ===== 用户评价 ===== */
.review-item {
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  transition: var(--transition);
  animation: slideIn 0.5s ease both;
}

.review-item:hover {
  padding-left: 12px;
  border-bottom-color: var(--primary);
  background: rgba(74, 108, 247, 0.05);
}

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

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

/* ===== 侧边栏 ===== */
aside {
  flex: 1 1 25%;
  min-width: 240px;
}

.sidebar-card {
  background: var(--glass-bg);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease both;
}

.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 108, 247, 0.2);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-main);
  position: relative;
  padding-bottom: 8px;
}

.sidebar-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.sidebar-card ol,
.sidebar-card ul {
  padding-left: 20px;
}

.sidebar-card li {
  padding: 6px 0;
  color: var(--text-main);
  transition: var(--transition);
}

.sidebar-card li:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.sidebar-card p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===== Badge组件 ===== */
.badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  display: inline-block;
  margin: 2px;
  box-shadow: 0 2px 8px rgba(74, 108, 247, 0.3);
  transition: var(--transition);
  cursor: pointer;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.5);
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
  letter-spacing: 0.03em;
  text-align: center;
}

.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 {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.5);
  text-decoration: none;
  color: #fff;
}

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

.btn:active {
  transform: scale(0.95);
}

.btn[style*="background:#6B4CFF"] {
  background: linear-gradient(135deg, #6B4CFF, #8B5CF6);
}

.btn[style*="background:#6B4CFF"]:hover {
  background: linear-gradient(135deg, #5A3CE0, #6B4CFF);
}

.btn[style*="background:#2D2D44"] {
  background: linear-gradient(135deg, #2D2D44, #1A1A2E);
}

.btn[style*="background:#2D2D44"]:hover {
  background: linear-gradient(135deg, #3D3D54, #2D2D44);
}

/* ===== APP下载区块 ===== */
section[style*="background:#FFFFFF"] {
  background: var(--bg-card) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

section[style*="background:#FFFFFF"]::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.1) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
}

section[style*="background:#FFFFFF"] h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

section[style*="background:#FFFFFF"] p {
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 600px;
}

section[style*="background:#FFFFFF"] .btn {
  margin-right: 12px;
  margin-bottom: 12px;
}

/* ===== 页脚 ===== */
footer.bg-deep {
  background: var(--bg-deep);
  padding: 40px 0 24px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}

footer.bg-deep::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 108, 247, 0.5), transparent);
}

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

.footer-links a {
  color: rgba(245, 240, 255, 0.7);
  margin: 0;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(74, 108, 247, 0.2);
  text-decoration: none;
  transform: translateY(-2px);
}

footer p {
  color: rgba(245, 240, 255, 0.6);
  text-align: center;
  font-size: 0.85rem;
  margin-top: 16px;
  line-height: 1.8;
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

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

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

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

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

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

/* ===== 滚动观察动画 ===== */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .sidebar-card,
  article,
  section > div,
  section > article {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
  }
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  
  main.container {
    flex-direction: column;
  }
  
  aside {
    flex: 1 1 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  
  .sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  .nav-links {
    gap: 4px;
    padding: 8px 0;
  }
  
  .nav-links a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
  
  .card {
    padding: 10px;
  }
  
  .card h3 {
    font-size: 1rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  article[style*="margin-top: 48px"] {
    padding: 16px;
  }
  
  section[style*="grid-template-columns"] article {
    padding: 12px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  section[style*="background:#FFFFFF"] .btn {
    display: block;
    margin: 8px auto;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
  
  .card {
    border-radius: 12px;
    padding: 8px;
  }
  
  .card h3 {
    font-size: 0.95rem;
  }
  
  aside {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    margin: 2px 0;
  }
  
  article[style*="margin-top: 48px"] h2 {
    font-size: 1.3rem;
  }
  
  article[style*="margin-top: 48px"] h3 {
    font-size: 1.1rem;
  }
}

/* ===== 打印样式 ===== */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  
  .btn,
  .nav-links,
  .footer-links {
    display: none;
  }
  
  .card,
  .sidebar-card,
  article {
    box-shadow: none;
    border: 1px solid #ddd;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none;
    opacity: 1;
  }
}

/* ===== 无障碍 ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== 工具类 ===== */
.text-center {
  text-align: center;
}

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

/* 毛玻璃效果增强 */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
```