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

:root {
  --bg: #fbfbfd;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --divider: #d2d2d7;
  --hero-from: #1d1d1f;
  --hero-to: #2d2d2f;
  --hero-text: #f5f5f7;
  --radius: 18px;
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
    'Helvetica Neue', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== 导航栏 ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}

.nav-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
}

.nav-date {
  font-size: 12px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

/* ===== Hero 区域 ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 100%);
  color: var(--hero-text);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1.2s ease-out;
}

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

.hero-eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.6);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: rgba(245, 245, 247, 0.7);
  letter-spacing: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 245, 247, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(245, 245, 247, 0.5);
  border-bottom: 2px solid rgba(245, 245, 247, 0.5);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== 主内容区 ===== */
.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 区块标题 ===== */
.section {
  padding: 80px 0 40px;
  scroll-margin-top: 60px;
}

.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ===== 文章卡片 ===== */
.news-grid {
  display: grid;
  gap: 20px;
}

/* Lead 文章 - 全宽大卡 */
.news-item.lead {
  grid-column: 1 / -1;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.news-item.lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #00c6ff);
}

.news-item.lead:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.news-item.lead .news-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0, 113, 227, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.news-item.lead .news-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.news-item.lead .news-brief {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-item.lead .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Important 文章 - 两列 */
.news-row-important {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-item.important {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.news-item.important:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.news-item.important .news-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.news-item.important .news-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-item.important .news-brief {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-item.important .news-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Normal 文章 - 多列网格 */
.news-row-normal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-item.normal {
  background: var(--surface);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-item.normal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.news-item.normal .news-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.news-item.normal .news-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.news-item.normal .news-brief {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item.normal .news-meta {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 文旅热度标签 */
.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

.hot-badge.爆 { background: #ffe5e5; color: #ff3b30; }
.hot-badge.热 { background: #fff4e5; color: #ff9500; }
.hot-badge.温 { background: #e5f2ff; color: #0071e3; }

.douyin-tag {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.douyin-tag::before {
  content: '♪';
  color: #fe2c55;
  font-weight: 700;
}

/* ===== 电影区块 ===== */
.movies-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.movie-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
}

.movie-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.movie-rating {
  text-align: center;
}

.movie-rating .rating-score {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.movie-rating .rating-label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.movie-rating .rating-score.no-rating {
  font-size: 20px;
  color: var(--text-secondary);
}

.movie-info {
  min-width: 0;
}

.movie-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.movie-title {
  font-size: 20px;
  font-weight: 600;
}

.movie-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}

.movie-status.在映 {
  background: #e5f9ec;
  color: #34c759;
}

.movie-status.待映 {
  background: #fff4e5;
  color: #ff9500;
}

.movie-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.movie-meta span {
  margin-right: 16px;
}

.movie-brief {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.btn-trailer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
}

.btn-trailer:hover {
  background: var(--accent-hover);
}

.btn-trailer:active {
  transform: scale(0.96);
}

.btn-trailer::before {
  content: '▶';
  font-size: 10px;
}

.btn-detail {
  font-size: 12px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.btn-detail:hover {
  color: var(--accent);
}

/* ===== 弹窗 ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
  display: flex;
}

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

.modal {
  background: var(--surface);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: modalIn 0.3s ease;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

.modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-content .modal-category {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.modal-content .modal-summary {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.modal-content .modal-meta {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.modal-content .modal-meta strong {
  color: var(--text);
  font-weight: 600;
  display: inline-block;
  width: 70px;
}

.modal-content .modal-source {
  margin-top: 20px;
  font-size: 13px;
}

.modal-content .modal-source a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== 页脚 ===== */
.footer {
  border-top: 1px solid var(--divider);
  margin-top: 80px;
  padding: 40px 0;
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== 滚动入场动画 ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .news-row-normal {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-item {
    grid-template-columns: 60px 1fr;
  }

  .movie-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .news-row-important {
    grid-template-columns: 1fr;
  }

  .news-row-normal {
    grid-template-columns: 1fr;
  }

  .news-item.lead {
    padding: 32px 24px;
  }

  .news-item.important {
    padding: 24px;
  }

  .movie-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .movie-rating {
    margin-bottom: 8px;
  }

  .movie-actions {
    justify-content: center;
  }

  .modal {
    padding: 28px 20px;
  }

  .section {
    padding: 48px 0 24px;
  }
}

/* ===== 文旅账号监测看板 ===== */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card .stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* 筛选标签 */
.dashboard-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--divider);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* TOP10 柱状图 */
.top10-chart {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.top10-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.top10-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.top10-rank {
  width: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  flex-shrink: 0;
}

.top10-rank.top3 {
  color: var(--accent);
}

.top10-name {
  width: 140px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.top10-bar-wrap {
  flex: 1;
  height: 22px;
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

.top10-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #00c6ff);
  border-radius: 4px;
  transition: width 0.8s ease;
  min-width: 2px;
}

.top10-value {
  width: 70px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* 账号表格 */
.accounts-table-wrap {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.accounts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.accounts-table thead {
  background: var(--bg);
}

.accounts-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.accounts-table th:hover {
  color: var(--accent);
}

.accounts-table th.sorted {
  color: var(--accent);
}

.accounts-table th.sorted::after {
  content: ' ↓';
}

.accounts-table th.sorted.asc::after {
  content: ' ↑';
}

.accounts-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--bg);
  vertical-align: middle;
}

.accounts-table tbody tr {
  transition: background 0.15s;
}

.accounts-table tbody tr:hover {
  background: rgba(0, 113, 227, 0.03);
}

.account-name-cell {
  font-weight: 600;
  color: var(--text);
}

.account-type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.account-type-badge.省级文旅厅 { background: #e8f4fd; color: #0071e3; }
.account-type-badge.市级文旅局 { background: #e8fdf0; color: #34c759; }
.account-type-badge.5A景区 { background: #fef3e8; color: #ff9500; }
.account-type-badge.主题乐园 { background: #fde8f4; color: #ff2d92; }

.account-followers {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.account-trait {
  color: var(--text-secondary);
  font-size: 13px;
  max-width: 280px;
}

.account-link {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.account-link:hover {
  text-decoration: underline;
}

/* 看板响应式 */
@media (max-width: 900px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .top10-name {
    width: 100px;
  }

  .accounts-table-wrap {
    overflow-x: auto;
  }

  .accounts-table {
    min-width: 700px;
  }
}

@media (max-width: 640px) {
  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card .stat-value {
    font-size: 28px;
  }

  .top10-chart {
    padding: 20px;
  }

  .top10-name {
    width: 80px;
    font-size: 12px;
  }

  .top10-value {
    width: 55px;
    font-size: 12px;
  }
}

/* ===== 待办事项 ===== */
.todo-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: var(--surface);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  width: fit-content;
}

.todo-tab {
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: inherit;
}

.todo-tab:hover {
  color: var(--text);
}

.todo-tab.active {
  background: var(--text);
  color: var(--surface);
  font-weight: 600;
}

.todo-progress-wrap {
  margin-bottom: 24px;
}

.todo-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.todo-progress-bar {
  height: 6px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}

.todo-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #34c759);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.todo-list {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.todo-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--bg);
  transition: background 0.15s;
  cursor: pointer;
}

.todo-item:last-child {
  border-bottom: none;
}

.todo-item:hover {
  background: rgba(0, 113, 227, 0.02);
}

.todo-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--divider);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}

.todo-item.completed .todo-checkbox {
  background: #34c759;
  border-color: #34c759;
}

.todo-checkbox::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.2s;
  margin-top: -2px;
}

.todo-item.completed .todo-checkbox::after {
  transform: rotate(-45deg) scale(1);
}

.todo-text {
  flex: 1;
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s;
}

.todo-item.completed .todo-text {
  color: var(--text-secondary);
  text-decoration: line-through;
}

.todo-priority {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.todo-priority.high { background: #ffe5e5; color: #ff3b30; }
.todo-priority.normal { background: #e5f2ff; color: #0071e3; }
.todo-priority.low { background: #f0f0f0; color: #8e8e93; }

.todo-empty {
  padding: 48px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 640px) {
  .todo-tabs {
    width: 100%;
  }
  .todo-tab {
    flex: 1;
    padding: 10px 0;
    text-align: center;
  }
  .todo-item {
    padding: 14px 16px;
  }
  .todo-text {
    font-size: 14px;
  }
}

/* ===== 文旅内容监测看板（内容动态 / 玩法趋势 / 热点追踪） ===== */
.monitor-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.monitor-block-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.monitor-block-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-left: 14px;
}

.monitor-block-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), #00c6ff);
}

.monitor-block-sub {
  font-size: 13px;
  color: var(--text-secondary);
}

/* 内容流筛选 */
.feed-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.feed-filter-tab {
  padding: 7px 16px;
  border-radius: 18px;
  border: 1px solid var(--divider);
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.feed-filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.feed-filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* 内容动态卡片 */
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feed-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--bg);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feed-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.feed-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.feed-account {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.feed-region {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--divider);
  padding: 1px 8px;
  border-radius: 10px;
}

.feed-date {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.feed-title {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}

.feed-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.feed-tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.feed-tag.play {
  background: rgba(0, 113, 227, 0.1);
  color: var(--accent);
}

.feed-tag.topic {
  background: rgba(255, 149, 0, 0.12);
  color: #c93400;
}

.feed-heat {
  font-size: 12px;
  font-weight: 600;
  color: #ff3b30;
}

.feed-note {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.feed-meme {
  font-size: 13px;
  color: #bf5af2;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
}

.feed-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.feed-tag.tech {
  background: rgba(48, 209, 88, 0.12);
  color: #28c76f;
  border-color: rgba(48, 209, 88, 0.25);
}

.feed-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.feed-group-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 113, 227, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.feed-group-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 1px 8px;
  border-radius: 20px;
}

.feed-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.feed-link:hover {
  text-decoration: underline;
}

/* 玩法趋势网格 */
.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gameplay-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--bg);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gameplay-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.gameplay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gameplay-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.trend-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.trend-badge.up {
  background: rgba(52, 199, 89, 0.12);
  color: #28a745;
}

.trend-badge.stable {
  background: rgba(142, 142, 147, 0.12);
  color: #8e8e93;
}

.trend-badge.new {
  background: rgba(0, 113, 227, 0.12);
  color: var(--accent);
}

.gameplay-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.gameplay-heat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.heat-label {
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.heat-bar {
  flex: 1;
  height: 8px;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}

.heat-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #00c6ff);
}

.heat-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.gameplay-meta {
  font-size: 12px;
  color: var(--text-secondary);
}

.meta-item {
  display: inline-block;
  margin-right: 6px;
}

.gameplay-note {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 2px solid var(--divider);
  padding-left: 10px;
}

/* 热点追踪 */
.topic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.topic-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.topic-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.topic-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.topic-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.topic-status.burst {
  background: rgba(255, 59, 48, 0.12);
  color: #ff3b30;
}

.topic-status.active {
  background: rgba(52, 199, 89, 0.14);
  color: #28a745;
}

.topic-status.ongoing {
  background: rgba(255, 149, 0, 0.14);
  color: #c93400;
}

.topic-status.preheat {
  background: rgba(142, 142, 147, 0.12);
  color: #8e8e93;
}

.topic-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.topic-heat {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #ff3b30;
  font-variant-numeric: tabular-nums;
}

.topic-slogan {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.topic-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}

.topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.topic-note {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-left: 2px solid var(--divider);
  padding-left: 10px;
  margin-bottom: 8px;
}

/* 账号档案折叠区 */
.accounts-collapse {
  border: 1px solid var(--divider);
  border-radius: 14px;
  background: var(--bg);
  overflow: hidden;
}

.accounts-collapse-summary {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.accounts-collapse-summary::-webkit-details-marker {
  display: none;
}

.accounts-collapse-summary::before {
  content: '▸';
  font-size: 12px;
  transition: transform 0.2s ease;
}

.accounts-collapse[open] .accounts-collapse-summary::before {
  transform: rotate(90deg);
}

.accounts-collapse-summary:hover {
  background: rgba(0, 113, 227, 0.04);
}

.accounts-collapse .dashboard-filters,
.accounts-collapse .accounts-table-wrap {
  padding: 0 20px 20px;
}

@media (max-width: 900px) {
  .gameplay-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .monitor-block {
    padding: 20px 16px;
  }
  .feed-date {
    margin-left: 0;
  }
}
