/* ========== 全局样式 (MiMo 风格) ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0095ff;
  --primary-light: #33adff;
  --primary-dark: #0077cc;
  --accent: #42d392;
  --bg: #ffffff;
  --bg-light: #f9f9f9;
  --bg-mute: #f1f1f1;
  --card-bg: #ffffff;
  --card-bg-hover: #f9f9f9;
  --text: #213547;
  --text-2: rgba(33, 53, 71, 0.66);
  --text-3: rgba(33, 53, 71, 0.33);
  --text-4: rgba(33, 53, 71, 0.18);
  --text-light: rgba(33, 53, 71, 0.66);
  --text-muted: rgba(33, 53, 71, 0.33);
  --border: rgba(60, 60, 60, 0.1);
  --border-light: rgba(60, 60, 60, 0.06);
  --success: #42d392;
  --danger: #f5365c;
  --warning: #fb923c;
  --shadow: 0 1px 4px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --gradient: linear-gradient(135deg, #0095ff 0%, #33adff 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ========== 滚动条 ========== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ========== 导航栏 ========== */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar .logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.navbar .logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 149, 255, 0.06);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

/* ========== 容器 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  padding: 80px 0;
  min-height: calc(100vh - 64px - 48px);
}

/* ========== 全页滚动文字背景 ========== */
.page-pattern {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.page-pattern .pattern-row {
  display: flex;
  white-space: nowrap;
  animation: patternScroll 30s linear infinite;
}

.page-pattern .pattern-row:nth-child(even) {
  animation-direction: reverse;
}

.page-pattern .pattern-text {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 8px;
  padding: 0 24px;
  color: var(--text);
  flex-shrink: 0;
}

@keyframes patternScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== Hero 区 ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.hero-title {
  position: relative;
  z-index: 1;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -4px;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-subtitle {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== 区块标题 (MiMo headerRow) ========== */
.headerRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.headerRow .headerTitle h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

.headerRow .headerDesc p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 500px;
  text-align: right;
}

/* ========== Showcase 卡片 (MiMo 风格大图卡片) ========== */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.06) 0%, rgba(66, 211, 146, 0.04) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px;
}

.showcaseCard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.showcaseCard:hover {
  transform: translateY(-4px);
}

.showcaseCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.showcaseCard .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.showcaseCard .cardInfo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: #fff;
}

.showcaseCard .cardInfo h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.showcaseCard .cardInfo p {
  font-size: 14px;
  opacity: 0.85;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== 行式列表 (MiMo blogRow) ========== */
.blogList {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.06) 0%, rgba(66, 211, 146, 0.04) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.blogRow {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.blogRow:last-child {
  border-bottom: none;
}

.blogRow:hover {
  padding-left: 8px;
}

.blogRow .blogIndex {
  flex-shrink: 0;
  width: 48px;
}

.blogRow .blogIndex span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
}

.blogRow .blogInfo {
  flex: 1;
  min-width: 0;
}

.blogRow .blogInfo h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.blogRow .blogInfo p {
  font-size: 14px;
  color: var(--text-2);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blogRow .blogInfo .rowMeta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-3);
}

.blogRow .blogInfo .rowMeta .tag {
  color: var(--primary);
  font-weight: 500;
}

.blogRow .blogArrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--text-3);
  transition: all 0.2s ease;
}

.blogRow:hover .blogArrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* ========== 文章详情 ========== */
.article-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-detail h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.article-detail .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-detail .meta .tag {
  background: rgba(0, 149, 255, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.article-detail .cover-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 40px;
}

.article-detail .content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.article-detail .content img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
  max-width: 100%;
}

.article-detail .content p {
  margin-bottom: 20px;
}

.article-detail .content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.article-detail .content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.article-detail .content ul,
.article-detail .content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-detail .content li {
  margin-bottom: 8px;
}

.article-detail .content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(0, 149, 255, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-2);
}

