.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background: radial-gradient(ellipse at center top, rgba(153, 27, 27, 0.25) 0%, transparent 60%),
              linear-gradient(180deg, var(--wuhun-ink) 0%, #0f0805 100%);
  text-align: center;
}

.page-hero-title {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--wuhun-gold);
  text-shadow: 0 3px 15px rgba(153, 27, 27, 0.7);
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245, 230, 211, 0.85);
  max-width: 700px;
  margin: 0 auto;
}

.guide-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #0f0805 0%, var(--wuhun-ink) 100%);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-card {
  background: linear-gradient(145deg, rgba(42, 24, 16, 0.9), rgba(26, 15, 10, 0.95));
  border: 1px solid rgba(180, 83, 9, 0.3);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wuhun-red), var(--wuhun-bronze), var(--wuhun-gold));
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 211, 77, 0.4);
  box-shadow: 0 15px 35px rgba(153, 27, 27, 0.2);
}

.guide-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(153, 27, 27, 0.2);
  border: 1px solid var(--wuhun-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wuhun-gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.guide-card h3 {
  font-family: 'Ma Shan Zheng', cursive;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--wuhun-gold);
  margin-bottom: 0.75rem;
}

.guide-card p {
  color: rgba(245, 230, 211, 0.8);
  font-size: 0.9375rem;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.guide-card .btn-secondary {
  align-self: flex-start;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
