```css
/* =========================================================
   podo漫画官网 - 完整样式表
   风格：现代紫罗兰 + 玻璃拟态 + 柔光渐变
   说明：响应式布局 / 暗色模式 / 滚动动画 / hover动效
   ========================================================= */

/* ---------- 1. 全局基础与主题变量 ---------- */
:root {
  --bg-body: #F8F4FF;
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-card-solid: #FFFFFF;
  --bg-soft: #F0E9FF;
  --bg-glass: rgba(255, 255, 255, 0.65);
  --primary: #4A6CF7;
  --primary-deep: #3A5BD9;
  --accent: #6B4CFF;
  --accent-light: #B7A9FF;
  --text-main: #1A1A2E;
  --text-soft: #2D2D44;
  --text-muted: #5A5A72;
  --border-soft: rgba(26, 26, 46, 0.08);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 16px 36px rgba(107, 76, 255, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition-base: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient-banner: linear-gradient(135deg, #6B4CFF 0%, #4A6CF7 45%, #8B5CF6 100%);
}

/* 暗色模式变量覆盖 */
[data-theme="dark"] {
  --bg-body: #12121F;
  --bg-card: rgba(30, 30, 46, 0.85);
  --bg-card-solid: #1E1E2E;
  --bg-soft: #2A2A3E;
  --bg-glass: rgba(30, 30, 46, 0.72);
  --text-main: #F5F0FF;
  --text-soft: #D0C8E8;
  --text-muted: #A09BB8;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.3s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  background: var(--bg-soft);
}

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

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

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* 容器 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 深色区块强制白色系 */
.dark-section {
  background: linear-gradient(145deg, #1A1A2E 0%, #241F38 100%);
  color: #F5F0FF;
}

.dark-section h2,
.dark-section h3,
.dark-section .card-title {
  color: #FFFFFF;
}

.dark-section a {
  color: var(--accent-light);
}

.dark-section a:hover {
  color: #FFFFFF;
}

/* ---------- 3. 头部导航 ---------- */
header {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  background: var(--gradient-banner);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

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

.dark-section .logo {
  background: linear-gradient(135deg, #FFFFFF, #B7A9FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  margin-right: 18px;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

/* ---------- 4. 通用卡片与网格 ---------- */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-solid);
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
}

.item-poster {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.item-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.item-poster:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.item-poster h3 {
  margin-top: 12px;
  font-size: 1.05rem;
}

.rating {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.meta-info {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.badge {
  background: var(--bg-soft);
  color: var(--text-main);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.25);
}

.btn:hover {
  background: var(--primary-deep);
  color: #FFFFFF;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 108, 247, 0.35);
}

/* ---------- 5. 侧边栏 ---------- */
.aside-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.2s ease;
}

.aside-card:hover {
  transform: translateY(-3px);
  background: var(--bg-card-solid);
}

.aside-card h3 {
  border-left: 6px solid var(--accent);
  padding-left: 12px;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.aside-card p {
  color: var(--text-soft);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

/* ---------- 6. 表格 ---------- */
table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-main);
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: none;
}

/* ---------- 7. 评论区 ---------- */
.comment-item {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-soft);
  transition: background 0.3s ease, transform 0.2s ease;
}

.comment-item:hover {
  background: var(--bg-card-solid);
  transform: translateY(-2px);
}

.comment-item strong {
  color: var(--text-soft);
}

.time {
  color: var(--text-muted);
  opacity: 0.85;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* ---------- 8. 页脚 ---------- */
footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #1E1B2E 100%);
  color: #F5F0FF;
  padding: 40px 0 30px;
  margin-top: 40px;
}

footer h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

footer a {
  color: var(--accent-light);
  margin-right: 14px;
  font-size: 0.9rem;
}

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

footer p {
  color: #C0B8D8;
  font-size: 0.88rem;
  margin-top: 8px;
}

/* ---------- 9. 区块标题 ---------- */
section h2 {
  border-left: 8px solid var(--accent);
  padding-left: 15px;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: border-color 0.3s ease;
}

section h2:hover {
  border-left-color: var(--primary);
}

/* ---------- 10. 双栏布局（新番+侧边栏） ---------- */
.new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

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

section, .card, .aside-card, .comment-item {
  animation: fadeInUp 0.6s ease both;
}

section:nth-of-type(2) { animation-delay: 0.1s; }
section:nth-of-type(3) { animation-delay: 0.2s; }
section:nth-of-type(4) { animation-delay: 0.3s; }
section:nth-of-type(5) { animation-delay: 0.4s; }
section:nth-of-type(6) { animation-delay: 0.5s; }

/* ---------- 12. 暗色模式切换按钮（伪需求，仅定义样式） ---------- */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(74, 108, 247, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* ---------- 13. 响应式设计 ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 16px;
  }

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

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

  aside {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    margin-right: 14px;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1.6rem;
  }

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

  .card {
    padding: 12px;
  }

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

  .meta-info,
  .rating {
    font-size: 0.8rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .new-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* 双栏改为单栏 */
  .container[style*="display: flex"] {
    flex-direction: column;
  }

  aside {
    width: 100%;
    margin-top: 24px;
  }

  .aside-card {
    padding: 14px;
  }

  .comment-item {
    padding: 12px;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  footer .container > div {
    flex-direction: column;
    gap: 16px;
  }
}

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

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

  .item-poster h3 {
    font-size: 0.85rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  .logo {
    font-size: 1.3rem;
  }

  nav a {
    font-size: 0.8rem;
    margin-right: 10px;
  }

  section h2 {
    font-size: 1.3rem;
    border-left-width: 6px;
  }
}

/* ---------- 14. 动效增强 ---------- */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 渐变Banner效果（用于区块） */
.gradient-banner {
  background: var(--gradient-banner);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.gradient-banner h2,
.gradient-banner h3 {
  color: #FFFFFF;
}

/* 毛玻璃强化 */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .glass {
  background: rgba(30, 30, 46, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

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

/* 选中文字颜色 */
::selection {
  background: var(--accent);
  color: #FFFFFF;
}

/* 图片加载动画 */
img {
  animation: fadeIn 0.5s ease;
}

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