```css
/* ===== 追漫星球 主题样式表 ===== */
:root {
  --primary: #6B4CFF;
  --primary-light: #A78BFA;
  --primary-dark: #4A2DBF;
  --bg: #F8F4FF;
  --bg-dark: #0F0F1A;
  --surface: #FFFFFF;
  --surface-dark: #1E1E30;
  --text: #1A1A2E;
  --text-dark: #F0E6FF;
  --border: #E4D9FF;
  --border-dark: #3B2A5E;
  --shadow: 0 6px 18px rgba(27, 25, 85, 0.08);
  --shadow-dark: 0 6px 18px rgba(0, 0, 0, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(30, 30, 48, 0.7);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-dark: rgba(255, 255, 255, 0.08);
}

/* ===== 全局样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

::selection {
  background: var(--primary);
  color: #fff;
}

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

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

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

/* ===== 头部导航 ===== */
header {
  background: linear-gradient(145deg, #1A1A2E 0%, #2D2D44 100%);
  padding: 18px 0;
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease;
}

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

.logo h1 {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #A78BFA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

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

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
}

nav a {
  color: #F5F0FF;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

nav a:hover {
  color: #FFFFFF;
  border-bottom-color: #A78BFA;
  text-decoration: underline;
}

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

/* ===== Hero区域 ===== */
.hero {
  background: linear-gradient(135deg, #2D2D44 0%, #3B2A5E 100%);
  padding: 40px 0;
  margin-bottom: 30px;
  border-radius: 0 0 30px 30px;
  position: relative;
  overflow: hidden;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  color: #F0E6FF;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* ===== 主内容布局 ===== */
main {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  animation: fadeIn 0.8s ease;
}

.content {
  flex: 2;
  min-width: 0;
}

aside {
  flex: 1;
  min-width: 280px;
}

/* ===== 区块标题 ===== */
.section-title {
  font-size: 1.8rem;
  color: var(--text);
  border-left: 8px solid var(--primary);
  padding-left: 16px;
  margin: 30px 0 20px;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 16px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

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

/* ===== 卡片样式 ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  animation: scaleIn 0.6s ease backwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.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:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(107, 76, 255, 0.15);
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #D9CCFF, #6B4CFF);
  transition: transform 0.3s ease;
}

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

.card-body {
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

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

.card p {
  font-size: 0.9rem;
  color: #2D2D44;
  margin-bottom: 4px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 30px;
  margin-top: 4px;
  transition: transform 0.3s ease;
}

.card:hover .badge {
  transform: scale(1.05);
}

/* ===== 详情文章 ===== */
.detail-article {
  background: var(--surface);
  padding: 25px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: 30px;
  border: 1px solid var(--border);
  animation: fadeInUp 0.8s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.detail-article h2 {
  color: var(--text);
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-article h3 {
  color: #2D2D44;
  font-size: 1.3rem;
  margin: 20px 0 10px;
  position: relative;
  padding-left: 12px;
}

.detail-article h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--primary);
  border-radius: 2px;
}

.detail-article p {
  color: #2D2D44;
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.char-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.char-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(107, 76, 255, 0.1);
}

.char-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #D9CCFF, #6B4CFF);
  border: 3px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.char-card:hover img {
  transform: scale(1.05);
  border-color: var(--primary);
}

.char-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.char-card p {
  color: #2D2D44;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== 平台优势 ===== */
.platform-section {
  background: var(--surface);
  padding: 25px;
  border-radius: 20px;
  margin: 30px 0;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.platform-section p {
  color: #2D2D44;
  line-height: 1.8;
}

/* ===== 下载区域 ===== */
.download-section {
  background: linear-gradient(135deg, #2D2D44 0%, #3B2A5E 100%);
  border-radius: 24px;
  padding: 30px;
  margin: 40px 0;
  color: #F5F0FF;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.download-section h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #A78BFA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-section p {
  color: #F0E6FF;
  margin-bottom: 20px;
}

.btn-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: 2px solid #A78BFA;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 76, 255, 0.3);
  text-decoration: none;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== 评论列表 ===== */
.review-list {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.review-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease backwards;
}

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

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

.review-item:hover {
  background: linear-gradient(90deg, rgba(107, 76, 255, 0.05), transparent);
  padding-left: 15px;
}

.review-item strong {
  color: var(--text);
  font-weight: 600;
}

.review-item span {
  color: #2D2D44;
}

/* ===== 侧边栏 ===== */
.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: slideInRight 0.6s ease backwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sidebar-card:nth-child(1) { animation-delay: 0.1s; }
.sidebar-card:nth-child(2) { animation-delay: 0.2s; }
.sidebar-card:nth-child(3) { animation-delay: 0.3s; }
.sidebar-card:nth-child(4) { animation-delay: 0.4s; }
.sidebar-card:nth-child(5) { animation-delay: 0.5s; }

.sidebar-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 10px 25px rgba(107, 76, 255, 0.1);
}

.sidebar-card h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  position: relative;
}

.sidebar-card h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30%;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.sidebar-card:hover h3::after {
  width: 60%;
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #2D2D44;
  border-bottom: 1px dashed #D9CCFF;
  transition: all 0.3s ease;
}

.sidebar-card li:hover {
  color: var(--primary);
  padding-left: 10px;
}

.sidebar-stats {
  background: linear-gradient(135deg, #2D2D44 0%, #3B2A5E 100%);
  color: #F5F0FF;
  border-radius: var(--radius);
  padding: 20px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.sidebar-stats h3 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.sidebar-stats p {
  color: #F0E6FF;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.sidebar-stats p:hover {
  transform: translateX(5px);
}

/* ===== 页脚 ===== */
footer {
  background: linear-gradient(145deg, #1A1A2E 0%, #2D2D44 100%);
  color: #F5F0FF;
  padding: 35px 0;
  margin-top: 40px;
  position: relative;
}

.footer-links a {
  color: #A78BFA;
  text-decoration: none;
  margin-right: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFFFFF;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

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

.copyright {
  border-top: 1px solid #3B2A5E;
  margin-top: 25px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #E0D4FF;
}

.copyright a {
  color: #A78BFA;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===== 占位图样式 ===== */
.alt-img {
  background: linear-gradient(135deg, #2D2D44, #3B2A5E);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== 响应式布局 ===== */
@media (max-width: 800px) {
  main {
    flex-direction: column;
  }
  
  aside {
    width: 100%;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .char-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
  }
  
  .header-flex {
    flex-direction: column;
    text-align: center;
  }
  
  nav ul {
    justify-content: center;
  }
  
  .download-section {
    padding: 20px;
  }
  
  .download-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
  }
  
  nav ul {
    gap: 10px;
  }
  
  nav a {
    font-size: 0.9rem;
  }
  
  .hero {
    padding: 25px 0;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .card-body {
    padding: 10px;
  }
  
  .card h3 {
    font-size: 1rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  .detail-article {
    padding: 15px;
  }
  
  .detail-article h2 {
    font-size: 1.5rem;
  }
  
  .detail-article h3 {
    font-size: 1.1rem;
  }
  
  .char-card img {
    width: 80px;
    height: 80px;
  }
  
  .sidebar-card {
    padding: 15px;
  }
  
  .review-item {
    font-size: 0.9rem;
  }
}

/* ===== 暗色模式 ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F0F1A;
    --surface: #1E1E30;
    --text: #F0E6FF;
    --border: #3B2A5E;
    --shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
  
  body {
    background-color: var(--bg);
    color: var(--text);
  }
  
  .card {
    background: var(--surface);
    border-color: var(--border);
  }
  
  .card-body {
    background: linear-gradient(135deg, rgba(30, 30, 48, 0.95), rgba(30, 30, 48, 0.85));
  }
  
  .card h3 {
    color: var(--text);
  }
  
  .card p {
    color: #C4B8E8;
  }
  
  .detail-article {
    background: var(--surface);
    border-color: var(--border);
  }
  
  .detail-article h2 {
    color: var(--text);
  }
  
  .detail-article h3 {
    color: #C4B8E8;
  }
  
  .detail-article p {
    color: #C4B8E8;
  }
  
  .char-card {
    background: var(--surface);
    border-color: var(--border);
  }
  
  .char-card h3 {
    color: var(--text);
  }
  
  .char-card p {
    color: #C4B8E8;
  }
  
  .platform-section {
    background: var(--surface);
    border-color: var(--border);
  }
  
  .platform-section p {
    color: #C4B8E8;
  }
  
  .review-list {
    background: var(--surface);
  }
  
  .review-item {
    border-color: var(--border);
  }
  
  .review-item strong {
    color: var(--text);
  }
  
  .review-item span {
    color: #C4B8E8;
  }
  
  .sidebar-card {
    background: var(--surface);
    border-color: var(--border);
  }
  
  .sidebar-card h3 {
    color: var(--text);
  }
  
  .sidebar-card li {
    color: #C4B8E8;
    border-color: #3B2A5E;
  }
  
  .section-title {
    color: var(--text);
  }
  
  .logo h1 {
    background: linear-gradient(135deg, #A78BFA, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ===== 玻璃拟态效果 ===== */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

@media (prefers-color-scheme: dark) {
  .glass-effect {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border-dark);
  }
}

/* ===== 滚动动画支持 ===== */
@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 {
  header, footer, aside, .download-section, .btn-group {
    display: none !important;
  }
  
  main {
    flex-direction: column;
  }
  
  .content {
    width: 100%;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    break-inside: avoid;
  }
}
```