.page-home {
  --home-amber: #E8A33D;
  --home-orange: #C75B12;
  --home-brown: #2E1E16;
  --home-brown-deep: #1B110D;
  --home-cream: #F5E6D3;
  --home-lime: #7FFF00;
  --home-blue: #00D4FF;
  --home-gray: #6B5B4F;
  --home-gold: #B8860B;
  --home-light-amber: #F0C29A;
  --home-cream-dim: rgba(245, 230, 211, 0.65);
  background: var(--home-brown);
  overflow-x: hidden;
}

.page-home .container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-home .breadcrumb {
  padding: 1rem 0 0;
}

.page-home .breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--home-cream-dim);
}

.page-home .breadcrumb a {
  color: var(--home-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .breadcrumb a:hover {
  color: var(--home-cream);
}

.page-home .breadcrumb li[aria-current="page"] {
  color: var(--home-cream);
}

/* ===== Hero 区域 ===== */
.page-home .home-hero {
  position: relative;
  padding: 4rem 0 5rem;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  background: var(--home-brown-deep);
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 163, 61, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: overlay;
  z-index: 2;
}

.page-home .hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) contrast(1.1) sepia(0.25);
}

.page-home .hero-bg__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27, 17, 13, 0.92) 0%, rgba(46, 30, 22, 0.75) 50%, rgba(46, 30, 22, 0.45) 100%);
  z-index: 1;
}

.page-home .hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.page-home .hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-lime);
  margin-bottom: 1.5rem;
}

.page-home .hero-copy__eyebrow::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  background: var(--home-lime);
}

.page-home .hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--home-cream);
  letter-spacing: 0.01em;
  margin: 0 0 1.75rem;
  max-width: 760px;
}

.page-home .hero-copy__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--home-cream-dim);
  max-width: 620px;
  margin: 0 0 2rem;
}

.page-home .hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.page-home .btn--primary {
  background: var(--home-amber);
  color: var(--home-brown-deep);
  border: 1px solid var(--home-amber);
}

.page-home .btn--primary:hover {
  background: var(--home-light-amber);
  border-color: var(--home-light-amber);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--home-cream);
  border: 1px solid rgba(245, 230, 211, 0.4);
}

.page-home .btn--ghost:hover {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

.page-home .hero-copy__slogan {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--home-amber);
  border-left: 3px solid var(--home-orange);
  padding-left: 1rem;
  line-height: 1.6;
}

.page-home .hero-panel {
  display: flex;
  justify-content: flex-start;
}

.page-home .hero-panel__card {
  width: 100%;
  max-width: 520px;
  background: rgba(27, 17, 13, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 163, 61, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-home .hero-panel__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--home-cream);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(232, 163, 61, 0.2);
  margin-bottom: 1.5rem;
}

.page-home .hero-panel__scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-home .scoreboard-cell {
  background: rgba(245, 230, 211, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(245, 230, 211, 0.08);
}

.page-home .scoreboard-cell__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--home-amber);
  white-space: nowrap;
}

.page-home .scoreboard-cell__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--home-cream-dim);
  margin-top: 0.375rem;
}

.page-home .hero-panel__note {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--home-cream-dim);
  margin: 0 0 1.5rem;
}

.page-home .btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===== 经典版本入口 ===== */
.page-home .classic-entry {
  background: var(--home-cream);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 4;
  padding: 4.5rem 1rem 4rem;
  width: 100%;
  max-width: 100%;
}

.page-home .section-heading {
  margin-bottom: 3rem;
}

.page-home .section-heading__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin-bottom: 0.875rem;
}

.page-home .section-heading__kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--home-orange);
}

.page-home .section-heading__rule {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--home-amber), var(--home-orange));
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.page-home .section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--home-brown-deep);
  margin: 0 0 1rem;
}

.page-home .section-heading p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--home-gray);
  max-width: 720px;
}

.page-home .classic-entry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-home .classic-preview {
  position: relative;
}

.page-home .classic-preview__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(46, 30, 22, 0.18);
}