.article-detail .content code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(33, 53, 71, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.article-detail .content pre {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 24px 0;
  overflow-x: auto;
}

.article-detail .content pre code {
  background: none;
  padding: 0;
}

/* ========== 分类标签 ========== */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.category-tabs .tab {
  padding: 10px 24px;
  border-radius: 24px;
  background: var(--bg-light);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.category-tabs .tab:hover,
.category-tabs .tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========== 关于页 (MiMo Join Us 风格) ========== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding: 60px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.06) 0%, rgba(66, 211, 146, 0.04) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-section .about-title h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.about-section .about-number {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.12) 0%, rgba(66, 211, 146, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  user-select: none;
}

.about-section .about-accent {
  width: 48px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin-top: 20px;
}

.about-section .about-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 20px;
}

.about-section .about-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text);
}

.about-section .about-body ul {
  padding-left: 20px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.about-section .about-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.about-contact {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-2);
  position: relative;
  z-index: 1;
}

.about-contact strong {
  color: var(--text);
}

/* 关于页 - 格言卡片 */
.about-quote {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.06) 0%, rgba(66, 211, 146, 0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 60px;
  margin: 60px 0;
  text-align: center;
}

.about-quote .quote-mark {
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  margin-bottom: -20px;
}

.about-quote p {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.about-quote .quote-label {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-3);
  font-style: italic;
}

/* 关于页 - 数据亮点 */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.about-stat-item {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.06) 0%, rgba(66, 211, 146, 0.04) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-4px);
}

.about-stat-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-2);
}

/* 关于页 - 浮动光球 */
.about-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: 10%;
  left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0095ff, #42d392);
  top: 50%;
  right: 20%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, -40px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -50px); }
}

/* ========== 表单 ========== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 149, 255, 0.12);
}

.form-group textarea {
  min-height: 200px;
  resize: vertical;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 149, 255, 0.3);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background: #e0294a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 149, 255, 0.04);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* ========== 管理后台 ========== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  background: var(--bg-light);
  color: var(--text);
  padding: 24px 0;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
}

.admin-sidebar .brand {
  padding: 0 24px 24px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.admin-sidebar .brand span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.admin-sidebar .nav-item {
  display: block;
  padding: 12px 24px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.admin-sidebar .nav-item:hover,
.admin-sidebar .nav-item.active {
  color: var(--primary);
  background: rgba(0, 149, 255, 0.06);
  text-decoration: none;
}

.admin-main {
  flex: 1;
  background: var(--bg);
  padding: 32px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

/* ========== 表格 ========== */
.data-table {
  width: 100%;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-table tr:hover {
  background: var(--bg-light);
}

.data-table .actions {
  display: flex;
  gap: 8px;
}

/* ========== 统计卡片 ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.stat-card .number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}

.stat-card .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== 图片上传 ========== */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(0, 149, 255, 0.04);
}

.upload-area .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.upload-area p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========== Toast 提示 ========== */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ========== 加载/空状态 ========== */
.loading {
  text-align: center;
  padding: 48px;
  color: var(--text-muted);
}

.spinner {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.empty-state p {
  font-size: 16px;
}

/* ========== 页脚 (MiMo 简约风格) ========== */
.footer {
  text-align: center;
  padding: 24px;
  color: var(--text-3);
  font-size: 13px;
}

/* ========== 登录页 ========== */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-light);
}

.login-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
}

.login-card h2 {
  text-align: center;
  margin-bottom: 36px;
  font-size: 24px;
  font-weight: 700;
}

/* ========== 分页 ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.pagination button {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  color: var(--text-2);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pagination button:hover,
.pagination button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ========== 鼠标跟随光晕 ========== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 149, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

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

.blogRow {
  animation: fadeIn 0.5s ease forwards;
}

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

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.show {
    display: flex;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-pattern .pattern-text {
    font-size: 28px;
  }

  .page-pattern .pattern-text {
    font-size: 28px;
  }

  .headerRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .headerRow .headerDesc p {
    text-align: left;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blogRow {
    gap: 16px;
    padding: 20px 0;
  }

  .blogRow .blogIndex {
    width: 36px;
  }

  .blogRow .blogInfo h3 {
    font-size: 16px;
  }

  .article-detail {
    padding: 0 16px;
  }

  .article-detail h1 {
    font-size: 24px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .about-section .about-number {
    font-size: 80px;
  }

  .about-quote {
    padding: 32px 24px;
    margin: 40px 0;
  }

  .about-quote p {
    font-size: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-layout {
    flex-direction: column;
  }
}
