:root {
  --ink: #0b1424;
  --ink-soft: #1b1638;
  --gold: #e9b460;
  --gold-soft: #f5d69e;
  --cream: #f1e8d6;
  --cream-dim: #cfc6b0;
  --terra: #c45a3a;
  --line: #e9b46040;
}
* { box-sizing: border-box; }
body {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--cream);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang HK", "PingFang TC",
    "Noto Sans TC", "Microsoft JhengHei", "Heiti TC", sans-serif;
  line-height: 1.75;
}
main { max-width: 760px; margin: 0 auto; padding: 48px 24px 96px; }
.kicker { letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-size: 13px; }
h1 { color: var(--cream); margin: 12px 0 8px; font-size: 34px; line-height: 1.35; }
.sub { color: var(--cream-dim); margin-bottom: 32px; font-size: 16px; }
h2 { color: var(--gold-soft); border-top: 1px solid var(--line); margin-top: 48px; padding-top: 16px; font-size: 22px; }
h3 { color: var(--cream); margin-top: 24px; font-size: 17px; }
p { color: var(--cream-dim); font-size: 16px; }
ul, ol { color: var(--cream-dim); padding-left: 22px; }
li { margin-bottom: 6px; }
table { border-collapse: collapse; width: 100%; margin: 20px 0; font-size: 15px; }
th, td { text-align: left; border-bottom: 1px solid var(--line); color: var(--cream-dim); padding: 10px 12px; }
th { color: var(--gold); font-weight: 600; white-space: nowrap; vertical-align: top; }
.hero { border-radius: 16px; width: 100%; height: auto; margin-bottom: 8px; display: block; }
.section-img { border-radius: 12px; width: 100%; height: auto; margin: 16px 0; display: block; }
.img-pair { grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; display: grid; }
.img-pair img { aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; width: 100%; display: block; }
.tip-box {
  border-left: 3px solid var(--gold);
  background: #e9b4601a;
  border-radius: 4px;
  margin: 20px 0;
  padding: 14px 18px;
  font-size: 14px;
}
.tip-box strong { color: var(--gold-soft); }
.tip-box p { margin: 4px 0 0; font-size: 14px; }
.inline-cta { color: var(--gold-soft); border-bottom: 1px solid var(--gold); font-weight: 600; text-decoration: none; }
.inline-cta:hover { color: var(--gold); }
.tag { background: var(--terra); color: var(--cream); border-radius: 999px; margin-bottom: 8px; padding: 6px 14px; font-size: 13px; display: inline-block; }
.cta-card {
  border: 1px solid var(--line);
  text-align: center;
  background: #ffffff08;
  border-radius: 16px;
  margin: 40px 0 16px;
  padding: 22px 24px;
}
.cta-card p { margin: 0 0 14px; font-size: 15px; }
.cta {
  text-align: center;
  background: var(--gold-soft);
  color: #1c1632;
  border-radius: 999px;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.cta:hover { background: var(--gold); }
.note { color: var(--cream-dim); text-align: center; opacity: .7; font-size: 13px; }
.faq-item { margin-bottom: 20px; }
.faq-item h3 { color: var(--gold-soft); margin-top: 0; margin-bottom: 6px; }
footer { text-align: center; letter-spacing: 1px; color: var(--cream-dim); opacity: .6; margin-top: 64px; font-size: 12px; }

/* ── 語言切換 ─────────────────────────────── */
.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}
.lang-switch a {
  color: var(--cream-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.4;
  transition: background .15s, color .15s, border-color .15s;
}
.lang-switch a:hover { color: var(--gold-soft); border-color: var(--gold); }
.lang-switch a.active {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: #1c1632;
  font-weight: 600;
}

/* ── 快速答案（AEO 抽取用嘅事實表） ────────── */
.lede { margin-top: 16px; }
.facts {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 14px;
  margin: 28px 0 8px;
  padding: 4px 18px 10px;
}
.facts .facts-h {
  border-top: none;
  margin-top: 14px;
  padding-top: 0;
  font-size: 16px;
  letter-spacing: .5px;
  color: var(--gold);
}
.facts table { margin: 10px 0 6px; }
.facts th { width: 32%; }
.facts tr:last-child th, .facts tr:last-child td { border-bottom: none; }

@media (max-width: 480px) {
  h1 { font-size: 27px; }
  main { padding: 32px 18px 72px; }
  .facts th { width: 38%; white-space: normal; }
}

/* ── 購票教學頁 ───────────────────────────── */
main.buy .note { text-align: left; }
main.buy .cta-card .note { text-align: center; }
ol.steps { list-style: none; padding-left: 0; counter-reset: step; }
ol.steps > li {
  counter-increment: step;
  position: relative;
  padding: 0 0 18px 46px;
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
ol.steps > li:last-child { border-bottom: none; }
ol.steps > li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold); font-size: 14px; font-weight: 600;
}
ol.steps > li strong { display: block; color: var(--cream); font-size: 17px; margin-bottom: 5px; }
ol.steps > li p { margin: 0; color: var(--cream-dim); font-size: 15px; }
p.back { margin-top: 40px; }
p.back a { color: var(--gold); text-decoration: none; font-size: 15px; }
p.back a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  ol.steps > li { padding-left: 40px; }
  ol.steps > li::before { width: 26px; height: 26px; font-size: 13px; }
}

/* ── 購票入口 ─────────────────────────────
   目標：任何時候都撳到「買飛」，唔使碌到頁底。
   ① .buy-bar 釘死喺畫面底                  ② .cta-alt 副連結先至係教學頁 */

.cta-alt { margin: 12px 0 0; text-align: center; font-size: 14px; }
.cta-alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--line); }
.cta-alt a:hover { color: var(--gold-soft); border-color: var(--gold); }

.buy-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(11, 20, 36, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.buy-bar-in {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.buy-bar-price { font-size: 14px; color: var(--cream-dim); line-height: 1.35; }
.buy-bar-price strong { color: var(--cream); font-size: 19px; font-weight: 700; }
.buy-bar-price em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--gold);
  opacity: .9;
}
.buy-bar-btn {
  flex: none;
  background: var(--gold-soft);
  color: #1c1632;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.buy-bar-btn:hover { background: var(--gold); }

/* 唔好畀釘底條遮住 footer */
main { padding-bottom: 132px; }

@media (max-width: 480px) {
  main { padding-bottom: 124px; }
  .buy-bar-price strong { font-size: 17px; }
  .buy-bar-btn { padding: 11px 20px; font-size: 15px; }
}

/* PDF／列印版唔要呢條 */
body.print .buy-bar { display: none; }
body.print main { padding-bottom: 0; }
