/* ===== 页面专属：首屏·赛事中枢 ===== */
.page-home {
  --ph-hero-min-height: 92vh;
  --ph-glass-blur: 16px;
  --ph-glass-bg: rgba(74, 14, 78, 0.28);
  --ph-card-radius: 12px;
  --ph-transition-speed: 0.4s;
  display: block;
  width: 100%;
}

/* ----- 首屏 ----- */
.ph-hero {
  position: relative;
  min-height: var(--ph-hero-min-height);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-deep-purple) 0%, #3a0a3e 45%, #5a1840 70%, var(--primary-gold) 130%);
}

.ph-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.ph-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.65) 0%, rgba(74, 14, 78, 0.15) 50%, rgba(212, 175, 55, 0.12) 100%);
  pointer-events: none;
}

.ph-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
  gap: 2.5rem;
}

.ph-glass-panel {
  width: 100%;
  max-width: 820px;
  padding: 2rem 1.8rem;
  background: var(--ph-glass-bg);
  backdrop-filter: blur(var(--ph-glass-blur));
  -webkit-backdrop-filter: blur(var(--ph-glass-blur));
  border-radius: var(--ph-card-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 40px rgba(74, 14, 78, 0.25);
  text-align: center;
}

.ph-context-badge {
  display: inline-block;
  padding: 0.2rem 1rem;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.ph-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 10vw, 5.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--primary-gold) 60%, #f5d76e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem;
  text-shadow: none;
}

.ph-hero-sub {
  font-family: var(--body-font);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 248, 231, 0.9);
  margin: 0 0 0.6rem;
  letter-spacing: 0.04em;
}

.ph-hero-desc {
  font-family: var(--body-font);
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 248, 231, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.ph-cards-cluster {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 720px;
}

.ph-preview-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 248, 231, 0.92);
  border-radius: var(--ph-card-radius);
  text-decoration: none;
  color: var(--text-dark-brown);
  box-shadow: 0 4px 16px rgba(74, 14, 78, 0.12);
  transition: transform var(--ph-transition-speed) ease, box-shadow var(--ph-transition-speed) ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ph-preview-card:hover,
.ph-preview-card:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 28px rgba(74, 14, 78, 0.22);
  border-color: var(--primary-gold);
}

.ph-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.ph-card-label {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--primary-deep-purple);
  display: block;
}

.ph-card-brief {
  font-family: var(--body-font);
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.8;
  display: block;
  margin-top: 0.1rem;
}

.ph-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: rgba(255, 248, 231, 0.5);
  letter-spacing: 0.15em;
  animation: ph-bounce-down 2s ease-in-out infinite;
  z-index: 3;
}

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

/* ----- 通用板块结构 ----- */
.ph-section {
  padding: 3rem 1.5rem;
  background: var(--background-cream);
  border-top: 1px solid rgba(74, 14, 78, 0.06);
}

.ph-section-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.ph-section-head {
  margin-bottom: 2.2rem;
  text-align: left;
}

.ph-section-tag {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-gold);
  background: rgba(74, 14, 78, 0.08);
  padding: 0.2rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.ph-section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-deep-purple) 0%, #6a1a6e 40%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.4rem;
}

.ph-section-desc {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
  max-width: 640px;
  margin: 0;
}

/* ----- 时间轴：第13轮看板 ----- */
.ph-round-section {
  background: linear-gradient(180deg, #f5efe0 0%, var(--background-cream) 100%);
}

.ph-timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1rem;
  cursor: grab;
}

.ph-timeline-track {
  position: relative;
  min-width: 640px;
  padding: 0.5rem 0;
}

.ph-timeline-line {
  position: absolute;
  top: 2.2rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-deep-purple) 0%, var(--primary-gold) 50%, var(--accent-neon-blue) 100%);
  border-radius: 2px;
  opacity: 0.35;
}

.ph-timeline-items {
  display: flex;
  gap: 0.8rem;
  position: relative;
}

.ph-tl-item {
  flex: 1;
  min-width: 100px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  padding: 0.8rem 0.6rem 0.6rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(74, 14, 78, 0.08);
  transition: transform var(--ph-transition-speed) ease, box-shadow var(--ph-transition-speed) ease;
}

.ph-tl-item:hover,
.ph-tl-item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(74, 14, 78, 0.13);
  border-color: var(--primary-gold);
}

.ph-tl-dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--primary-gold);
  border: 3px solid var(--background-cream);
  border-radius: 50%;
  margin: 0 auto 0.6rem;
  box-shadow: 0 0 0 2px var(--primary-deep-purple);
}

.ph-tl-time {
  display: block;
  font-family: var(--body-font);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary-deep-purple);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.ph-tl-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ph-tl-match {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--text-dark-brown);
  line-height: 1.1;
}

.ph-tl-venue {
  font-family: var(--body-font);
  font-size: 0.65rem;
  color: var(--text-body);
  opacity: 0.7;
}

.ph-tl-link {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: none;
  margin-top: 0.2rem;
  transition: color 0.2s;
}

