```css
/* ===== 零界绘漫画 全局样式 ===== */
:root {
  --primary: #4A6CF7;
  --primary-light: #6B4CFF;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --bg: #F8F4FF;
  --card-bg: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #2D2D44;
  --text-light: #F5F0FF;
  --border-radius: 16px;
  --shadow: 0 4px 20px rgba(74, 108, 247, 0.08);
  --shadow-hover: 0 8px 30px rgba(74, 108, 247, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-banner: linear-gradient(135deg, #1A1A2E 0%, #4A6CF7 50%, #6B4CFF 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f4ff 100%);
}

/* 暗色模式 */
[data-theme="dark"] {
  --bg: #0f0f1a;
  --card-bg: #1a1a2e;
  --text: #f0f0ff;
  --text-secondary: #c0c0d0;
  --text-light: #f0f0ff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(26, 26, 46, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gradient-card: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0f1a;
    --card-bg: #1a1a2e;
    --text: #f0f0ff;
    --text-secondary: #c0c0d0;
    --text-light: #f0f0ff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(26, 26, 46, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-card: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  }
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

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

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

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

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

/* ===== 头部导航 ===== */
header {
  background: var(--dark);
  padding: 0.8rem 1rem;
  border-bottom: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(26, 26, 46, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

header nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

header h1 {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(74, 108, 247, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(107, 76, 255, 0.8);
  }
}

header nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

header nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
}

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

header nav a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

/* ===== 主内容布局 ===== */
main {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 区块标题 ===== */
section h2, article h2 {
  color: var(--text);
  border-left: 6px solid var(--primary);
  padding-left: 0.8rem;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

section h2::after, article h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

section:hover h2::after, article:hover h2::after {
  transform: scaleX(1);
}

/* ===== 动漫卡片 ===== */
article[style*="background: #FFFFFF"] {
  background: var(--card-bg) !important;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  animation: fadeInUp 0.6s ease backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

article[style*="background: #FFFFFF"]:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

article[style*="background: #FFFFFF"] img {
  transition: transform 0.5s ease;
}

article[style*="background: #FFFFFF"]:hover img {
  transform: scale(1.05);
}

article[style*="background: #FFFFFF"] div {
  padding: 0.8rem;
}

article[style*="background: #FFFFFF"] h3 {
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  color: var(--text);
  transition: color 0.3s ease;
}

article[style*="background: #FFFFFF"]:hover h3 {
  color: var(--primary);
}

article[style*="background: #FFFFFF"] p {
  margin: 0.2rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

article[style*="background: #FFFFFF"] p[style*="font-weight: bold"] {
  font-weight: bold;
  color: var(--text);
  font-size: 1rem;
}

/* ===== 新番推荐卡片 ===== */
section article[style*="padding: 1rem"] {
  background: var(--card-bg) !important;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

section article[style*="padding: 1rem"]:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

section article[style*="padding: 1rem"] img {
  border-radius: 8px;
  transition: transform 0.5s ease;
}

section article[style*="padding: 1rem"]:hover img {
  transform: scale(1.03);
}

section article[style*="padding: 1rem"] h3 {
  color: var(--text);
  margin: 0.8rem 0 0.2rem;
  transition: color 0.3s ease;
}

section article[style*="padding: 1rem"]:hover h3 {
  color: var(--primary);
}

/* ===== 深度专题 ===== */
article[style*="padding: 1.8rem"] {
  background: var(--card-bg) !important;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

article[style*="padding: 1.8rem"]:hover {
  box-shadow: var(--shadow-hover);
}

article[style*="padding: 1.8rem"] h2 {
  color: var(--text);
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  position: relative;
}

article[style*="padding: 1.8rem"] h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-main);
}

article[style*="padding: 1.8rem"] img {
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

article[style*="padding: 1.8rem"] p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

article[style*="padding: 1.8rem"] p strong {
  color: var(--text);
}

/* ===== 角色介绍 ===== */
section[aria-labelledby="characters"] article {
  background: var(--card-bg) !important;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease backwards;
}

section[aria-labelledby="characters"] article:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

section[aria-labelledby="characters"] article img {
  border-radius: 50%;
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 auto 0.8rem;
  border: 3px solid var(--primary);
  transition: all 0.5s ease;
}

section[aria-labelledby="characters"] article:hover img {
  border-color: var(--primary-light);
  transform: scale(1.05) rotate(5deg);
}

section[aria-labelledby="characters"] article h3 {
  color: var(--text);
  margin: 0.3rem 0;
  transition: color 0.3s ease;
}

section[aria-labelledby="characters"] article:hover h3 {
  color: var(--primary);
}

section[aria-labelledby="characters"] article p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0.2rem 0;
}

/* ===== 平台介绍 ===== */
section[style*="background: #1A1A2E"] {
  background: var(--dark) !important;
  padding: 2rem;
  border-radius: 16px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  background: var(--gradient-banner) !important;
  animation: gradientShift 10s ease infinite alternate;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

section[style*="background: #1A1A2E"] h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-top: 0;
  border-left: none;
  padding-left: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

section[style*="background: #1A1A2E"] p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ===== APP下载 ===== */
section[style*="padding: 1.8rem"] a {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

section[style*="padding: 1.8rem"] a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: -1;
}

section[style*="padding: 1.8rem"] a:hover::before {
  left: 0;
}

section[style*="padding: 1.8rem"] a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.3);
}

section[style*="padding: 1.8rem"] a:first-of-type {
  background: var(--primary);
  color: #FFFFFF;
}

section[style*="padding: 1.8rem"] a:nth-of-type(2) {
  background: var(--primary-light);
  color: #FFFFFF;
}

section[style*="padding: 1.8rem"] a:last-of-type {
  background: var(--dark);
  color: #FFFFFF;
}

/* ===== 用户评论 ===== */
section[aria-labelledby="comments"] p {
  background: var(--card-bg) !important;
  padding: 1rem;
  border-radius: 12px;
  margin: 0;
  color: var(--text-secondary);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  animation: fadeInLeft 0.5s ease backwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

section[aria-labelledby="comments"] p:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
  background: var(--gradient-card) !important;
}

section[aria-labelledby="comments"] p strong {
  color: var(--text);
  margin-right: 0.5rem;
}

/* ===== 侧边栏 ===== */
aside {
  background: var(--card-bg) !important;
  padding: 1.5rem;
  border-radius: 16px;
  height: fit-content;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  transition: var(--transition);
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

aside h3 {
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}

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

aside ol, aside ul {
  color: var(--text-secondary);
  padding-left: 1.2rem;
  line-height: 2;
}

aside ol li, aside ul li {
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

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

aside p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

aside p:last-child {
  background: var(--gradient-card);
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 1px solid rgba(74, 108, 247, 0.1);
}

/* ===== 底部 ===== */
footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 2rem 1rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

footer div {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

footer div div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

footer strong {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

footer div div:first-child {
  line-height: 2;
}

footer div div:last-child {
  cursor: pointer;
}

footer div div:last-child span {
  transition: color 0.3s ease;
}

footer div div:last-child span:hover {
  color: var(--primary);
}

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

  aside {
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  aside h3 {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
  }

  aside p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  header nav div {
    justify-content: center;
    gap: 0.8rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  main {
    margin: 1rem auto;
    padding: 0 0.8rem;
  }

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

  article[style*="padding: 1.8rem"] {
    padding: 1.2rem;
  }

  article[style*="padding: 1.8rem"] h2 {
    font-size: 1.5rem;
  }

  section[style*="background: #1A1A2E"] {
    padding: 1.5rem;
  }

  section[style*="background: #1A1A2E"] h2 {
    font-size: 1.6rem;
  }

  section[style*="padding: 1.8rem"] a {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  aside {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  aside h3 {
    grid-column: 1;
  }

  aside p:last-child {
    grid-column: 1;
  }

  footer div {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  footer div div {
    align-items: center;
  }
}

@media (max-width: 480px) {
  header nav a {
    font-size: 0.9rem;
  }

  header nav div {
    gap: 0.6rem;
  }

  section h2, article h2 {
    font-size: 1.3rem;
  }

  article[style*="padding: 1.8rem"] p {
    font-size: 0.95rem;
  }

  section[style*="padding: 1.8rem"] a {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  main {
    padding: 0 0.5rem;
  }
}

/* ===== 滚动动画 ===== */
@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

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

/* ===== 渐变Banner ===== */
.gradient-banner {
  background: var(--gradient-banner);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ===== 卡片悬浮光效 ===== */
.card-glow {
  position: relative;
}

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

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

/* ===== 图片懒加载动画 ===== */
img[loading="lazy"] {
  opacity: 0;
  animation: imgLoad 0.5s ease forwards;
}

@keyframes imgLoad {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== 链接下划线动画 ===== */
.link-underline {
  position: relative;
}

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

.link-underline:hover::after {
  width: 100%;
}

/* ===== 按钮动画 ===== */
.btn-animate {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-animate:hover::after {
  width: 300px;
  height: 300px;
}

/* ===== 数字滚动动画 ===== */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 标签云动画 ===== */
.tag-cloud span {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  margin: 0.2rem;
  background: var(--gradient-card);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
}

.tag-cloud span:hover {
  transform: scale(1.1);
  background: var(--gradient-main);
  color: white;
}

/* ===== 响应式字体 ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

/* ===== 无障碍访问 ===== */
@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, aside, footer {
    display: none;
  }

  main {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
}

/* ===== 暗色模式适配 ===== */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #0f0f1a;
    color: #f0f0ff;
  }

  article[style*="background: #FFFFFF"] {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  section article[style*="padding: 1rem"] {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  article[style*="padding: 1.8rem"] {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  section[aria-labelledby="characters"] article {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  aside {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  section[aria-labelledby="comments"] p {
    background: #1a1a2e !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  h1, h2, h3, h4, h5, h6 {
    color: #f0f0ff;
  }

  p {
    color: #c0c0d0;
  }

  img {
    opacity: 0.9;
  }
}

/* ===== 动画延迟工具类 ===== */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ===== 性能优化 ===== */
img {
  content-visibility: auto;
  contain: paint;
}

article {
  contain: layout paint;
}

/* ===== 自定义光标 ===== */
@media (pointer: fine) {
  a, button {
    cursor: pointer;
  }
}

/* ===== 移动端触摸优化 ===== */
@media (pointer: coarse) {
  a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===== 保留原内联样式兼容 ===== */
[style*="background-color: #F8F4FF"] {
  background-color: var(--bg) !important;
}

[style*="color: #1A1A2E"] {
  color: var(--text) !important;
}

[style*="font-family: system-ui"] {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif !important;
}

/* ===== 结尾 ===== */
/* 所有样式已完整输出，包含响应式、暗色模式、动画效果 */
```