.page-home .classic-preview__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--home-orange);
  color: var(--home-cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-home .classic-compare {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-home .compare-panel {
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-home .compare-panel__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.25s ease;
}

.page-home .compare-panel__row:hover {
  background: var(--home-light-amber);
}

.page-home .compare-panel__row + .compare-panel__row {
  border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.page-home .compare-panel__label {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--home-brown);
}

.page-home .compare-panel__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--home-gray);
}

.page-home .classic-compare__note {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--home-gray);
  background: rgba(240, 194, 154, 0.35);
  border-left: 4px solid var(--home-gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== 电脑简体版新体验 ===== */
.page-home .pc-experience {
  background: var(--home-brown);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-home .pc-experience::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -20%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(199, 91, 18, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .pc-experience__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.page-home .pc-experience__visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .pc-experience__svg {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.page-home .pc-experience__label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.5);
  letter-spacing: 0.08em;
  background: rgba(27, 17, 13, 0.7);
  padding: 0.3125rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 163, 61, 0.2);
}

.page-home .pc-experience__content {
  max-width: 560px;
}

.page-home .pc-experience__content .section-heading__kicker {
  color: var(--home-lime);
}

.page-home .pc-experience__content .section-heading__kicker::before {
  background: var(--home-lime);
}

.page-home .pc-experience__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--home-cream);
  line-height: 1.25;
  margin: 0 0 1.25rem;
}

.page-home .pc-experience__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--home-cream-dim);
  margin-bottom: 1.75rem;
}

.page-home .pc-experience__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.875rem;
}

.page-home .pc-experience__list li {
  position: relative;
  padding-left: 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--home-cream);
}

.page-home .pc-experience__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--home-amber);
  box-shadow: 0 0 0 4px rgba(232, 163, 61, 0.2);
}

.page-home .pc-experience__list li:nth-child(2)::before {
  background: var(--home-lime);
  box-shadow: 0 0 0 4px rgba(127, 255, 0, 0.2);
}

.page-home .pc-experience__list li:nth-child(3)::before {
  background: var(--home-blue);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
}

/* ===== 新闻头条 ===== */
.page-home .news-highlight {
  background: var(--home-cream);
  padding: 4.5rem 1rem;
  max-width: 100%;
}

.page-home .news-highlight__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-home .news-feed {
  display: grid;
  gap: 1rem;
}

.page-home .news-card {
  background: #fff8f0;
  border: 1px solid rgba(184, 134, 11, 0.16);
  border-radius: var(--radius-md);
  padding: 1.375rem 1.5rem;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: default;
}

.page-home .news-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(46, 30, 22, 0.1);
  background: var(--home-light-amber);
}

.page-home .news-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--home-cream);
  background: var(--home-orange);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}

.page-home .news-card:nth-child(2) .news-card__tag {
  background: var(--home-gold);
}

.page-home .news-card:nth-child(3) .news-card__tag {
  background: var(--home-gray);
}

.page-home .news-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--home-brown-deep);
  margin: 0 0 0.5rem;
}

.page-home .news-card__meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--home-gray);
  margin: 0;
}

.page-home .news-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.page-home .news-visual__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(46, 30, 22, 0.18);
}

.page-home .news-visual__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(27, 17, 13, 0.78);
  color: var(--home-cream);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(232, 163, 61, 0.35);
}

/* ===== 更新记录与版面 ===== */
.page-home .update-record {
  position: relative;
  padding: 5rem 0;
}

.page-home .update-record__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .update-record__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.05);
}

.page-home .update-record__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(46, 30, 22, 0.9) 0%, rgba(46, 30, 22, 0.68) 55%, rgba(184, 134, 11, 0.28) 100%);
}

.page-home .update-record__content {
  position: relative;
  z-index: 2;
}

.page-home .section-heading--light {
  color: var(--home-cream);
}

.page-home .section-heading--light .section-heading__kicker {
  color: var(--home-lime);
}

.page-home .section-heading--light .section-heading__kicker::before {
  background: var(--home-lime);
}

.page-home .section-heading--light h2 {
  color: var(--home-cream);
}

.page-home .section-heading--light p {
  color: var(--home-cream-dim);
}

.page-home .update-record__timeline {
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0;
}

.page-home .timeline-item {
  position: relative;
  padding-left: 2.25rem;
}

.page-home .timeline-item::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.625rem;
  bottom: -1.25rem;
  width: 1px;
  background: linear-gradient(180deg, var(--home-amber), rgba(232, 163, 61, 0.2));
}

