* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { background: #071322; color: #172033; font-family: "Noto Sans TC", sans-serif; line-height: 1.8; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }

img { display: block; height: auto; max-width: 100%; }

header { align-items: center; background: rgba(7, 19, 34, 0.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; gap: 32px; justify-content: space-between; left: 0; padding: 18px 6%; position: fixed; top: 0; width: 100%; z-index: 50; }
header .site-title { color: #ffffff; font-size: 21px; font-weight: 900; letter-spacing: 0.04em; line-height: 1.35; }
header .site-title span { color: #42d39f; display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
header .header-nav { align-items: center; display: flex; gap: 22px; }
header .header-nav a { color: rgba(255, 255, 255, 0.78); font-size: 14px; font-weight: 600; position: relative; transition: color 0.3s ease; }
header .header-nav a::after { background: #42d39f; border-radius: 999px; bottom: -7px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; width: 100%; }
header .header-nav a:hover { color: #ffffff; }
header .header-nav a:hover::after { transform: scaleX(1); }
header .header-cta { background: linear-gradient(135deg, #42d39f, #72e6ff); border-radius: 999px; color: #071322; font-size: 14px; font-weight: 900; padding: 10px 18px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
header .header-cta:hover { box-shadow: 0 14px 28px rgba(66, 211, 159, 0.28); transform: translateY(-2px); }

main { background: #f6f8fb; overflow: hidden; }

#hero-section { background: radial-gradient( circle at 15% 20%, rgba(66, 211, 159, 0.35), transparent 30% ), radial-gradient( circle at 85% 30%, rgba(114, 230, 255, 0.24), transparent 28% ), linear-gradient(135deg, #071322 0%, #0c2442 54%, #06111f 100%); color: #ffffff; display: grid; gap: 54px; grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr); min-height: 100vh; padding: 150px 6% 90px; position: relative; }
#hero-section::before { background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 58px 58px; content: ""; inset: 0; opacity: 0.32; position: absolute; }
#hero-section .hero-content { align-self: center; isolation: isolate; position: relative; z-index: 2; }
#hero-section .hero-kicker { align-items: center; color: #9af5cf; display: flex; font-size: 14px; font-weight: 800; gap: 10px; letter-spacing: 0.18em; margin-bottom: 22px; text-transform: uppercase; }
#hero-section .hero-kicker::before { background: #42d39f; border-radius: 999px; content: ""; height: 9px; width: 9px; }
#hero-section .hero-title { font-size: clamp(40px, 5vw, 76px); font-weight: 900; letter-spacing: -0.05em; line-height: 1.08; margin-bottom: 26px; }
#hero-section .hero-title strong { color: #42d39f; font-weight: 900; }
#hero-section .hero-text { color: rgba(255, 255, 255, 0.8); font-size: 18px; max-width: 700px; }
#hero-section .hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
#hero-section .hero-actions a { border-radius: 999px; font-weight: 900; padding: 13px 22px; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
#hero-section .hero-actions .primary-link { background: #42d39f; color: #06111f; }
#hero-section .hero-actions .secondary-link { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #ffffff; }
#hero-section .hero-actions a:hover { box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22); transform: translateY(-3px); }
#hero-section .hero-media { align-self: center; isolation: isolate; position: relative; z-index: 2; }
#hero-section .hero-image { border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 38px; box-shadow: 0 38px 80px rgba(0, 0, 0, 0.36); height: 580px; object-fit: cover; width: 100%; }
#hero-section .hero-card { background: rgba(255, 255, 255, 0.92); border-radius: 26px; bottom: -28px; box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25); color: #071322; left: -28px; padding: 24px; position: absolute; width: min(320px, 85%); }
#hero-section .hero-card-title { color: #0d684e; font-size: 15px; font-weight: 900; margin-bottom: 10px; }
#hero-section .hero-card-text { color: #304157; font-size: 14px; line-height: 1.7; }

#overview-section { background: #ffffff; padding: 110px 6%; }
#overview-section .overview-grid { display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
#overview-section .overview-item { background: linear-gradient(180deg, #ffffff, #f4f8fb); border: 1px solid #e6edf4; border-radius: 28px; box-shadow: 0 16px 34px rgba(18, 37, 66, 0.06); padding: 28px; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease; opacity: 0; }
#overview-section.is-active .overview-item { opacity: 1; transform: translateY(0); }
#overview-section .overview-item:hover { box-shadow: 0 24px 52px rgba(18, 37, 66, 0.12); transform: translateY(-6px); }
#overview-section .overview-number { color: #42b986; font-size: 42px; font-weight: 900; line-height: 1; margin-bottom: 16px; }
#overview-section .overview-title { color: #071322; font-size: 20px; font-weight: 900; margin-bottom: 10px; }
#overview-section .overview-text { color: #5a687b; font-size: 15px; }

#ticket-section { background: #edf4f8; display: grid; gap: 60px; grid-template-columns: 0.9fr 1.1fr; padding: 110px 6%; }
#ticket-section .ticket-left { align-self: start; position: sticky; top: 120px; }
#ticket-section .section-label { color: #0d8b68; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#ticket-section .section-title { color: #071322; font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; margin-bottom: 22px; }
#ticket-section .section-text { color: #526174; font-size: 17px; margin-bottom: 28px; }
#ticket-section .ticket-image { border-radius: 34px; box-shadow: 0 30px 65px rgba(22, 42, 72, 0.16); height: 390px; object-fit: cover; width: 100%; }
#ticket-section .ticket-list { display: flex; flex-direction: column; gap: 18px; }
#ticket-section .ticket-item { background: #ffffff; border: 1px solid #dfe9f0; border-radius: 28px; display: grid; gap: 20px; grid-template-columns: 90px 1fr; padding: 26px; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; opacity: 0; }
#ticket-section.is-active .ticket-item { opacity: 1; transform: translateX(0); }
#ticket-section .ticket-step { align-items: center; background: #071322; border-radius: 24px; color: #42d39f; display: flex; font-size: 24px; font-weight: 900; height: 76px; justify-content: center; width: 76px; }
#ticket-section .ticket-title { color: #071322; font-size: 22px; font-weight: 900; margin-bottom: 8px; }
#ticket-section .ticket-text { color: #5a687b; font-size: 15px; }

#type-section { background: #071322; color: #ffffff; padding: 110px 6%; position: relative; }
#type-section::before { background: radial-gradient( circle, rgba(66, 211, 159, 0.28), transparent 34% ); content: ""; height: 620px; position: absolute; right: -240px; top: -180px; width: 620px; }
#type-section .type-content { margin: 0 auto 50px; max-width: 820px; position: relative; text-align: center; z-index: 2; }
#type-section .section-label { color: #9af5cf; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#type-section .section-title { font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; margin-bottom: 18px; }
#type-section .section-text { color: rgba(255, 255, 255, 0.72); font-size: 17px; }
#type-section .type-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); position: relative; z-index: 2; }
#type-section .type-item { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 30px; overflow: hidden; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease, background 0.3s ease; opacity: 0; }
#type-section.is-active .type-item { opacity: 1; transform: translateY(0); }
#type-section .type-item:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-8px); }
#type-section .type-image { height: 240px; object-fit: cover; width: 100%; }
#type-section .type-info { padding: 28px; }
#type-section .type-title { color: #ffffff; font-size: 22px; font-weight: 900; margin-bottom: 10px; }
#type-section .type-text { color: rgba(255, 255, 255, 0.72); font-size: 15px; }

#city-section { background: #ffffff; display: grid; gap: 54px; grid-template-columns: 1fr 1fr; padding: 110px 6%; }
#city-section .city-content { align-self: center; }
#city-section .section-label { color: #0d8b68; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#city-section .section-title { color: #071322; font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; margin-bottom: 22px; }
#city-section .section-text { color: #526174; font-size: 17px; margin-bottom: 28px; }
#city-section .city-list { display: flex; flex-direction: column; gap: 14px; }
#city-section .city-item { align-items: center; background: #f4f8fb; border: 1px solid #e3ebf3; border-radius: 20px; display: flex; gap: 16px; padding: 15px 18px; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; opacity: 0; }
#city-section.is-active .city-item { opacity: 1; transform: translateX(0); }
#city-section .city-dot { background: #42d39f; border-radius: 50%; box-shadow: 0 0 0 7px rgba(66, 211, 159, 0.14); height: 10px; width: 10px; }
#city-section .city-title { color: #071322; font-size: 16px; font-weight: 900; }
#city-section .city-media { display: grid; gap: 20px; grid-template-columns: 0.75fr 1fr; }
#city-section .city-image { border-radius: 30px; height: 100%; min-height: 520px; object-fit: cover; width: 100%; }
#city-section .city-stack { display: grid; gap: 20px; }
#city-section .city-stack .city-image { min-height: 250px; }

#stay-section { background: linear-gradient(135deg, #eef6f4, #f8fbff); padding: 110px 6%; }
#stay-section .stay-header { display: grid; gap: 28px; grid-template-columns: 0.9fr 1.1fr; margin-bottom: 44px; }
#stay-section .section-label { color: #0d8b68; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#stay-section .section-title { color: #071322; font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; }
#stay-section .section-text { color: #526174; font-size: 17px; }
#stay-section .stay-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
#stay-section .stay-item { background: #ffffff; border: 1px solid #e3ebf3; border-radius: 30px; box-shadow: 0 18px 40px rgba(18, 37, 66, 0.07); padding: 30px; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; opacity: 0; }
#stay-section.is-active .stay-item { opacity: 1; transform: translateY(0); }
#stay-section .stay-icon { align-items: center; background: #071322; border-radius: 22px; color: #42d39f; display: flex; font-size: 26px; font-weight: 900; height: 58px; justify-content: center; margin-bottom: 22px; width: 58px; }
#stay-section .stay-title { color: #071322; font-size: 21px; font-weight: 900; margin-bottom: 10px; }
#stay-section .stay-text { color: #5a687b; font-size: 15px; }

#traffic-section { background: #ffffff; display: grid; gap: 60px; grid-template-columns: 1.08fr 0.92fr; padding: 110px 6%; }
#traffic-section .traffic-image { border-radius: 36px; box-shadow: 0 30px 65px rgba(22, 42, 72, 0.14); height: 620px; object-fit: cover; width: 100%; }
#traffic-section .traffic-content { align-self: center; }
#traffic-section .section-label { color: #0d8b68; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#traffic-section .section-title { color: #071322; font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; margin-bottom: 22px; }
#traffic-section .section-text { color: #526174; font-size: 17px; margin-bottom: 26px; }
#traffic-section .traffic-list { display: flex; flex-direction: column; gap: 16px; }
#traffic-section .traffic-item { background: #f4f8fb; border-left: 5px solid #42d39f; border-radius: 22px; padding: 20px 22px; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; opacity: 0; }
#traffic-section.is-active .traffic-item { opacity: 1; transform: translateX(0); }
#traffic-section .traffic-title { color: #071322; font-size: 18px; font-weight: 900; margin-bottom: 5px; }
#traffic-section .traffic-text { color: #5a687b; font-size: 15px; }

#checklist-section { background: #071322; color: #ffffff; padding: 110px 6%; }
#checklist-section .checklist-wrap { background: linear-gradient( 135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04) ); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 40px; display: grid; gap: 44px; grid-template-columns: 0.85fr 1.15fr; padding: 54px; }
#checklist-section .section-label { color: #9af5cf; font-size: 14px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 14px; text-transform: uppercase; }
#checklist-section .section-title { font-size: clamp(32px, 4vw, 54px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.16; margin-bottom: 18px; }
#checklist-section .section-text { color: rgba(255, 255, 255, 0.72); font-size: 17px; }
#checklist-section .checklist-list { display: grid; gap: 14px; }
#checklist-section .checklist-item { align-items: flex-start; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 22px; display: flex; gap: 14px; padding: 18px; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; opacity: 0; }
#checklist-section.is-active .checklist-item { opacity: 1; transform: translateY(0); }
#checklist-section .checklist-mark { align-items: center; background: #42d39f; border-radius: 50%; color: #071322; display: flex; flex: 0 0 auto; font-size: 14px; font-weight: 900; height: 26px; justify-content: center; margin-top: 5px; width: 26px; }
#checklist-section .checklist-title { color: #ffffff; font-size: 17px; font-weight: 900; margin-bottom: 4px; }
#checklist-section .checklist-text { color: rgba(255, 255, 255, 0.7); font-size: 14px; }

footer { background: #04101d; color: rgba(255, 255, 255, 0.68); padding: 44px 6%; }
footer .footer-wrap { align-items: center; display: flex; gap: 24px; justify-content: space-between; }
footer .footer-title { color: #ffffff; font-size: 18px; font-weight: 900; }
footer .footer-text { font-size: 14px; }
footer .footer-nav { display: flex; flex-wrap: wrap; gap: 18px; }
footer .footer-nav a { font-size: 14px; transition: color 0.3s ease; }
footer .footer-nav a:hover { color: #42d39f; }

@keyframes float-soft { 0% { transform: translateY(0); } 50% { transform: translateY(-14px); } 100% { transform: translateY(0); } }

@media (max-width: 1280px) {
	header { padding: 16px 5%; }
	#hero-section { gap: 40px; padding-left: 5%; padding-right: 5%; }
	#overview-section { padding-left: 5%; padding-right: 5%; }
	#ticket-section { padding-left: 5%; padding-right: 5%; }
	#type-section { padding-left: 5%; padding-right: 5%; }
	#city-section { padding-left: 5%; padding-right: 5%; }
	#stay-section { padding-left: 5%; padding-right: 5%; }
	#traffic-section { padding-left: 5%; padding-right: 5%; }
	#checklist-section { padding-left: 5%; padding-right: 5%; }
	footer { padding-left: 5%; padding-right: 5%; }
}
@media (max-width: 960px) {
	header { align-items: flex-start; flex-direction: column; gap: 14px; }
	header .header-nav { flex-wrap: wrap; gap: 14px 18px; }
	#hero-section { grid-template-columns: 1fr; padding-top: 190px; }
	#hero-section .hero-image { height: 460px; }
	#overview-section .overview-grid { grid-template-columns: repeat(2, 1fr); }
	#ticket-section { grid-template-columns: 1fr; }
	#ticket-section .ticket-left { position: static; }
	#type-section .type-grid { grid-template-columns: 1fr; }
	#city-section { grid-template-columns: 1fr; }
	#stay-section .stay-header { grid-template-columns: 1fr; }
	#stay-section .stay-grid { grid-template-columns: 1fr; }
	#traffic-section { grid-template-columns: 1fr; }
	#traffic-section .traffic-image { height: 420px; }
	#checklist-section .checklist-wrap { grid-template-columns: 1fr; }
	footer .footer-wrap { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 768px) {
	header .header-cta { display: none; }
	#hero-section { padding-bottom: 70px; }
	#hero-section .hero-text { font-size: 16px; }
	#hero-section .hero-card { bottom: 18px; left: 18px; }
	#overview-section { padding-bottom: 80px; padding-top: 80px; }
	#overview-section .overview-grid { grid-template-columns: 1fr; }
	#ticket-section { padding-bottom: 80px; padding-top: 80px; }
	#ticket-section .ticket-item { grid-template-columns: 1fr; }
	#type-section { padding-bottom: 80px; padding-top: 80px; }
	#city-section { padding-bottom: 80px; padding-top: 80px; }
	#city-section .city-media { grid-template-columns: 1fr; }
	#city-section .city-image { min-height: 300px; }
	#stay-section { padding-bottom: 80px; padding-top: 80px; }
	#traffic-section { padding-bottom: 80px; padding-top: 80px; }
	#checklist-section { padding-bottom: 80px; padding-top: 80px; }
	#checklist-section .checklist-wrap { border-radius: 30px; padding: 30px; }
}
@media (max-width: 500px) {
	header { padding: 14px 18px; }
	header .site-title { font-size: 17px; }
	header .header-nav a { font-size: 13px; }
	#hero-section { padding: 178px 18px 64px; }
	#hero-section .hero-title { font-size: 38px; }
	#hero-section .hero-actions { align-items: stretch; flex-direction: column; }
	#hero-section .hero-actions a { text-align: center; }
	#hero-section .hero-image { border-radius: 26px; height: 370px; }
	#hero-section .hero-card { position: static; width: 100%; }
	#overview-section { padding-left: 18px; padding-right: 18px; }
	#ticket-section { padding-left: 18px; padding-right: 18px; }
	#type-section { padding-left: 18px; padding-right: 18px; }
	#type-section .type-image { height: 210px; }
	#city-section { padding-left: 18px; padding-right: 18px; }
	#stay-section { padding-left: 18px; padding-right: 18px; }
	#traffic-section { padding-left: 18px; padding-right: 18px; }
	#traffic-section .traffic-image { height: 330px; }
	#checklist-section { padding-left: 18px; padding-right: 18px; }
	#checklist-section .checklist-wrap { padding: 22px; }
	footer { padding-left: 18px; padding-right: 18px; }
}