```css
/* ===== podo漫画 全站样式 ===== */
:root {
  --bg-primary: #0a0a18;
  --bg-secondary: #14142e;
  --bg-card: #1a1a35;
  --bg-glass: rgba(26, 26, 53, 0.65);
  --border-color: #2d2d55;
  --border-hover: #8b5cf6;
  --text-primary: #f0f0ff;
  --text-secondary: #d0d0e8;
  --text-muted: #b0b0d0;
  --text-dim: #8888aa;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dark: #6d28d9;
  --gradient-accent: linear-gradient(135deg, #7c3aed, #6d28d9);
  --gradient-bg: linear-gradient(145deg, #0a0a18 0%, #14142a 100%);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 8px 30px rgba(139, 92, 246, 0.3);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--gradient-bg);
  color: var(--text-secondary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 20px;
  border: 2px solid var(--bg-primary);
}

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

/* 选中文本 */
::selection {
  background: var(--accent);
  color: #fff;
}

/* ===== 通用元素 ===== */
a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition-fast), text-decoration var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  background: #1e1e3a;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

img:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.8rem;
  border-left: 5px solid var(--accent);
  padding-left: 15px;
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

p {
  margin-bottom: 1rem;
}

/* ===== 容器 ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  animation: fadeInUp 0.8s ease both;
}

/* ===== 顶部导航 ===== */
.top-nav {
  background: rgba(13, 13, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.top-nav.scrolled {
  background: rgba(13, 13, 32, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #6d28d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 2rem;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: transform var(--transition-smooth);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.8rem 0;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active {
  color: var(--accent);
}

.nav-links .active::after {
  width: 100%;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease both;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

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

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

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-smooth);
}

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

.card-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 4px;
  transition: color var(--transition-fast);
}

.card-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.tag {
  display: inline-block;
  background: rgba(45, 45, 85, 0.6);
  color: var(--accent-light);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin: 4px 4px 0 0;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}

.tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}

/* ===== 区块标题 ===== */
h2 {
  color: var(--text-primary);
  border-left: 5px solid var(--accent);
  padding-left: 15px;
  margin: 40px 0 20px;
  font-size: 1.8rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15px;
  width: 40px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

h3 {
  color: var(--text-primary);
  margin: 20px 0 10px;
}

/* ===== 侧边栏 ===== */
.layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin: 30px 0;
}

.sidebar {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 90px;
  height: fit-content;
  transition: border-color var(--transition-smooth);
}

.sidebar:hover {
  border-color: var(--border-hover);
}

.sidebar h3 {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  font-size: 1.1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-secondary);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.stat-item:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

/* ===== 评论框 ===== */
.comment-box {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 15px;
  margin: 12px 0;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

.comment-box:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.comment-user {
  color: var(--accent-light);
  font-weight: 600;
}

.comment-time {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-left: 10px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.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 {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  text-decoration: none;
  color: white;
}

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

.btn:active {
  transform: translateY(0);
}

/* ===== 页脚 ===== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 30px 20px;
  margin-top: 40px;
  color: var(--text-dim);
  position: relative;
}

footer a {
  color: var(--accent-light);
  margin: 0 8px;
  transition: color var(--transition-fast);
}

footer a:hover {
  color: var(--accent);
}

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

.role-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px;
  text-align: center;
  transition: all var(--transition-smooth);
  animation: fadeInUp 0.6s ease both;
}

.role-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.role-card img {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 3px solid transparent;
  transition: border-color var(--transition-smooth);
}

.role-card:hover img {
  border-color: var(--accent);
}

/* ===== 特色区块 ===== */
section[style*="background"] {
  transition: background 0.3s ease;
}

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

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

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

/* 滚动动画 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== 响应式 ===== */
@media (max-width: 800px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }

  .logo {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .nav-links {
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }

  .card {
    padding: 8px;
  }

  .card-title {
    font-size: 1rem;
  }

  .sidebar {
    position: static;
    top: auto;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

/* 超小屏 */
@media (max-width: 480px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-meta {
    font-size: 0.75rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 2px 8px;
  }

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

  footer {
    text-align: center;
  }

  footer > div:first-child {
    justify-content: center;
    gap: 10px;
  }
}

/* 暗色模式增强 */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0a18;
    --bg-secondary: #14142e;
    --bg-card: #1a1a35;
    --border-color: #2d2d55;
    --text-primary: #f0f0ff;
    --text-secondary: #d0d0e8;
    --text-muted: #b0b0d0;
  }

  .card {
    background: #1e1e3a;
  }

  .sidebar {
    background: rgba(20, 20, 46, 0.7);
  }
}

/* 减少动态效果偏好 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 打印样式 */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .top-nav,
  .btn,
  footer {
    display: none;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
```