:root {
  --red: #E8192C;
  --orange: #F97316;
  --yellow: #FBBF24;
  --green: #22C55E;
  --blue: #0EA5E9;
  --indigo: #6366F1;
  --purple: #A855F7;
  --dark: #0F172A;
  --body: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --offwhite: #F8FAFC;
  --cream: #FFFBF0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

main {
  animation: pageEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/nunito-v32-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/nunito-v32-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/nunito-v32-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* nunito-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/nunito-v32-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-tc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/noto-sans-tc-v39-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-tc-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/noto-sans-tc-v39-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-tc-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/noto-sans-tc-v39-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-tc-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif TC';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/noto-serif-tc-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-tc-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif TC';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/noto-serif-tc-v36-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── COLOR UTILITIES ── */
.red {
  color: var(--red);
}

.dark {
  color: var(--dark);
}

.golden {
  color: #d6911be7;
}

.gBlue {
  color: #4286F3;
}

.gRed {
  color: #EA4335;
}

.gYellow {
  color: #FBBC05;
}

.gGreen {
  color: #34A853;
}

.text-italic {
  font-style: italic;
}

.text-muted-color {
  color: var(--muted);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nl-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.nl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nl-en {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

.nl-zh {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--body);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.18s;
}

.nav-links a:hover {
  background: var(--offwhite);
  color: var(--dark);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  opacity: 0.88 !important;
}

/* ── TICKER ── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow), var(--green), var(--blue), var(--indigo), var(--purple), var(--red));
  background-size: 400% 100%;
  animation: rainbowShift 8s linear infinite;
  color: white;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.ticker-inner {
  display: inline-block;
  animation: tick 30s linear infinite;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ticker-inner span {
  margin: 0 40px;
}

.ticker-inner span::before {
  content: '★  ';
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 10px;
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
}

/* Confetti dots BG */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--red) 2px, transparent 2px),
    radial-gradient(circle, var(--blue) 2px, transparent 2px),
    radial-gradient(circle, var(--yellow) 2px, transparent 2px),
    radial-gradient(circle, var(--green) 2px, transparent 2px),
    radial-gradient(circle, var(--purple) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 90px 90px, 110px 110px;
  background-position: 10px 10px, 40px 60px, 70px 20px, 25px 80px, 60px 45px;
  opacity: 0.15;
  pointer-events: none;
}

.hero-edition {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 7px 18px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hero-edition .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.hero h1 {
  font-size: clamp(54px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero h1 .yr {
  color: var(--blue);
}

.hero-title {
  margin-top: auto;
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16.7px;
  flex-wrap: wrap;
  margin-top: auto;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  border-radius: 30px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 15px;
}

.btn-red {
  background: var(--red);
  color: white;
  padding: 14px 32px;
}

.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 25, 44, 0.35);
}

.btn-blue {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(25, 122, 232, 0.35);
}

.btn-map-blue {
  background: var(--blue);
  color: white;
  padding: 11px 24px;
  font-size: 13.5px;
}

.btn-outline {
  background: white;
  color: var(--dark);
  padding: 13px 30px;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--dark);
  transform: translateY(-1px);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #64748B;
  background: rgba(255, 255, 255, 0);
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hero-meta-item-extend {
  background: var(--body);
  color: var(--white);
}

.hero-meta-item-social {
  height: 26.7px;
  width: 26.7px;
}
.hero-meta-item-social:hover {
  height: 28px;
  box-shadow: 0 8px 28px rgba(194, 210, 229, 0.35);
}

.hero-meta-item .ico {
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 20px 60px;
  }
  .hero-title {
    margin-top: 15vh;
  }
  .hero-btns {
    margin-top: 10vh;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-red {
    background: white;
    color: var(--red);
    padding: 10px 20px;
    border: 2px solid var(--red);
  }

  .btn-blue {
    background: white;
    color: var(--blue);
    padding: 10px 30px;
    border: 2px solid var(--blue);
  }

  .hero-meta {
    gap: 5px;
    margin-top: 5ch;
  }

  .hero-meta-item {
    box-shadow: none;
    font-size: 11px;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 3.141592653586267px;
  }
}

/* ── ABOUT RIBBON ── */
.about-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
}

.ab-cell {
  padding: 44px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.ab-cell:last-child {
  border-right: none;
}

.ab-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.ab-num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: var(--blue);
}

.ab-name {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif;
  color: white;
  margin-bottom: 4px;
}

.ab-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  font-family: 'Noto Sans TC', sans-serif;
}

@media (max-width: 768px) {
  .about-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .ab-desc {
    font-size: 10px;
  }
}

/* ── SECTION HELPERS ── */
.sec {
  padding: 96px 80px;
}

.sec-sm {
  padding: 80px 80px;
}

