```css
:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark: #5b21b6;
  --secondary: #ec4899;
  --accent: #06b6d4;
  --bg: #0f0f1a;
  --bg-card: rgba(30, 30, 50, 0.7);
  --bg-card-solid: #1e1e32;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #1a1a2e;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 48px rgba(124, 58, 237, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --blur: blur(20px);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3), rgba(6, 182, 212, 0.3));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  background-image: 
    radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

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

::-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 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);
  }
}

/* 滚动动画：元素进入视口时 */
section, aside, footer, header {
  animation: fadeInUp 0.8s ease-out both;
}

header {
  animation: fadeIn 0.5s ease-out 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;
}

section:nth-child(8) {
  animation-delay: 0.7s;
}

aside {
  animation-delay: 0.8s;
}

footer {
  animation-delay: 0.9s;
}

/* 渐变Banner */
header {
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

header h1 {
  font-size: 2rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
}

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

header ul li a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: inline-block;
}

header ul li a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* 圆角卡片 */
section {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

section:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(124, 58, 237, 0.3);
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

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

.comic-grid article {
  background: var(--bg-card-solid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.comic-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--primary);
}

.comic-grid article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.comic-grid article:hover img {
  transform: scale(1.05);
}

.comic-grid article h3 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.8rem 1rem 0.3rem;
  color: var(--text);
}

.comic-grid article p {
  padding: 0.1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.comic-grid article p:last-child {
  padding-bottom: 1rem;
}

.comic-grid article p:last-child {
  display: inline-block;
  background: var(--gradient-soft);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin: 0.3rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--primary-light);
  font-weight: 500;
}

/* 精品推荐 */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.recommend-grid article {
  background: var(--bg-card-solid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}

.recommend-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.recommend-grid article:hover::before {
  transform: scaleX(1);
}

.recommend-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.recommend-grid article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.recommend-grid article h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1rem 1.2rem 0.3rem;
}

.recommend-grid article p {
  padding: 0.2rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.recommend-grid article p:last-child {
  line-height: 1.6;
  padding-bottom: 1.2rem;
  color: var(--text);
  opacity: 0.9;
}

/* 漫画介绍 */
#intro article {
  background: var(--bg-card-solid);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

#intro article:hover {
  border-left-color: var(--secondary);
  transform: translateX(5px);
}

#intro h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
}

#intro p {
  margin-bottom: 1rem;
  color: var(--text);
}

#intro p strong {
  color: var(--secondary);
}

/* 角色介绍 */
.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.character-grid article {
  background: var(--bg-card-solid);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.character-grid article:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.character-grid img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary);
  transition: var(--transition);
  display: block;
}

.character-grid article:hover img {
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.character-grid h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.character-grid p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.character-grid p:last-child {
  color: var(--text);
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* 平台介绍 */
#platform p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.8;
}

#platform p:first-of-type {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-light);
}

/* APP下载 */
#app {
  text-align: center;
}

#app p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text);
}

#app a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

#app a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

/* 用户评论 */
.comment-list {
  display: grid;
  gap: 1rem;
}

.comment-list article {
  background: var(--bg-card-solid);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.comment-list article:hover {
  transform: translateX(5px);
  border-left-color: var(--secondary);
  background: rgba(124, 58, 237, 0.1);
}

.comment-list p {
  color: var(--text);
}

.comment-list p strong {
  color: var(--primary-light);
  margin-right: 0.5rem;
}

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

/* 侧边栏 */
aside {
  background: var(--bg-card);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  transition: var(--transition);
}

aside:hover {
  box-shadow: var(--shadow-hover);
}

aside h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-light);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}

aside ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

aside ol li {
  padding: 0.3rem 0;
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
}

aside ol li:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

aside p {
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

/* 页脚 */
footer {
  background: var(--bg-card-solid);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

footer p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

footer a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* 响应式布局 */
@media (max-width: 1024px) {
  main {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  aside {
    position: static;
    margin-top: 2rem;
  }

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

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  header nav {
    flex-direction: column;
    gap: 1rem;
  }

  header ul {
    justify-content: center;
    gap: 0.5rem;
  }

  header ul li a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  main {
    padding: 0.8rem;
  }

  section {
    padding: 1.2rem;
  }

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

  .comic-grid article img {
    height: 220px;
  }

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

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

  section h2 {
    font-size: 1.5rem;
  }
}

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

  .comic-grid article img {
    height: 180px;
  }

  .comic-grid article h3 {
    font-size: 1rem;
  }

  .comic-grid article p {
    font-size: 0.8rem;
    padding: 0.1rem 0.8rem;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .character-grid {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 1.5rem;
  }

  #app a {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f1a;
    --bg-card: rgba(30, 30, 50, 0.8);
    --bg-card-solid: #1e1e32;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
  }
}

/* 亮色模式适配（如果用户系统是亮色） */
@media (prefers-color-scheme: light) {
  :root {
    --bg: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-card-solid: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  header h1 {
    background: rgba(0, 0, 0, 0.8);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .comic-grid article p:last-child {
    color: var(--primary-dark);
  }

  #intro p strong {
    color: var(--secondary);
  }

  .character-grid h3 {
    color: var(--primary-dark);
  }

  #platform p:first-of-type {
    color: var(--primary-dark);
  }

  .comment-list p strong {
    color: var(--primary-dark);
  }

  aside h2 {
    color: var(--primary-dark);
  }

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

/* 滚动动画增强 */
@media (prefers-reduced-motion: no-preference) {
  .comic-grid article {
    animation: fadeInUp 0.6s ease-out both;
  }

  .comic-grid article:nth-child(2n) {
    animation-delay: 0.1s;
  }

  .comic-grid article:nth-child(3n) {
    animation-delay: 0.2s;
  }

  .comic-grid article:nth-child(4n) {
    animation-delay: 0.3s;
  }

  .recommend-grid article {
    animation: scaleIn 0.5s ease-out both;
  }

  .recommend-grid article:nth-child(2n) {
    animation-delay: 0.1s;
  }

  .character-grid article {
    animation: fadeIn 0.5s ease-out both;
  }

  .character-grid article:nth-child(2n) {
    animation-delay: 0.1s;
  }

  .comment-list article {
    animation: slideInLeft 0.4s ease-out both;
  }

  .comment-list article:nth-child(2n) {
    animation: slideInRight 0.4s ease-out both;
  }
}

/* 悬停动画增强 */
.comic-grid article::after {
  content: '查看详情';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: var(--transition);
}

.comic-grid article:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* 图片加载优化 */
img {
  background: linear-gradient(90deg, var(--bg-card-solid) 25%, var(--bg-card) 50%, var(--bg-card-solid) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

img.loaded {
  background: none;
  animation: none;
}

/* 选中状态 */
::selection {
  background: var(--primary);
  color: white;
}

/* 链接样式 */
a {
  color: var(--primary-light);
  transition: var(--transition);
}

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

/* 标题层级 */
h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 0.5em;
}

/* 段落间距 */
p {
  margin-bottom: 0.5rem;
}

/* 无障碍 */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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