/* entertainment_a 风格 (star/movie/tv)
   主题: 杂志风 / 高级感 / 强对比
   特点: 大留白 + 优雅字体 + 微妙阴影 + 顶部横幅品牌化
*/

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

:root {
  --bg: #fafafa;
  --bg-alt: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* ============ 顶部横幅 ============ */
.banner-top {
  background: var(--bg-alt);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.banner-top .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 728px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  padding: 0 24px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.banner-top .banner-content:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.banner-top .banner-icon { font-size: 22px; margin-right: 12px; }
.banner-top .banner-arrow { font-size: 20px; margin-left: 12px; transition: transform 0.2s; }
.banner-top .banner-content:hover .banner-arrow { transform: translateX(4px); }

/* ============ Header 导航 ============ */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.95);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 18px; font-weight: 700; color: var(--text); }
.logo-text small {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s;
}
.nav-link:hover::after { width: 100%; }
.nav-divider { width: 1px; height: 20px; background: var(--border); }
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 300px;
}

/* ============ Hero 头条 ============ */
.hero-section {
  margin: 32px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.hero-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 480px;
}
.hero-feature a { display: block; height: 100%; }
.hero-image {
  position: relative;
  width: 100%;
  height: 480px;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.2), transparent 50%);
  background-blend-mode: overlay;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 60%),
    linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.hero-image.placeholder {
  background: linear-gradient(135deg, #4a5568 0%, #1a202c 100%);
}
.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
}
.hero-overlay h1 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-excerpt {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 16px;
}
.hero-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  opacity: 0.85;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-mini {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.hero-mini:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hero-mini a {
  display: flex;
  gap: 12px;
  padding: 12px;
}
.mini-image {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.mini-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
}
.mini-category {
  position: relative;
  z-index: 1;
}
.mini-content { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: space-between; }
.mini-content h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============ 数据条 ============ */
.stats-bar {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============ 章节 ============ */
.section-block {
  margin-bottom: 56px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}
.section-more {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.section-more:hover { color: var(--primary); }
.section-tag {
  font-size: 11px;
  background: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}

/* ============ 文章卡片 (3 列网格) ============ */
.article-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.article-card a { display: block; }
.card-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: flex-end;
  padding: 12px;
  overflow: hidden;
}
.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.card-image.placeholder {
  background: linear-gradient(135deg, #4a5568, #1a202c);
}
.card-tag {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.card-body {
  padding: 16px;
}
.card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ 编辑推荐 (2 列 + 大图) ============ */
.article-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card-featured {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.article-card-featured:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.article-card-featured a { display: flex; flex-direction: column; }
.featured-image {
  height: 220px;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.2), transparent 50%);
  background-blend-mode: overlay;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.featured-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.featured-tag {
  position: relative;
  z-index: 1;
  background: white;
  color: var(--text);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.featured-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.featured-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}
.featured-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.featured-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.featured-category {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 500;
}

/* ============ 双列布局 (排行 + 标签) ============ */
.dual-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.ranking-widget,
.tag-cloud {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.widget-header h3 {
  font-size: 16px;
  font-weight: 700;
}
.widget-tag {
  font-size: 10px;
  background: var(--primary);
  color: white;
  padding: 3px 8px;
  border-radius: 8px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ranking-list {
  list-style: none;
  counter-reset: rank;
}
.ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ranking-item:last-child { border-bottom: none; }
.rank-num {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}
.ranking-item:nth-child(1) .rank-num { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: white; }
.ranking-item:nth-child(2) .rank-num { background: linear-gradient(135deg, #94a3b8, #64748b); color: white; }
.ranking-item:nth-child(3) .rank-num { background: linear-gradient(135deg, #d97706, #b45309); color: white; }
.rank-title {
  flex: 1;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-title:hover { color: var(--primary); }
.rank-views {
  font-size: 11px;
  color: var(--text-muted);
}

.tag-cloud .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s;
}
.tag-item:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ============ 文章流 (列表) ============ */
.article-list-stream {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-list-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.article-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.article-list-item a {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.list-image {
  flex: 0 0 200px;
  height: 130px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
  overflow: hidden;
}
.list-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.list-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.list-body h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.list-category {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  font-weight: 600;
}

/* ============ CTA Banner ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: white;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-content p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: var(--primary);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============ 文章页 ============ */
.article-page {
  max-width: 820px;
  margin: 0 auto;
}
.article-hero {
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span:last-child { color: var(--text); }

.article-title {
  font-size: 36px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.meta-author {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}
.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.meta-quality {
  color: #f59e0b;
  font-weight: 600;
}

.article-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-tags-row .tag-pill {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}
.article-tags-row .tag-pill:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.banner-inline {
  margin: 32px 0;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.banner-inline .banner-content {
  display: flex;
  width: 100%;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.article-body {
  font-size: 17px;
  line-height: 1.85;
  color: #2d3748;
}
.article-body h1, .article-body h2, .article-body h3 {
  margin: 32px 0 16px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
}
.article-body h2 {
  font-size: 26px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.article-body h3 {
  font-size: 20px;
  color: var(--text);
}
.article-body p { margin-bottom: 18px; text-align: justify; }
.article-body ul, .article-body ol {
  margin: 16px 0 16px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: linear-gradient(to right, var(--bg), transparent);
  color: var(--text-muted);
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

.banner-bottom {
  margin: 32px 0;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.banner-bottom .banner-content {
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  max-width: 728px;
  margin: 0 auto;
}

.article-disclaimer {
  margin: 32px 0;
  padding: 14px 18px;
  background: linear-gradient(to right, #fef3c7, #fef9e7);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  font-size: 13px;
  color: #78350f;
}

.article-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-share { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.share-btn {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-alt);
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.article-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.rating-stars { color: #f59e0b; letter-spacing: 2px; }

.author-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0;
}
.author-avatar-lg {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.author-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.author-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.related-section {
  margin: 48px 0 32px;
}
.related-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  display: block;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.related-image {
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.related-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.related-card h4 {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text);
}
.related-date {
  font-size: 11px;
  color: var(--text-muted);
}

.article-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}
.btn-secondary {
  padding: 10px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-alt);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ============ 列表页 Hero ============ */
.page-hero {
  text-align: center;
  padding: 48px 24px 32px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-radius: var(--radius-lg);
  margin: 24px 0 32px;
  border: 1px solid var(--border);
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.filter-tabs {
  display: inline-flex;
  gap: 8px;
  background: var(--bg);
  padding: 4px;
  border-radius: 24px;
}
.tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tab.active, .tab:hover {
  background: var(--primary);
  color: white;
}

/* ============ Tag Hero ============ */
.tag-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.tag-prefix {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.tag-hero h1 {
  font-size: 36px;
  font-weight: 700;
}

.related-tags {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.related-tags h3 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

/* ============ Empty States ============ */
.empty-state-large {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state-large h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.empty-state-large p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 24px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============ Pagination ============ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  padding: 20px 0;
}
.page-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-alt);
  transition: all 0.2s;
}
.page-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.page-current {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ About Page ============ */
.about-page { padding-bottom: 32px; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.about-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}
.about-card p, .about-card li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-card ul { padding-left: 20px; }
.about-card li { margin-bottom: 6px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-block {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-block .stat-num {
  font-size: 36px;
  color: white;
}
.stat-block .stat-label {
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* ============ 404 Page ============ */
.error-page-large {
  text-align: center;
  padding: 80px 24px;
}
.error-visual {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}
.error-number {
  font-size: 140px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -5px;
  position: relative;
  z-index: 1;
}
.error-glow {
  position: absolute;
  inset: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  filter: blur(40px);
  opacity: 0.3;
  z-index: 0;
}
.error-page-large h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.error-msg {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.error-suggestions h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.suggestion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.suggestion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.suggestion-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.suggestion-icon { font-size: 32px; }

/* ============ 内容板块 (content blocks) ============ */
.content-block {
  margin-bottom: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.block-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.block-icon {
  font-size: 32px;
  flex: 0 0 auto;
}
.block-titles {
  flex: 1;
}
.block-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.block-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Ranking List */
.ranking-list {
  list-style: none;
  counter-reset: rank;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ranking-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.ranking-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}
.rank-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-muted);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.ranking-item:nth-child(1) .rank-num { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.ranking-item:nth-child(2) .rank-num { background: linear-gradient(135deg, #94a3b8, #64748b); }
.ranking-item:nth-child(3) .rank-num { background: linear-gradient(135deg, #d97706, #b45309); }
.ranking-item:nth-child(4) .rank-num { background: linear-gradient(135deg, #4a5568, #2d3748); }
.rank-content { flex: 1; min-width: 0; }
.rank-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.rank-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Guide List */
.guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.guide-item {
  padding: 18px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  transition: all 0.2s;
}
.guide-item:hover {
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  box-shadow: var(--shadow-sm);
}
.guide-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}
.guide-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cards Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.info-card {
  padding: 18px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}
.info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.info-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.info-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before {
  content: 'Q';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 6px;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  margin-right: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 20px 18px 56px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: var(--bg); }
.comparison-table tr:hover { background: rgba(0,0,0,0.02); }

/* People Grid */
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.person-card {
  padding: 20px;
  background: linear-gradient(135deg, var(--bg), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
}
.person-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.person-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.person-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}
.person-date {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
}
.person-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 4px;
}
.person-meta {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.person-meaning, .person-traits, .person-reason {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}
.person-match {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
}

/* ============ 响应式: 内容板块 ============ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-list { grid-template-columns: 1fr; }
  .ranking-list { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
  .content-block { padding: 24px; }
}

@media (max-width: 640px) {
  .card-grid, .guide-list, .ranking-list, .people-grid { grid-template-columns: 1fr; }
  .block-title { font-size: 18px; }
  .content-block { padding: 20px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 12px; }
}
.banner-sidebar {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 280px;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}
.banner-sidebar .banner-content {
  display: flex;
  width: 280px;
  height: 220px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  border-radius: var(--radius);
  color: white;
}
.banner-sidebar .banner-icon { font-size: 36px; margin-bottom: 12px; }
.banner-sidebar .banner-text-block strong {
  font-size: 16px;
  line-height: 1.5;
  display: block;
}
.banner-sidebar .banner-arrow {
  margin-top: 12px;
  font-size: 20px;
}

/* ============ 多级导航菜单 ============ */
.main-nav {
  position: relative;
}
.nav-item {
  position: relative;
}
.nav-arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
}
.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.dropdown-item:hover {
  background: var(--bg);
  color: var(--primary);
  padding-left: 18px;
}
.header-tagline {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 200px;
  text-align: right;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============ Footer 增强 ============ */
.footer-disclaimer {
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-meta {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 8px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 13px; }
.footer-col a { color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12px;
  opacity: 0.5;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .hero-mini { flex: 1; }
  .article-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .article-grid-2 { grid-template-columns: 1fr; }
  .dual-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 20px 16px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .site-header .container { flex-direction: column; gap: 12px; align-items: flex-start; }
  .main-nav { width: 100%; flex-wrap: wrap; gap: 16px; }
  .nav-tagline { display: none; }
  .hero-image { min-height: 320px; padding: 24px; }
  .hero-overlay h1 { font-size: 24px; }
  .hero-side { flex-direction: column; }
  .article-grid-3 { grid-template-columns: 1fr; }
  .article-list-item a { flex-direction: column; }
  .list-image { flex: none; width: 100%; }
  .related-grid { grid-template-columns: 1fr; }
  .suggestion-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 26px; }
  .page-hero h1, .tag-hero h1 { font-size: 24px; }
  .banner-sidebar { display: none; }
  .stats-bar { flex-direction: column; gap: 12px; }
  .article-meta-bar { font-size: 12px; gap: 10px; }
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 20px; }
  .error-number { font-size: 90px; }
  .cta-content h3 { font-size: 22px; }
}