:root {
  --ink: #07111f;
  --navy: #071b3a;
  --navy-soft: #0d2a55;
  --red: #d7273b;
  --red-dark: #8f1225;
  --gold: #f6c767;
  --gold-soft: #ffe3a0;
  --cream: #fff8ec;
  --muted: #8ea0ba;
  --line: rgba(255,255,255,.14);
  --shadow: 0 22px 70px rgba(0,0,0,.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: #f8fbff;
  background:
    radial-gradient(circle at 15% 5%, rgba(214,39,59,.32), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(246,199,103,.20), transparent 25%),
    linear-gradient(180deg, #06101f 0%, #09162a 42%, #05080f 100%);
  line-height: 1.72;
  min-width: 320px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 10, 19, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 15px;
  display: grid; place-items: center;
  color: #10131a; font-weight: 900; font-size: 24px;
  background: linear-gradient(135deg, var(--gold), #fff0b8 45%, #d7273b);
  box-shadow: 0 10px 30px rgba(246,199,103,.25);
}
.brand-text strong { display: block; font-size: 20px; line-height: 1; letter-spacing: .08em; }
.brand-text em { display: block; font-size: 12px; font-style: normal; color: var(--muted); margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.site-nav a {
  color: #dbe7ff;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a.active { background: rgba(246,199,103,.16); color: var(--gold-soft); transform: translateY(-1px); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.08); border-radius: 14px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 4px; }
.section { padding: 80px 0; }
.section.tight { padding: 52px 0; }
.section-title { max-width: 760px; margin-bottom: 34px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-soft); font-weight: 700; letter-spacing: .12em; font-size: 13px; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin: 0; line-height: 1.18; }
h1 { font-size: clamp(40px, 7vw, 82px); letter-spacing: -.06em; }
h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.04em; }
h3 { font-size: 21px; }
p { color: #c7d4e9; margin: 10px 0 0; }
.lead { font-size: clamp(17px, 2vw, 22px); color: #edf4ff; max-width: 760px; }
.hero { position: relative; overflow: hidden; padding: 86px 0 48px; }
.hero::after {
  content: ""; position: absolute; inset: auto -10% 0;
  height: 210px;
  background: radial-gradient(ellipse at center, rgba(246,199,103,.18), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-card { background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); overflow: hidden; }
.hero-card img { width: 100%; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; font-weight: 800;
  background: linear-gradient(135deg, var(--red), #ff4b61);
  box-shadow: 0 12px 30px rgba(215,39,59,.28);
  border: 1px solid rgba(255,255,255,.16);
}
.btn.secondary { background: rgba(255,255,255,.08); box-shadow: none; color: var(--gold-soft); }
.notice-strip { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.notice-strip span { border: 1px solid rgba(255,255,255,.12); background: rgba(7,27,58,.52); color: #dbe7ff; border-radius: 999px; padding: 7px 11px; font-size: 13px; }
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}
.card.gold { background: linear-gradient(145deg, rgba(246,199,103,.18), rgba(255,255,255,.05)); }
.card.red { background: linear-gradient(145deg, rgba(215,39,59,.18), rgba(255,255,255,.05)); }
.card h3 { color: #fff; }
.card small, .muted { color: var(--muted); }
.card-media { padding: 0; overflow: hidden; }
.card-media .content { padding: 22px; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 10px; background: rgba(246,199,103,.14); color: var(--gold-soft); font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.schedule-list { display: grid; gap: 14px; }
.schedule-item {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center;
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 16px;
  background: rgba(5,10,19,.36);
}
.time-pill { display: grid; place-items: center; height: 58px; border-radius: 18px; background: linear-gradient(135deg, var(--gold), #ffe7a7); color: #10131a; font-weight: 900; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag-row span { font-size: 12px; color: #dce7fb; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.08); }
.timeline { position: relative; display: grid; gap: 18px; }
.timeline::before { content: ""; position: absolute; left: 18px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), rgba(215,39,59,.2)); }
.timeline-item { position: relative; padding-left: 54px; }
.timeline-item::before { content: ""; position: absolute; left: 9px; top: 9px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(246,199,103,.12); }
.info-band {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(7,27,58,.84), rgba(143,18,37,.54));
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.steps { counter-reset: step; }
.step { position: relative; padding-left: 54px; min-height: 42px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 13px; background: linear-gradient(135deg, var(--red), var(--gold)); font-weight: 900;
}
.review { display: flex; gap: 14px; align-items: flex-start; }
.avatar { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 48px; background: linear-gradient(135deg, var(--gold), var(--red)); display: grid; place-items: center; color: #10131a; font-weight: 900; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-bar button {
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08); color: #fff;
  border-radius: 999px; padding: 10px 14px; cursor: pointer; font-weight: 700;
}
.filter-bar button.active { background: linear-gradient(135deg, var(--gold), #fff0b8); color: #111827; }
.table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid rgba(255,255,255,.12); }
table { width: 100%; border-collapse: collapse; min-width: 680px; background: rgba(5,10,19,.35); }
th, td { text-align: left; padding: 16px; border-bottom: 1px solid rgba(255,255,255,.10); }
th { color: var(--gold-soft); font-size: 14px; }
td { color: #dbe7ff; }
.faq details { border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 18px 20px; background: rgba(255,255,255,.055); }
.faq details + details { margin-top: 12px; }
.faq summary { cursor: pointer; font-weight: 800; color: #fff; }
.faq p { margin-top: 10px; }
.video-card { position: relative; overflow: hidden; }
.play-icon { position: absolute; left: 22px; top: 22px; width: 52px; height: 52px; border-radius: 50%; background: rgba(246,199,103,.92); color: #111827; display: grid; place-items: center; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.map-box { min-height: 360px; border-radius: 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04); }
.contact-card strong { color: #fff; }
.site-footer { padding: 46px 0; border-top: 1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.22); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .8fr; gap: 26px; }
.footer-brand { display: inline-block; color: var(--gold-soft); font-weight: 900; font-size: 20px; margin-bottom: 8px; }
.site-footer h2 { font-size: 16px; letter-spacing: 0; color: #fff; margin-bottom: 8px; }
.site-footer a { display: block; color: #cfe0ff; margin-top: 8px; }
.site-footer p { font-size: 14px; }
@media (max-width: 980px) {
  .hero-grid, .grid.cols-2, .grid.cols-3, .grid.cols-4, .footer-grid, .info-band { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .schedule-item { grid-template-columns: 82px 1fr; }
  .schedule-item .btn { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 760px) {
  .header-inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: 72px; display: none; padding: 14px; border-radius: 22px; background: rgba(5,10,19,.96); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
  .site-nav.open { display: grid; grid-template-columns: 1fr 1fr; }
  .site-nav a { text-align: center; }
  .hero { padding-top: 52px; }
  .card, .info-band { padding: 20px; }
  .schedule-item { grid-template-columns: 1fr; }
  .time-pill { width: 100%; }
}
