.page-home {
  --splash-gold-overlay: linear-gradient(135deg, rgba(212, 160, 23, 0.12) 0%, transparent 60%);
  --card-clip: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  --avatar-ring: 0 0 0 2px rgba(212, 160, 23, 0.3);
  --glow-gold: 0 0 32px rgba(212, 160, 23, 0.25);
}

/* ===== 面包屑 ===== */
.page-home .breadcrumb {
  padding: 16px var(--max-w, 1280px) 0;
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.page-home .breadcrumb .current {
  color: var(--gold, #D4A017);
  font-family: var(--font-ui, monospace);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ===== 分屏首屏 ===== */
.page-home .splash-split {
  display: flex;
  flex-direction: column;
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 24px 16px 40px;
  position: relative;
  gap: 32px;
}
.page-home .splash-text {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
}
.page-home .splash-text .tag-gold {
  margin-bottom: 12px;
}
.page-home .splash-text h1 {
  font-family: 'Noto Serif SC', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--text-primary, #FFFFFF);
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--gold-light, #F0C75E) 0%, var(--gold, #D4A017) 60%, var(--gold-dark, #B8860B) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-home .splash-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary, #CCCCCC);
  margin: 0 0 28px;
  max-width: 480px;
}
.page-home .splash-visual {
  flex: 1 1 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: var(--splash-gold-overlay), var(--bg-card, #2C2C2C);
  border-radius: var(--radius-lg, 8px);
  border: var(--border-gold, 1px solid rgba(212,160,23,.45));
  overflow: hidden;
}
.page-home .splash-img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg, 8px);
}
.page-home .splash-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== 核心功能入口 ===== */
.page-home .core-entry {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 32px 16px 48px;
}
.page-home .entry-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.page-home .entry-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card, #2C2C2C);
  border: var(--border-gold, 1px solid rgba(212,160,23,.45));
  border-radius: var(--radius-lg, 8px);
  overflow: hidden;
  transition: var(--transition, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease);
  clip-path: var(--card-clip);
}
.page-home .entry-card:hover,
.page-home .entry-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold, 0 4px 24px rgba(212,160,23,.15)), var(--glow-gold);
  border-color: var(--gold-light, #F0C75E);
  background: var(--bg-card-hover, #363636);
}
.page-home .entry-card-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.page-home .entry-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.page-home .entry-card:hover .entry-card-img img {
  transform: scale(1.03);
}
.page-home .entry-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page-home .entry-card-body h3 {
  font-family: 'Noto Serif SC', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold, #D4A017);
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.page-home .entry-card-body p {
  color: var(--text-secondary, #CCCCCC);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}
.page-home .entry-card-body .btn-ghost {
  align-self: flex-start;
}

/* ===== 近期更新摘要 ===== */
.page-home .recent-update {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 32px 16px 48px;
}
.page-home .update-card {
  padding: 28px 32px;
  border-radius: var(--radius-lg, 8px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  clip-path: var(--card-clip);
}
.page-home .update-label {
  font-family: var(--font-ui, monospace);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light, #F0C75E);
  background: rgba(212, 160, 23, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius, 4px);
  border: 1px solid rgba(212, 160, 23, 0.3);
}
.page-home .update-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary, #FFFFFF);
  margin: 0;
  max-width: 640px;
}
.page-home .update-card .btn-ghost {
  margin-top: 4px;
}

/* ===== 玩家心得精选 ===== */
.page-home .player-insights {
  max-width: var(--max-w, 1280px);
  margin: 0 auto;
  padding: 32px 16px 64px;
}
.page-home .insights-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.page-home .insight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card, #2C2C2C);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: var(--radius-lg, 8px);
  padding: 16px 20px;
  transition: var(--transition, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease);
  position: relative;
  overflow: hidden;
}
.page-home .insight-card:hover,
.page-home .insight-card:focus-within {
  border-color: var(--gold, #D4A017);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.12);
  transform: translateX(4px);
  background: var(--bg-card-hover, #363636);
}
.page-home .insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold, #D4A017), var(--gold-dark, #B8860B));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-home .insight-card:hover::before {
  opacity: 1;
}
.page-home .insight-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--avatar-ring);
  transition: box-shadow 0.3s ease;
}
.page-home .insight-card:hover .insight-avatar {
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.5);
}
.page-home .insight-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.page-home .insight-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary, #CCCCCC);
  margin: 0;
}
.page-home .insight-card .tag-gold {
  flex-shrink: 0;
  font-size: 0.75rem;
}
.page-home .player-insights .text-center {
  width: 100%;
}

/* ===== 响应式 - 桌面端 ===== */
@media (min-width: 768px) {
  .page-home .splash-split {
    flex-direction: row;
    padding: 40px 24px 60px;
    gap: 48px;
    min-height: 520px;
    align-items: stretch;
  }
  .page-home .splash-text {
    flex: 0 0 38%;
    padding: 20px 0;
  }
  .page-home .splash-text h1 {
    font-size: 3.2rem;
  }
  .page-home .splash-desc {
    font-size: 1.15rem;
  }
  .page-home .splash-visual {
    flex: 0 0 58%;
    min-height: 420px;
  }
  .page-home .splash-img {
    height: 100%;
    object-fit: cover;
  }
  .page-home .core-entry {
    padding: 40px 24px 56px;
  }
  .page-home .entry-cards {
    flex-direction: row;
    gap: 32px;
  }
  .page-home .entry-card {
    flex: 1;
  }
  .page-home .entry-card-img {
    height: 200px;
  }
  .page-home .entry-card-img img {
    height: 100%;
    object-fit: cover;
  }
  .page-home .entry-card-body h3 {
    font-size: 1.5rem;
  }
  .page-home .recent-update {
    padding: 40px 24px 56px;
  }
  .page-home .update-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
  }
  .page-home .update-label {
    flex-shrink: 0;
  }
  .page-home .update-desc {
    flex: 1;
    font-size: 1.1rem;
  }
  .page-home .update-card .btn-ghost {
    flex-shrink: 0;
    margin-top: 0;
  }
  .page-home .player-insights {
    padding: 40px 24px 80px;
  }
  .page-home .insights-grid {
    flex-direction: row;
    gap: 24px;
  }
  .page-home .insight-card {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 28px;
    gap: 12px;
  }
  .page-home .insight-card:hover {
    transform: translateY(-4px);
  }
  .page-home .insight-card::before {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold, #D4A017), var(--gold-dark, #B8860B));
  }
  .page-home .insight-avatar {
    width: 72px;
    height: 72px;
  }
  .page-home .insight-text {
    font-size: 1rem;
    margin: 4px 0;
  }
  .page-home .insight-card .tag-gold {
    align-self: flex-start;
  }
}

@media (min-width: 1024px) {
  .page-home .splash-split {
    padding: 48px 32px 72px;
    gap: 64px;
  }
  .page-home .splash-text h1 {
    font-size: 3.6rem;
  }
  .page-home .splash-visual {
    flex: 0 0 56%;
  }
  .page-home .entry-card-img {
    height: 220px;
  }
  .page-home .insight-avatar {
    width: 80px;
    height: 80px;
  }
}