.sec-bg {
  background: var(--offwhite);
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-tag-blue {
  color: var(--blue);
}

.sec-tag-yellow {
  color: var(--yellow);
}

.sec-tag-red {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--red);
}

.sec-tag-blue-bar {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
}

.sec-tag-yellow-bar {
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}

.sec-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 3px;
  border-radius: 2px;
}

.sec-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.sec-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(14px, 1.6vw, 20px);
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 52px;
}

/* ── ZONES ── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.zone-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
  background: white;
}

.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.zone-banner {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.zone-body {
  padding: 24px;
}

.zone-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.zone-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.zone-desc {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.65;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.ztag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.ztag-yellow {
  background: #FEF3C7;
  color: #92400E;
}

.ztag-green {
  background: #ECFDF5;
  color: #065F46;
}

.ztag-blue {
  background: #EFF6FF;
  color: #1E40AF;
}

.ztag-red {
  background: #FFF1F2;
  color: #9F1239;
}

.ztag-purple {
  background: #F5F3FF;
  color: #4C1D95;
}

.ztag-cyan {
  background: #ECFEFF;
  color: #164E63;
}

.booklet {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16.7px;
}

.booklet-btn {
  padding: 17px 27px;
  color: var(--white);
  background-color: var(--blue);
  font-size: clamp(8px, 3vw, 20px);
}

.booklet-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.download-btn {
  padding: 17px clamp(10px, 1vw, 27px);
  font-size: clamp(8px, 3vw, 20px);
}

@media (max-width: 768px) {
  .zones-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    margin: 20px;
  }

  .zone-body {
    padding: 12px;
  }

  .zone-title {
    font-size: 14px;
  }

  .zone-zh {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .zone-desc {
    font-size: 12px;
    line-height: 1.4;
    overflow: hidden;
  }

  .zone-tags {
    gap: 4px;
    margin-top: 8px;
  }

  .ztag {
    font-size: 9px;
    padding: 2px 6px;
  }

  .booklet-btn {
    padding: 6.7px 10px;
  }
}

/* ── INTERVIEW ── */
.interview-body {
  background: #9F1239;
  margin-bottom: 50px;
  max-height: 67vh;
  position: relative;
  overflow: hidden;
}

.interview-body::before {
  content: "";
  position: absolute;
  
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='100'%3E%3Ctext x='50%25' y='50%25' font-size='40' font-weight='900' font-family='sans-serif' fill='%23ffffff' fill-opacity='0.12' text-anchor='middle' dominant-baseline='middle'%3ENEWS%3C/text%3E%3C/svg%3E");
  
  background-repeat: repeat;
  transform: rotate(30deg);
  
  pointer-events: none;
  z-index: 0;
}

.interview-body > * {
  position: relative;
  z-index: 1;
}

.kron4-video-embed {
  aspect-ratio: 16/9;
  border: none;
  display: block;
  border-radius: 10px;
  max-height: 50vh;
  margin: 0 auto;
}

/* ── HIGHLIGHTS ── */
.highlight-body {
  background: var(--offwhite);
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto 50px;
  border-radius: 10%;
}

.highlight-header {
  margin-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.highlight-image-wrapper {
  width: 100%;
}

.highlight-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 550px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.highlight-description {
  font-family: sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #333333;
}

.highlight-description p {
  margin-bottom: 24px;
}

.highlight-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .highlight-grid {
    margin-left: 4%;
    margin-right: 4%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlight-body {
    padding: 40px 20px;
    margin-bottom: none;
    margin: none;
  }

  .highlight-image-wrapper img {
    max-height: 400px;
  }

  .highlight-description {
    font-size: 14px;
  }
}

/* ── THEME ── */
.theme-body {
  background: #FFF1F2;
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.theme-intro {
  font-size: 25px;
  font-weight: 900;
  font-family: sans-serif;
  margin-bottom: 50px;
}

.theme-text-marquee {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: textScroll 60s linear infinite;
}

.bg-text-marquee span {
  font-size: 50px;
  font-weight: 900;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: rgba(0, 0, 0, 0.1);
  letter-spacing: 5px;
}

.foreground-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

@keyframes textScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── TAIWAN LANDMARKS ── */
.tw-sec {
  background: var(--white);
}

.tw-landmark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.tw-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark);
  transition: transform 0.25s, box-shadow 0.25s;
}

.tw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.tw-card-hero {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: unset;
}

.tw-card-wide {
  grid-column: span 2;
}

.tw-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
  display: block;
  z-index: 1;
}

.tw-card:hover img {
  transform: scale(1.07);
}

.tw-emoji-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  z-index: 0;
}

.tw-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  pointer-events: none;
  transition: background 0.3s;
}