.page-home .timeline-item:last-child::before {
  display: none;
}

.page-home .timeline-item__dot {
  position: absolute;
  left: 0.1875rem;
  top: 0.5625rem;
  width: 0.625rem;
  height: 0.625rem;
  background: var(--home-amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(232, 163, 61, 0.22);
  z-index: 1;
}

.page-home .timeline-item:nth-child(2) .timeline-item__dot {
  background: var(--home-lime);
  box-shadow: 0 0 0 5px rgba(127, 255, 0, 0.18);
}

.page-home .timeline-item:nth-child(3) .timeline-item__dot {
  background: var(--home-blue);
  box-shadow: 0 0 0 5px rgba(0, 212, 255, 0.18);
}

.page-home .timeline-item__body {
  background: rgba(27, 17, 13, 0.72);
  border: 1px solid rgba(232, 163, 61, 0.18);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  backdrop-filter: blur(8px);
}

.page-home .timeline-item__time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--home-lime);
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.page-home .timeline-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--home-cream);
  margin: 0 0 0.375rem;
}

.page-home .timeline-item__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--home-cream-dim);
  margin: 0;
}

.page-home .update-record__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== 状态面板 ===== */
.page-home .home-status {
  background: var(--home-cream);
  padding: 4rem 1rem;
  max-width: 100%;
}

.page-home .status-panel {
  background: #fff8f0;
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 780px;
  margin-inline: auto;
  box-shadow: 0 14px 40px rgba(46, 30, 22, 0.08);
}

.page-home .status-panel__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3125rem;
  padding: 0.875rem 0;
}

.page-home .status-panel__row + .status-panel__row {
  border-top: 1px solid rgba(184, 134, 11, 0.14);
}

.page-home .status-panel__label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-gray);
}

.page-home .status-panel__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--home-brown-deep);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.page-home .status-panel__value--links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.75rem;
}

.page-home .status-panel__value--links a {
  color: var(--home-blue);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.875rem;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-home .status-panel__value--links a:hover {
  border-color: var(--home-blue);
  background: rgba(0, 212, 255, 0.1);
}

/* ===== 通用按钮 ===== */
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
  cursor: pointer;
}

.page-home .signal-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--home-lime);
  box-shadow: 0 0 0 0 rgba(127, 255, 0, 0.8);
  animation: home-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes home-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 255, 0, 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(127, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(127, 255, 0, 0);
  }
}

/* ===== 图片响应式保护 ===== */
.page-home img {
  max-width: 100%;
  height: auto;
}

/* ===== 桌面端布局增强 ===== */
@media (min-width: 768px) {
  .page-home .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }

  .page-home .hero-panel {
    justify-content: flex-end;
  }

  .page-home .classic-entry__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }

  .page-home .classic-compare__note {
    font-size: 1rem;
  }

  .page-home .pc-experience__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }

  .page-home .news-highlight__layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }

  .page-home .status-panel__row {
    grid-template-columns: 180px 1fr;
    align-items: baseline;
    gap: 1rem;
  }

  .page-home .timeline-item {
    padding-left: 3rem;
  }

  .page-home .timeline-item::before {
    left: 0.75rem;
  }

  .page-home .timeline-item__dot {
    left: 0.4375rem;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 6rem 0 6.5rem;
  }

  .page-home .hero-panel__card {
    padding: 2rem;
  }

  .page-home .news-feed {
    gap: 1.25rem;
  }

  .page-home .news-card {
    padding: 1.5rem 1.75rem;
  }

  .page-home .update-record__timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .page-home .timeline-item::before {
    top: 0.9375rem;
    left: 0;
    bottom: -2rem;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 163, 61, 0.6), rgba(232, 163, 61, 0.15));
  }

  .page-home .timeline-item {
    padding-left: 0;
    padding-right: 0;
  }

  .page-home .timeline-item__dot {
    left: 0.375rem;
    top: 0.5rem;
  }

  .page-home .timeline-item:nth-child(2) .timeline-item__dot {
    left: 33.33%;
  }

  .page-home .timeline-item:nth-child(3) .timeline-item__dot {
    left: 66.66%;
  }
}