.ph-tl-link:hover {
  color: var(--accent-neon-blue);
}

.ph-timeline-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: var(--text-body);
  opacity: 0.7;
}

.ph-tl-label {
  font-style: italic;
}

/* ----- 会员权益对比 ----- */
.ph-membership-section {
  background: linear-gradient(180deg, var(--background-cream) 0%, #f0ead8 100%);
}

.ph-compare-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ph-compare-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--ph-card-radius);
  padding: 1.5rem 1.2rem;
  border: 1px solid rgba(74, 14, 78, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--ph-transition-speed) ease, box-shadow var(--ph-transition-speed) ease;
}

.ph-compare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(74, 14, 78, 0.16);
}

.ph-compare-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(74, 14, 78, 0.06);
}

.ph-compare-version {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--primary-deep-purple);
}

.ph-compare-badge {
  font-family: var(--body-font);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 16px;
  background: rgba(74, 14, 78, 0.08);
  color: var(--text-body);
}

.ph-badge-gold {
  background: linear-gradient(135deg, var(--primary-gold), #f5d76e);
  color: var(--primary-deep-purple);
}

.ph-compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ph-compare-item {
  font-family: var(--body-font);
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-body);
  padding-left: 1.4rem;
  position: relative;
}

.ph-compare-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
}

.ph-compare-item:first-child::before {
  color: var(--accent-neon-blue);
}

.ph-compare-progress {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: var(--text-body);
}

.ph-progress-label {
  flex-shrink: 0;
  font-weight: 500;
}

.ph-progress-track {
  flex: 1;
  height: 8px;
  background: rgba(74, 14, 78, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.ph-progress-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-deep-purple), #7a2a7e);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.ph-fill-gold {
  background: linear-gradient(90deg, var(--primary-gold), #f5d76e);
}

.ph-progress-value {
  font-weight: 600;
  min-width: 2.4rem;
  text-align: right;
}

.ph-compare-footnote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(212, 175, 55, 0.06);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--primary-gold);
}

.ph-compare-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.ph-footnote-text {
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-body);
  opacity: 0.8;
  margin: 0;
}

/* ----- 场馆信息 ----- */
.ph-venue-section {
  background: linear-gradient(180deg, #f0ead8 0%, var(--background-cream) 100%);
}

.ph-venue-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ph-filter-btn {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(74, 14, 78, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.25s ease;
}

.ph-filter-btn:hover {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.08);
}

.ph-filter-active {
  background: var(--primary-deep-purple);
  color: var(--primary-gold);
  border-color: var(--primary-deep-purple);
}

.ph-venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.ph-venue-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--ph-card-radius);
  overflow: hidden;
  border: 1px solid rgba(74, 14, 78, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform var(--ph-transition-speed) ease, box-shadow var(--ph-transition-speed) ease;
}

.ph-venue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(74, 14, 78, 0.14);
}

.ph-venue-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ph-venue-body {
  padding: 1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ph-venue-body-app {
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.ph-venue-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ph-venue-name {
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--primary-deep-purple);
}

.ph-venue-tag {
  font-family: var(--body-font);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
}

.ph-tag-live {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-neon-blue);
  animation: ph-pulse-live 2s ease-in-out infinite;
}

@keyframes ph-pulse-live {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.ph-venue-type {
  font-family: var(--body-font);
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.7;
}

.ph-venue-capacity {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dark-brown);
}

.ph-venue-link {
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-gold);
  text-decoration: none;
  margin-top: 0.2rem;
  transition: color 0.2s;
}

.ph-venue-link:hover {
  color: var(--accent-neon-blue);
}

.ph-link-app {
  display: inline-block;
  margin-top: 0.3rem;
}

.ph-venue-app-icon {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}

.ph-app-mockup {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  border-radius: 8px;
}

.ph-venue-app-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ph-venue-desc {
  font-family: var(--body-font);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-body);
  margin: 0;
}

/* ----- 用户偏好推荐 ----- */
.ph-recommend-section {
  background: linear-gradient(180deg, var(--background-cream) 0%, #f5efe0 100%);
}

.ph-recommend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.ph-recommend-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--ph-card-radius);
  border: 1px solid rgba(74, 14, 78, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform var(--ph-transition-speed) ease, box-shadow var(--ph-transition-speed) ease;
}

.ph-recommend-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(74, 14, 78, 0.13);
}

.ph-rec-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 14, 78, 0.06);
  border-radius: 12px;
}

.ph-rec-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ph-rec-label {
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--primary-deep-purple);
}

.ph-rec-reason {
  font-family: var(--body-font);
  font-size: 0.75rem;
  color: var(--primary-gold);
  font-weight: 500;
}

.ph-rec-meta {
  font-family: var(--body-font);
  font-size: 0.7rem;
  color: var(--text-body);
  opacity: 0.7;
}

.ph-rec-link {
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-neon-blue);
  text-decoration: none;
  margin-top: 0.2rem;
  transition: color 0.2s;
}

