﻿:root {
  /* Core Colors */
  --color-primary: #00C2CB;
  --color-primary-dark: #0D2B6E;
  --color-bg: #050E1F;
  --color-surface: #0A1930;
  --color-text: #E8F0FF;
  --color-text-light: #8AA0C8;
  --color-white: #ffffff;
  --color-border: rgba(0, 194, 203, 0.15);
  --color-nav-bg: rgba(5, 14, 31, 0.85);

  /* Fonts */
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;

  /* Utilities */
  --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --section-padding: 6rem 2rem;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

h1,
h2,
h3,
h4,
.theme-name,
.loader-logo,
.nav-title-en,
.slide-indicator {
  font-family: var(--font-serif);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-white);
  color: #000;
}

.btn-solid {
  background: var(--color-white);
  color: #000;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.loader-content {
  text-align: center;
  width: 80%;
  max-width: 400px;
}

.loader-logo {
  font-size: 2.5rem;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  color: var(--color-primary);
  white-space: nowrap;
}

.progress-bar-container {
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-primary);
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: var(--color-text-light);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-primary);
}

.nav-title-group {
  display: flex;
  flex-direction: column;
}

.nav-title-en {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.nav-title-zh {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-divider {
  width: 1px;
  height: 2.5rem;
  background-color: var(--color-primary);
  opacity: 0.5;
  margin: 0 0.5rem;
}

.nav-info-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.nav-date,
.nav-location {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.icon-btn {
  font-size: 1.5rem;
  color: var(--color-text);
  transition: color var(--transition);
}

.icon-btn:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 14, 31, 0.82) 0%, rgba(13, 43, 110, 0.60) 60%, rgba(0, 194, 203, 0.08) 100%);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
  padding-top: 80px;
  /* offset nav */
}

.hero-left {
  max-width: 600px;
}

.theme-name {
  font-size: 9rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(30px);
}

.subtitle {
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
}

.description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.slide-indicator {
  font-size: 4rem;
  line-height: 1;
}

.total-slides {
  font-size: 1rem;
  font-family: var(--font-sans);
  vertical-align: super;
  opacity: 0.7;
}

.slide-controls {
  display: flex;
  gap: 1rem;
}

.slide-btn {
  color: var(--color-white);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.slide-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.slide-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-socials {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}

.hero-socials a {
  color: var(--color-white);
  font-size: 1.25rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-socials a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Sections Base */
.section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--color-primary);
}


/* Credits Section */
.credits-section {
  background-color: var(--color-surface);
}

.credits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  padding: 2rem 0;
}

.credit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  background: transparent;
  /* Remove circular shape from container */
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0.6rem;
  overflow: visible;
  z-index: 1;
  transition: transform var(--transition);
}

.credit-img-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.2);
  padding: 4px;
  transition: transform var(--transition);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credit-text-block {
  text-align: center;
  margin-top: 0.8rem;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.credit-score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.credit-name {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.credit-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-border);
  margin: 0.5rem auto;
}



/* Neon animated border mask drawn ON TOP of image wrapper */
.credit-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      transparent 60%,
      rgba(0, 255, 204, 0.2) 75%,
      #00ffcc 95%,
      #00ffcc 100%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-mask: radial-gradient(circle, transparent 75px, #fff 76px);
  mask: radial-gradient(circle, transparent 75px, #fff 76px);
}

.credit-card:hover {
  transform: translateY(-10px);
}

.credit-img-wrapper:hover::before {
  opacity: 1;
  animation: spinNeon 1.5s linear infinite;
}

.credit-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.05);
  position: relative;
  z-index: 1;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.credit-img-wrapper:hover img {
  animation: pulseImg 2s ease-in-out infinite, floatHover 3s ease-in-out infinite;
}

@keyframes floatHover {

  0%,
  100% {
    transform: translateY(0) scale(1.05);
  }

  50% {
    transform: translateY(-5px) scale(1.07);
  }
}

.credit-card:hover img {
  animation: pulseImg 2s ease-in-out infinite;
}

