```css
/* ===== 樱花视频官网 完整样式表 ===== */
/* ===== 主题变量与基础重置 ===== */
:root {
  --bg-primary: #0a0a18;
  --bg-secondary: #101028;
  --bg-card: #1a1a35;
  --bg-card-hover: #222250;
  --bg-glass: rgba(26, 26, 53, 0.6);
  --border-color: #2d2d55;
  --border-hover: #4c4c8a;
  --text-primary: #f0f0ff;
  --text-secondary: #e0e0f0;
  --text-muted: #b0b0d0;
  --text-dim: #8888aa;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 58, 237, 0.3);
  --pink: #ec4899;
  --gradient-main: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
  --gradient-card: linear-gradient(145deg, #1a1a35, #222250);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 32px rgba(124, 58, 237, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-base: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ===== 暗色模式支持 (自动) ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #06060f;
    --bg-secondary: #0a0a1a;
    --bg-card: #12122a;
    --bg-card-hover: #1a1a3e;
    --border-color: #1e1e44;
    --text-primary: #ffffff;
    --text-secondary: #e8e8ff;
    --text-muted: #a0a0c8;
  }
}

/* ===== 全局样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* 背景光晕效果 */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 40%);
  animation: bgFloat 20s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes bgFloat {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, 2%) rotate(2deg); }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-light), var(--pink));
}

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

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

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
  margin-bottom: 28px;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 头部导航 ===== */
header {
  background: linear-gradient(145deg, var(--bg-secondary), #151530);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 13, 32, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

header h1 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  text-shadow: 0 0 30px var(--accent-glow);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}

header h1::before {
  content: '🌸';
  font-size: 1.2em;
  -webkit-text-fill-color: initial;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 22px);
  font-weight: 500;
}

nav a {
  color: var(--text-secondary);
  font-size: 1rem;
  position: relative;
  padding: 6px 2px;
  transition: color var(--transition-fast);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

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

nav a:hover::after {
  width: 100%;
}

/* ===== 区块通用 ===== */
section {
  padding: clamp(30px, 5vw, 50px) 0;
  position: relative;
}

section:nth-of-type(odd) {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02), transparent);
}

/* 区块标题 */
h2 {
  border-left: 6px solid var(--accent);
  padding-left: 18px;
  background: linear-gradient(90deg, var(--accent-glow), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding-top: 4px;
  padding-bottom: 4px;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  margin-top: 8px;
  border-radius: 3px;
}

/* ===== 卡片通用 ===== */
article {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

article::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

article:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

article:hover::before {
  left: 100%;
}

/* ===== 热门漫画区 ===== */
.hot-manga-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.hot-manga-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hot-manga-grid article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.hot-manga-grid img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 220/310;
  transition: transform 0.5s ease;
}

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

.hot-manga-grid .card-body {
  padding: 12px 12px 16px;
}

.hot-manga-grid h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  transition: color var(--transition-fast);
}

.hot-manga-grid article:hover h3 {
  color: var(--accent-light);
}

.hot-manga-grid p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 2px 0;
}

.tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.2);
  color: var(--accent-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin-top: 6px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

article:hover .tag {
  background: rgba(124, 58, 237, 0.35);
  border-color: var(--accent);
}

.update-info {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.update-info::before {
  content: '📖';
  font-size: 0.9em;
}

/* ===== 精品推荐 ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.featured-grid article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.featured-grid article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.featured-grid img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 300/200;
  transition: transform 0.5s ease;
}

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

.featured-grid .card-content {
  padding: 15px;
}

.featured-grid h3 {
  margin-top: 0;
  position: relative;
  display: inline-block;
}

.featured-grid h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition-smooth);
}

.featured-grid article:hover h3::after {
  width: 100%;
}

.featured-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== 深度介绍区 ===== */
.deep-intro {
  background: linear-gradient(145deg, #161630, #1a1a3e);
  padding: clamp(30px, 5vw, 50px) 0;
  position: relative;
  overflow: hidden;
}

.deep-intro::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

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

.deep-intro article {
  max-width: 900px;
  background: rgba(26, 26, 53, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: clamp(20px, 4vw, 40px);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.deep-intro h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.deep-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* ===== 角色介绍 ===== */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.characters-grid div {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.characters-grid div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
  transform-origin: left;
}

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

.characters-grid div:hover::before {
  transform: scaleX(1);
}

.characters-grid img {
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid transparent;
  transition: border-color var(--transition-smooth), transform var(--transition-smooth);
  aspect-ratio: 1/1;
}

.characters-grid div:hover img {
  border-color: var(--accent);
  transform: scale(1.05);
}

.characters-grid h3 {
  margin: 8px 0 4px;
}

.characters-grid .role {
  color: var(--accent-light);
  margin: 4px 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.characters-grid .ability {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.characters-grid .desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== 平台介绍 ===== */
.platform-intro {
  background: linear-gradient(145deg, #14142e, #1a1a3e);
  padding: clamp(30px, 5vw, 50px) 0;
  position: relative;
}

.platform-intro .container > div {
  max-width: 900px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.platform-intro p {
  margin-bottom: 16px;
  font-size: 1rem;
  text-align: justify;
}

.platform-intro p:first-of-type::first-letter {
  font-size: 2.5em;
  float: left;
  padding-right: 8px;
  line-height: 1;
  color: var(--accent);
  font-weight: bold;
}

/* ===== APP下载 ===== */
.download-section {
  padding: clamp(30px, 5vw, 50px) 0;
  position: relative;
  overflow: hidden;
}

.download-section .container {
  text-align: center;
}

.download-section h2 {
  border-left: none;
  padding-left: 0;
  text-align: center;
  background: none;
}

.download-section h2::after {
  margin: 8px auto 0;
}

.download-section p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 25px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-buttons a {
  background: var(--gradient-main);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.download-buttons a::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;
}

.download-buttons a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
  text-decoration: none;
  color: #ffffff;
}

.download-buttons a:hover::before {
  left: 100%;
}

/* ===== 用户评论 ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 4rem;
  color: rgba(124, 58, 237, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

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

.review-card .username {
  color: var(--accent-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card .username::before {
  content: '👤';
  font-size: 0.9em;
}

.review-card p {
  color: var(--text-secondary);
  margin: 8px 0;
  line-height: 1.6;
}

.review-card time {
  color: var(--text-dim);
  font-size: 0.8rem;
  display: block;
  margin-top: 8px;
}

/* ===== 侧边栏 ===== */
aside {
  background: linear-gradient(145deg, #14142e, #101028);
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

aside .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

aside .col {
  flex: 1;
  min-width: 200px;
}

aside h3 {
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 8px;
}

aside h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

aside ul {
  color: var(--text-secondary);
  list-style: none;
  padding-left: 0;
}

aside ul li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(124, 58, 237, 0.1);
  transition: padding-left var(--transition-fast), color var(--transition-fast);
  cursor: default;
}

aside ul li:hover {
  padding-left: 8px;
  color: var(--text-primary);
}

aside p {
  color: var(--text-secondary);
  margin: 8px 0;
  padding-left: 0;
  transition: padding-left var(--transition-fast);
}

aside p:hover {
  padding-left: 8px;
}

/* ===== 页脚 ===== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 35px 0 25px;
  position: relative;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

footer h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin: 6px 0;
}

footer ul li a {
  color: var(--accent-light);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

footer ul li a:hover {
  color: #c4b5fd;
  padding-left: 5px;
}

footer .copyright {
  color: var(--text-dim);
  font-size: 0.9rem;
}

footer .legal-links {
  margin-top: 10px;
}

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

footer .legal-links a:hover {
  color: #c4b5fd;
}

/* ===== 滚动动画 ===== */
@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);
  }
}

/* 卡片入场动画 */
article, .review-card, .characters-grid div, aside .col {
  animation: fadeInUp 0.6s ease both;
}

/* 交错延迟 */
.hot-manga-grid article:nth-child(1) { animation-delay: 0.05s; }
.hot-manga-grid article:nth-child(2) { animation-delay: 0.1s; }
.hot-manga-grid article:nth-child(3) { animation-delay: 0.15s; }
.hot-manga-grid article:nth-child(4) { animation-delay: 0.2s; }
.hot-manga-grid article:nth-child(5) { animation-delay: 0.25s; }
.hot-manga-grid article:nth-child(6) { animation-delay: 0.3s; }
.hot-manga-grid article:nth-child(7) { animation-delay: 0.35s; }
.hot-manga-grid article:nth-child(8) { animation-delay: 0.4s; }
.hot-manga-grid article:nth-child(9) { animation-delay: 0.45s; }
.hot-manga-grid article:nth-child(10) { animation-delay: 0.5s; }
.hot-manga-grid article:nth-child(11) { animation-delay: 0.55s; }
.hot-manga-grid article:nth-child(12) { animation-delay: 0.6s; }

.featured-grid article:nth-child(1) { animation-delay: 0.1s; }
.featured-grid article:nth-child(2) { animation-delay: 0.2s; }
.featured-grid article:nth-child(3) { animation-delay: 0.3s; }
.featured-grid article:nth-child(4) { animation-delay: 0.4s; }

.review-card:nth-child(1) { animation-delay: 0.05s; }
.review-card:nth-child(2) { animation-delay: 0.1s; }
.review-card:nth-child(3) { animation-delay: 0.15s; }
.review-card:nth-child(4) { animation-delay: 0.2s; }
.review-card:nth-child(5) { animation-delay: 0.25s; }
.review-card:nth-child(6) { animation-delay: 0.3s; }
.review-card:nth-child(7) { animation-delay: 0.35s; }
.review-card:nth-child(8) { animation-delay: 0.4s; }
.review-card:nth-child(9) { animation-delay: 0.45s; }
.review-card:nth-child(10) { animation-delay: 0.5s; }

/* 滚动时显示动画 (使用Intersection Observer的降级) */
@media (prefers-reduced-motion: no-preference) {
  article, .review-card, .characters-grid div {
    opacity: 0;
  }
  
  article.visible, .review-card.visible, .characters-grid div.visible {
    animation: fadeInUp 0.6s ease forwards;
  }
}

/* ===== 毛玻璃效果 ===== */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* 头部毛玻璃 */
header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 13, 32, 0.85);
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.9rem;
  }
  
  nav a {
    font-size: 0.9rem;
  }
  
  h2 {
    font-size: 1.4rem;
    padding-left: 14px;
  }
  
  .hot-manga-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
  }
  
  .characters-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  aside .container {
    flex-direction: column;
    gap: 25px;
  }
  
  aside .col {
    min-width: 100%;
  }
  
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  
  footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .deep-intro article {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hot-manga-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
  }
  
  .hot-manga-grid .card-body {
    padding: 10px;
  }
  
  .hot-manga-grid h3 {
    font-size: 1rem;
  }
  
  .hot-manga-grid p {
    font-size: 0.75rem;
  }
  
  .tag {
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  
  .characters-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
  }
  
  .characters-grid div {
    padding: 15px;
  }
  
  .characters-grid img {
    width: 100px;
    height: 100px;
  }
  
  .review-card {
    padding: 14px;
  }
  
  .deep-intro p {
    font-size: 0.95rem;
  }
}

/* ===== 打印样式 ===== */
@media print {
  header, footer, aside, .download-buttons {
    display: none;
  }
  
  body {
    background: #ffffff;
    color: #000000;
  }
  
  article {
    border: 1px solid #ccc;
    box-shadow: none;
  }
}

/* ===== 链接悬浮效果 ===== */
a[href] {
  position: relative;
}

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

img.loaded {
  opacity: 1;
}

/* ===== 焦点可见性 ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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