.ph-rec-link:hover {
  color: var(--primary-gold);
}

.ph-recommend-extra {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(74, 14, 78, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-radius: var(--ph-card-radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ph-career-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-deep-purple);
  transition: gap 0.3s ease;
}

.ph-career-link:hover {
  gap: 0.9rem;
  color: var(--primary-gold);
}

.ph-career-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--highlight-red-orange), #ff8a55);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ph-career-text {
  letter-spacing: -0.01em;
}

.ph-career-arrow {
  font-size: 1.2rem;
  color: var(--primary-gold);
}

.ph-career-note {
  font-family: var(--body-font);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-body);
  opacity: 0.7;
  margin: 0.6rem 0 0;
}

/* ----- 信任声明 ----- */
.ph-trust-section {
  background: linear-gradient(180deg, #f5efe0 0%, #ede6d2 100%);
  border-top: 1px solid rgba(74, 14, 78, 0.08);
  padding-bottom: 4rem;
}

.ph-trust-block {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--ph-card-radius);
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(74, 14, 78, 0.06);
  text-align: center;
}

.ph-trust-text {
  font-family: var(--body-font);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 1.2rem;
}

.ph-trust-link {
  color: var(--primary-gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.ph-trust-link:hover {
  color: var(--accent-neon-blue);
}

.ph-trust-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.ph-trust-btn {
  font-family: var(--body-font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  border-radius: 24px;
  text-decoration: none;
  color: var(--primary-deep-purple);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(74, 14, 78, 0.12);
  transition: all 0.25s ease;
}

.ph-trust-btn:hover {
  background: var(--primary-deep-purple);
  color: var(--primary-gold);
  border-color: var(--primary-deep-purple);
}

/* ===== 桌面端 ≥768px ===== */
@media (min-width: 768px) {
  .ph-hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
  }

  .ph-glass-panel {
    flex: 1 1 45%;
    text-align: left;
    padding: 2.5rem 2.2rem;
  }

  .ph-hero-desc {
    margin: 0;
  }

  .ph-cards-cluster {
    flex: 1 1 45%;
    max-width: 420px;
  }

  .ph-preview-card {
    padding: 1.3rem 1.6rem;
  }

  .ph-compare-grid {
    flex-direction: row;
    gap: 2rem;
  }

  .ph-compare-card {
    flex: 1;
    padding: 1.8rem 1.5rem;
  }

  .ph-compare-footnote {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .ph-compare-img {
    max-width: 200px;
  }

  .ph-venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ph-venue-img {
    height: 200px;
  }

  .ph-recommend-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ph-recommend-card {
    flex-direction: column;
    text-align: center;
  }

  .ph-rec-icon {
    margin: 0 auto;
  }

  .ph-rec-body {
    text-align: center;
  }

  .ph-section {
    padding: 4rem 2rem;
  }

  .ph-trust-block {
    padding: 2.2rem 2.5rem;
  }

  .ph-venue-body-app {
    flex-direction: column;
    text-align: center;
  }

  .ph-venue-app-icon {
    width: 100px;
  }

  .ph-venue-app-info {
    text-align: center;
  }
}

/* ===== 桌面大屏 ≥1024px ===== */
@media (min-width: 1024px) {
  .ph-hero-title {
    font-size: 4.6rem;
  }

  .ph-hero-inner {
    gap: 4rem;
  }

  .ph-glass-panel {
    padding: 3rem 2.5rem;
  }

  .ph-cards-cluster {
    max-width: 480px;
  }

  .ph-venue-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ph-venue-card:nth-child(4) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .ph-venue-body-app {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem 1.8rem;
  }

  .ph-venue-app-icon {
    width: 120px;
  }

  .ph-venue-app-info {
    text-align: left;
  }

  .ph-timeline-items {
    gap: 1.2rem;
  }

  .ph-tl-item {
    padding: 1rem 0.8rem 0.8rem;
  }
}

/* ===== 桌面大屏 ≥1280px ===== */
@media (min-width: 1280px) {
  .ph-venue-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ph-venue-card:nth-child(4) {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .ph-venue-body-app {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .ph-venue-app-icon {
    width: 90px;
  }

  .ph-venue-app-info {
    text-align: center;
  }
}

/* ===== 动效：滚动显现 ===== */
@media (prefers-reduced-motion: no-preference) {
  [data-scroll-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  [data-scroll-reveal].ph-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .ph-progress-fill {
    transition: width 1s ease 0.3s;
  }

  .ph-tl-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ph-scroll-hint {
    animation: none;
  }

  .ph-tag-live {
    animation: none;
  }

  .ph-preview-card,
  .ph-compare-card,
  .ph-venue-card,
  .ph-recommend-card,
  .ph-tl-item {
    transition: none;
  }

  .ph-preview-card:hover,
  .ph-compare-card:hover,
  .ph-venue-card:hover,
  .ph-recommend-card:hover,
  .ph-tl-item:hover {
    transform: none;
  }
}