@keyframes pulseImg {

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

  50% {
    transform: scale(1.1);
  }
}

@keyframes spinNeon {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* Partners */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  min-height: 170px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .partners-logos {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #0D2B6E 0%, #051830 60%, #0A2550 100%);
  color: var(--color-white);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-eyebrow {
  font-size: 1rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 1rem !important;
}

.cta-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 1.1rem;
  margin: 1.5rem 0 2rem;
}

.cta-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.cta-benefit {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 194, 203, 0.25);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cta-benefit:hover {
  transform: translateY(-4px);
  background: rgba(0, 194, 203, 0.08);
  border-color: rgba(0, 194, 203, 0.45);
}

.cta-benefit i {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 0.85rem;
}

.cta-benefit h4 {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.cta-benefit p {
  font-size: 0.95rem !important;
  line-height: 1.65;
  opacity: 0.9;
  margin-bottom: 0 !important;
}

.cta-benefit strong {
  color: #00C2CB;
  border-bottom: 2px solid rgba(0, 194, 203, 0.5);
}

@media (max-width: 768px) {
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cta-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* Footer */
.footer {
  background-color: #020810;
  padding: 6rem 2rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-brand .footer-socials {
  display: flex;
  gap: 1.2rem;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.footer-brand .footer-socials a {
  color: var(--color-text);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-brand .footer-socials a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.footer-contact h4 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-details p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-details strong {
  color: var(--color-text);
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.contact-details i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.contact-details a {
  color: var(--color-text-light);
  transition: color 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}

.contact-details a:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* simple mobile handling for now */
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-right {
    position: absolute;
    bottom: 8rem;
    right: 2rem;
    align-items: flex-end;
  }

  .theme-name {
    font-size: 9rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .cta-section h2 {
    font-size: 2.5rem;
  }
}

/* Speakers Section */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.speaker-card:hover {
  transform: translateY(-5px);
}

.speaker-image {
  width: 80%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  margin: 0 auto;
  background-color: var(--color-white);
  box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.25), 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.speaker-card:hover .speaker-image {
  box-shadow: 0 0 0 2px rgba(0, 194, 203, 0.6), 0 15px 35px rgba(0, 194, 203, 0.2);
}

.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
  transform: scale(1.08);
}

.speaker-info {
  padding: 1.5rem 0;
  text-align: center;
  width: 100%;
}

.speaker-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.speaker-card:hover .speaker-name {
  color: var(--color-primary);
}

.speaker-org {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.speaker-dept {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
  font-weight: 400;
}

.speaker-title {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* Agenda Section */
.agenda-section {
  background-color: var(--color-surface);
}

.agenda-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.agenda-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.agenda-table th {
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
}

.agenda-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.agenda-header-row td {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 1.1rem;
  padding: 1rem;
}

.agenda-time {
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.agenda-topic {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.agenda-speaker {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.agenda-speakers {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.agenda-speakers li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2rem;
}

.agenda-speakers li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.agenda-chair td {
  background-color: rgba(0, 194, 203, 0.06);
  font-style: italic;
  color: var(--color-primary);
  text-align: center;
  font-weight: 500;
}

.agenda-break td {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(0, 194, 203, 0.3);
  color: var(--color-text-light);
  font-weight: 500;
  text-align: center;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.speaker-modal {
  background: var(--color-surface);
  border: 1px solid rgba(0, 194, 203, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 194, 203, 0.1);
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .speaker-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.modal-divider {
  border: none;
  height: 2px;
  background-color: #00C2CB;
  margin-bottom: 1.5rem;
}

.modal-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.modal-cv-content {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  white-space: pre-wrap;
  text-align: justify;
}
/* Hero Slide Image styles */
.slide-image-container {
    width: 600px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(0, 194, 203, 0.35);
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.2);
}

#hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


.slide-label {
    font-family: var(--font-serif);
    font-size: 1.4rem; /* 調大字體 */
    margin-right: 15px;
    opacity: 0.9;
}