.tw-card:hover .tw-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.tw-card-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tw-card-info {
  margin-top: auto;
}

.tw-card-name {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.tw-card-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .tw-landmark-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .tw-card-hero {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .tw-card-wide {
    grid-column: span 2;
  }

  .tw-card {
    aspect-ratio: 16/9;
  }
}

/* ── INTERNATIONAL VILLAGE ── */
.iv-section {
  background: var(--dark);
  color: white;
}

.iv-section .sec-title {
  color: white;
}

.iv-section .sec-zh {
  color: rgba(255, 255, 255, 0.45);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.country-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}

.country-pill-more {
  border: 1.5px dashed rgba(251, 191, 36, 0.4);
}

.country-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.country-flag {
  font-size: 28px;
  margin-bottom: 6px;
}

.country-name {
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.country-name-zh {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Noto Sans TC', sans-serif;
  margin-top: 2px;
}

.passport-callout {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 179, 8, 0.1));
  border: 1.5px solid rgba(249, 115, 22, 0.3);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.passport-icon {
  font-size: 72px;
  flex-shrink: 0;
}

.passport-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}

.passport-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  font-family: 'Noto Sans TC', sans-serif;
}

.passport-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .countries-grid {
    gap: 4px;
  }

  .country-pill {
    padding: 5px 5px;
  }

  .passport-badge {
    margin-top: 0px;
  }
}

/* ── SCHEDULE ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 48px;
  max-height: 900px;
}
@media (max-width: 1000px) {
  .schedule-grid {
    grid-template-columns: repeat(1, 1fr);
    max-height: 2000px;
  }
}

.sched-list {
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 900px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sched-list::-webkit-scrollbar {
  width: 6px;
}

.sched-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
}

.sched-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.sched-list::-webkit-scrollbar-thumb:hover {
  background: var(--muted); /* 滑鼠懸停時顯示 muted 顏色 */
}


.sched-time-stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  padding: 4px 6px;
}

.sched-time-stacked .time-sep {
  font-size: 11px;
  opacity: 0.6;
  margin: 1px 0;
}

.sched-time-badge {
      min-width: 85px;
      padding: 6px 10px;
      background: #f1f5f9;
      color: #334155;
      font-weight: 700;
      font-size: 0.85rem;
      border-radius: 8px;
      text-align: center;
      white-space: nowrap;
      flex-shrink: 0;
    }

.sched-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.sched-item:last-child {
  border-bottom: none;
}

.sched-time {
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  background: rgba(232, 25, 46, 0);
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 82px;
  text-align: center;
  border: 1px solid rgba(232, 25, 46, 0);
}

.sched-info h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}

.sched-info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  font-family: 'Noto Sans TC', sans-serif;
}

.sched-tag {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  white-space: nowrap;
}
.sched-tag-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.map-card {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 20px;
  border: 1.5px solid var(--border);
}

