@import url('home.css');




.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding-top: 64px;
  background-image: linear-gradient(to bottom, rgba(12,10,9,.8) 0%, rgba(12,10,9,.5) 60%, rgba(12,10,9,1) 100%), url('https://yqcdn.fuhua95.com/game/20250624/866bee01d2db6f449b79d3e2b28054bc.png');
  background-size: cover; background-position: center 30%;
}
.page-title { font-family: var(--font-shufa); color: var(--jh-gold); font-size: clamp(2.5rem, 8vw, 4.5rem); text-shadow: 0 4px 20px rgba(0,0,0,.7); margin: 0; }
.page-sub { font-family: var(--font-serif); color: var(--jh-light); font-size: clamp(1rem, 2.2vw, 1.35rem); margin-top: .5rem; }

.drawer-flow { max-width: 720px; margin: 0 auto; }
.drawer {
  background: rgba(28,25,23,.7);
  border: 1px solid rgba(250,204,21,.12);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: rgba(250,204,21,.05);
  transition: background .2s;
}
.drawer-header:hover { background: rgba(250,204,21,.1); }
.drawer-title { display: flex; align-items: center; gap: .75rem; }
.drawer-step {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--jh-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.drawer-title h3 { font-family: var(--font-shufa); color: var(--jh-gold); font-size: 1.35rem; margin: 0; }
.drawer-icon { color: var(--jh-gold); transition: transform .3s; }
.drawer.open .drawer-icon { transform: rotate(180deg); }
.drawer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: var(--jh-muted);
}
.drawer.open .drawer-body { max-height: 500px; padding: 1rem 1.25rem 1.5rem; }
.drawer-body p { margin: 0 0 .75rem; }
.drawer-body strong { color: var(--jh-light); }

.gift-card {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, rgba(21,128,61,.15), rgba(180,83,9,.1));
  border: 1px dashed var(--jh-copper);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 520px;
  margin: 2.5rem auto 0;
}
.gift-card img { width: 140px; border-radius: .75rem; border: 2px solid rgba(250,204,21,.2); }
.gift-title { font-family: var(--font-shufa); color: var(--jh-gold); font-size: 1.5rem; margin-bottom: .25rem; }
.gift-text { color: var(--jh-light); font-size: 1rem; }

/* Position-specific image sizing */

header img { height: 2.5rem; width: auto; }
.hero-logo { width: min(300px, 70vw); height: auto; }
.feature-card img { width: 100%; height: 200px; object-fit: cover; }
.qr-card img { width: 100%; max-width: 150px; height: auto; }
footer img { width: 100%; max-width: 120px; height: auto; }

/* Friendly links block */

.friendly-links.zjjh { padding: 3rem 1rem; background: #0c0a09; border-top: 1px solid rgba(180,83,9,.35); }
.friendly-links.zjjh .friendly-links-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.friendly-links.zjjh h2 { font-family: 'Ma Shan Zheng', cursive; font-size: clamp(1.6rem, 4vw, 2.4rem); color: #FACC15; margin-bottom: .25rem; }
.friendly-links.zjjh h2 i { color: #15803D; margin-right: .5rem; }
.friendly-links.zjjh p { color: #A8A29E; margin-bottom: 1.5rem; }
.friendly-links.zjjh ul { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; list-style: none; padding: 0; margin: 0; }
.friendly-links.zjjh li a { display: block; padding: .6rem .8rem; border-radius: .5rem; background: rgba(21,128,61,.1); border: 1px solid rgba(180,83,9,.35); color: #E7E5E4; font-size: .9rem; transition: .2s; }
.friendly-links.zjjh li a:hover { background: rgba(250,204,21,.12); border-color: #FACC15; color: #FACC15; transform: translateY(-2px); }
@media (max-width: 375px) { .friendly-links.zjjh ul { grid-template-columns: repeat(2, 1fr); } }