.map-placeholder {
  height: 200px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.map-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-info-Icon {
  height: 18px;
  flex-shrink: 0;
}

.map-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.map-info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.map-info-text {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
  font-family: 'Noto Sans TC', sans-serif;
}

.map-info-text-gray {
  color: rgba(180, 179, 179, 0.997);
}
.map-info-text li {
  margin-left: 16.7px;
}

.map-info-text strong {
  color: var(--dark);
  display: block;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.map-container iframe {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: calc(100% + 70px);
  border: 0;
}

@media(max-width: 1000px) {
  .sched-list {
    height: 500px;
  }

  .map-card {
    padding: 10px;
    border: none;
  }
}

@media (min-width: 1000px) {
  .map-container {
    height: 350px;
    padding-bottom: 1%;
  }
  .map-container iframe {
    height: 400px;
  }
}

/* ── FOOD ── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.food-card {
  background: white;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all 0.2s;
}

.food-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.12);
}

.food-emoji {
  font-size: 44px;
  margin-bottom: 10px;
}

.food-name {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 4px;
}

.food-name-zh {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.food-notice {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  font-family: 'Noto Sans TC', sans-serif;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 10px;
}

.g-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item:nth-child(4),
.g-item:nth-child(6),
.g-item:nth-child(10) {
  grid-column: span 2;
}

.g-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: transform 0.35s;
}

.g-inner img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  display: block;
}

.g-inner-hero {
  min-height: 380px;
  font-size: 80px;
}

.g-item:hover .g-inner {
  transform: scale(1.07);
}

.g-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 20px 14px 12px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s;
}

.g-item:hover .g-cap {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 119px;
    gap: 3px;
  }
}

/* ── SPONSOR ── */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.sp-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px 32px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
}

.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.sp-card.sp-shiny {
  border-color: #E897FF;
  box-shadow: 0 4px 24px rgba(251, 191, 36, 0.2);
}

.sp-tier-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.sp-tier-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.sp-price {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.sp-price sup {
  font-size: 22px;
}

.sp-per {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 26px;
}

.sp-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-perks li {
  font-size: 13.5px;
  color: var(--body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}

.sp-perks li:last-child {
  border-bottom: none;
}

.sp-perks li::before {
  content: '✓';
  font-weight: 900;
  flex-shrink: 0;
}

.sp-ribbon {
  position: absolute;
  top: 14px;
  right: -26px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 34px;
  transform: rotate(35deg);
  letter-spacing: 0.07em;
}

.sp-ribbon-extend {
  background: #EFF6FF;
  color: var(--dark);
}

.btn-sm {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
  border: none;
  font-family: inherit;
}

.btn-sm-extend {
  background: var(--offwhite);
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-sponsor {
  font-size: 13.5px;
  padding: 11px 24px;
  display: inline-block;
}

/* Pink Gradient Typography */
.pink1 { color: #CD75FF; }
.pink2 { color: #CF78FF; }
.pink3 { color: #D27BFF; }
.pink4 { color: #D47EFF; }
.pink5 { color: #D781FF; }
.pink6 { color: #D984FF; }
.pink7 { color: #DC88FF; }
.pink8 { color: #DE8BFF; }
.pink9 { color: #E491FF; }
.pink10 { color: #E694FF; }
.pink11 { color: #E998FF; }
.pink12 { color: #EB9BFF; }
.pink13 { color: #EE9EFF; }
.pink14 { color: #F0A1FF; }
.pink15 { color: #F3A4FF; }
.pink16 { color: #D37DFF; }
.pink17 { color: #DA86FF; }
.pink18 { color: #E18EFF; }
.pink19 { color: #E897FF; }
.pink20 { color: #EF9FFF; }

@media (max-width: 1000px) {
  .sp-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 10px;
  }
}

/* ── SWATCHES ── */
.c1 { background: var(--red); }
.c2 { background: var(--orange); }
.c3 { background: var(--yellow); }
.c4 { background: var(--green); }
.c5 { background: var(--indigo); }
.c6 { background: var(--blue); }
.c7 { background: var(--purple); grid-column: span 2; }
.c8 { background: var(--red); }
.c9 { background: var(--orange); }
.c10 { background: var(--yellow); }
.c11 { background: var(--green); }

/* ── PAST SPONSORS ── */
.sponsors {
  background: var(--offwhite);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  border: 1.5px solid var(--border);
}

.sponsors-des {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 22px;
  font-family: 'Noto Sans TC', sans-serif;
}

.sponsors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.sponsors-logo {
  width: 150px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .sponsors-logo {
    width: 10vw;
    height: 5vh;
  }
}

.sponsors-item {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ── FOOTER ── */
footer {
  background: #060D1A;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 80px 32px;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.ft-brand {
  max-width: 320px;
}

.ft-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  margin: 14px 0 20px;
  font-family: 'Noto Sans TC', sans-serif;
}

.soc-row {
  display: flex;
  gap: 10px;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s;
}

.soc-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ft-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13.5px;
  transition: color 0.18s;
}

.ft-col ul li a:hover {
  color: white;
}

.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-bottom a {
  color: var(--yellow);
  text-decoration: none;
}

/* ── LIGHTBOX ── */
.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lb.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: var(--red);
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  transition: opacity 0.2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-body {
  text-align: center;
  color: white;
}

.lb-img {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lb-img-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* ── UTILITY HELPERS ── */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-36 {
  margin-top: 36px;
}

/* ── FADE ANIM & TRANSITION DELAYS ── */
.fu {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fu.vis {
  opacity: 1;
  transform: none;
}

.delay-03 { transition-delay: 0.03s; }
.delay-06 { transition-delay: 0.06s; }
.delay-09 { transition-delay: 0.09s; }
.delay-12 { transition-delay: 0.12s; }
.delay-15 { transition-delay: 0.15s; }
.delay-18 { transition-delay: 0.18s; }
.delay-20 { transition-delay: 0.20s; }
.delay-22 { transition-delay: 0.22s; }
.delay-24 { transition-delay: 0.24s; }
.delay-30 { transition-delay: 0.30s; }
.delay-36 { transition-delay: 0.36s; }
.delay-42 { transition-delay: 0.42s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 10px;
  }

  .nav-links {
    display: none;
  }

  .sec,
  .sec-sm,
  .nl-sec {
    padding: 64px 24px;
  }

  .ab-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 32px 20px;
  }

  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nl-form {
    flex-direction: column;
  }

  .ft-top {
    flex-direction: column;
  }

  .ft-cols {
    grid-template-columns: 1fr 1fr;
  }

  footer {
    padding: 48px 24px 28px;
  }
}