:root {
  --primary: #0a2540;
  --accent: #00c2a8;
  --accent2: #ff6b35;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --navbar-height: 72px;
}

.container {
  max-width: 100% !important;
  padding: 0;
}
@media (width < 769px) {
  .container {
    padding: 0 8px;
  }
}

.row {
  margin-inline: 0;
}

@font-face {
  font-family: "Micross";
  src: url("../font/micross.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  font-family: "Micross", "Noto Sans TC", sans-serif;
  color: var(--text-dark);
  background: url("../img/homeBK.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  overflow-x: hidden;
}

#mainNavbar {
  background: transparent;
  transition: all 0.4s ease;
  min-height: var(--navbar-height);
  z-index: 1000;
  padding-inline: 8px;
}
#mainNavbar.scrolled {
  background: rgba(10, 37, 64, 0.97) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}
@media (width < 769px) {
  #mainNavbar {
    background: rgba(10, 37, 64, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
  }
}
#mainNavbar .navbar-brand img {
  height: 64px;
}
#mainNavbar .navbar-toggler {
  background: rgb(255, 255, 255);
  border-radius: 8px;
  padding: 6px 10px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
#mainNavbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 1.4em;
  height: 1.4em;
  filter: none;
}
#mainNavbar .nav-link {
  font-size: clamp(1rem, 1.6vw, 1.6rem);
  color: var(--white);
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
#mainNavbar .nav-link:hover {
  color: var(--accent) !important;
}

section {
  scroll-margin-top: calc(var(--navbar-height) + 8px);
}

.section-title-underline {
  display: block;
  width: 236px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  margin-top: 0.75rem;
}
.section-title-underline.center {
  margin-left: auto;
  margin-right: auto;
}

.singUpBtn,
.hintText {
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.singUpBtn {
  width: 20%;
  position: relative;
  margin-inline: auto;
}
.singUpBtn .btn {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.singUpBtn .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55) 0%, rgba(230, 245, 255, 0.5) 50%, rgba(200, 235, 255, 0.5) 100%);
  border: 3px solid rgba(255, 255, 255, 0.95);
  outline: 2px solid rgba(150, 210, 240, 0.7);
  outline-offset: 0px;
  box-shadow: 0 10px 32px rgba(80, 140, 200, 0.5), 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgb(255, 255, 255), inset 0 -2px 4px rgba(150, 210, 240, 0.4);
  transform: scale(1);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.28s ease, filter 0.28s ease;
}
.singUpBtn .btn::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 45%;
  height: 160%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 35%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-40deg);
  pointer-events: none;
  animation: gloss-idle 4s ease-in-out infinite;
}
.singUpBtn .btn .signUp {
  position: relative;
  z-index: 1;
  display: block;
  margin: 20px auto;
  width: 80%;
  transform: scale(1);
  transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.singUpBtn .btn:hover::before {
  transform: scale(1);
  box-shadow: none;
  filter: brightness(1.04);
}
.singUpBtn .btn:hover::after {
  animation: gloss-sweep 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.singUpBtn .btn:hover .signUp {
  transform: scale(1);
}
.singUpBtn .btn:active::before {
  transform: scale(1);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.14);
  filter: brightness(0.96);
}
.singUpBtn .btn:active .signUp {
  transform: scale(1);
}
.singUpBtn .arrow {
  position: absolute;
  width: 30%;
  bottom: -36px;
  right: -28px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .singUpBtn {
    width: 40%;
  }
  .singUpBtn .arrow {
    width: 25%;
    bottom: -14px;
    right: -14px;
  }
}
@media (max-width: 576px) {
  .singUpBtn {
    width: 60%;
  }
  .singUpBtn .arrow {
    width: 25%;
    bottom: -14px;
    right: -14px;
  }
}

@keyframes gloss-idle {
  0%, 100% {
    left: -20%;
    opacity: 0.55;
  }
  50% {
    left: -15%;
    opacity: 0.9;
  }
}
@keyframes gloss-sweep {
  0% {
    left: -20%;
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  65% {
    opacity: 0.85;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
.hintText {
  width: 40%;
  text-align: justify;
  font-size: 20px;
  color: #fff;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .hintText {
    width: 90%;
  }
}

#sc_intro {
  padding: 90px 0 45px;
  color: var(--white);
}
#sc_intro .dataBox {
  margin: 50px 0 0px;
  position: relative;
}
#sc_intro .infoImg,
#sc_intro .infoImg2,
#sc_intro .infoText {
  position: relative;
  z-index: 1;
  margin: auto;
  display: flex;
  flex-direction: column;
}
#sc_intro .infoImg {
  width: 75%;
}
@media (width < 576px) {
  #sc_intro .infoImg {
    width: 100%;
  }
}
#sc_intro .infoImg .title {
  width: 65%;
  margin-inline: auto;
}
@media (width < 576px) {
  #sc_intro .infoImg .title {
    width: 80%;
  }
}
#sc_intro .infoImg .evolve2026 {
  width: 45%;
  margin-top: clamp(2rem, 7vw, 6rem);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 9vw, 7rem);
}
@media (width < 576px) {
  #sc_intro .infoImg .evolve2026 {
    width: 80%;
  }
}
#sc_intro .infoImg2 {
  width: 95%;
}
#sc_intro .infoImg2 .timeInfo,
#sc_intro .infoImg2 .text1 {
  width: 50%;
}
@media (width < 576px) {
  #sc_intro .infoImg2 .timeInfo,
  #sc_intro .infoImg2 .text1 {
    width: 80%;
  }
}
#sc_intro .infoText {
  width: 80%;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 6vw, 5rem);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}
#sc_intro .infoText p {
  margin-bottom: 2rem;
}
#sc_intro .singUpBtn,
#sc_intro .hintText {
  position: relative;
  z-index: 1;
}
#sc_intro .deco-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#sc_intro .deco-bound {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  animation: pulse-bound 15s ease-in-out infinite;
}
@media (width < 1025px) {
  #sc_intro .deco-bound {
    top: 38%;
    width: 85%;
  }
}
@media (width < 769px) {
  #sc_intro .deco-bound {
    top: 35%;
    width: 68%;
  }
}
@media (width < 576px) {
  #sc_intro .deco-bound {
    top: 16%;
    width: 75%;
  }
}
#sc_intro .deco-logo20 {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46%;
}
@media (width < 1025px) {
  #sc_intro .deco-logo20 {
    top: 81%;
    width: 85%;
  }
}
@media (width < 769px) {
  #sc_intro .deco-logo20 {
    top: 58%;
    width: 78%;
  }
}
@media (width < 576px) {
  #sc_intro .deco-logo20 {
    top: 40%;
    width: 75%;
  }
}
@keyframes pulse-bound {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

#sc_agenda {
  padding: 45px 0 90px;
}
#sc_agenda .agenda-table-wrap {
  width: 100%;
  overflow-x: auto;
}
@media (width < 769px) {
  #sc_agenda .agenda-table-wrap {
    padding-inline: 10px;
  }
}
#sc_agenda .agenda-table {
  width: 75%;
  margin: auto;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(16px, 2vw, 20px);
  border-color: var(--white);
}
@media (max-width: 768px) {
  #sc_agenda .agenda-table {
    width: 100%;
  }
}
#sc_agenda .agenda-table .col-time {
  width: 14%;
  padding-inline: 0 !important;
}
#sc_agenda .agenda-table .col-topic {
  width: 43%;
}
#sc_agenda .agenda-table .col-speaker {
  width: 43%;
}
#sc_agenda .agenda-table {
  text-align: center;
}
#sc_agenda .agenda-table thead tr {
  background: #c8cf6e;
}
#sc_agenda .agenda-table thead tr th {
  padding: 14px 20px;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.08em;
  border: 2px solid var(--white);
}
#sc_agenda .agenda-table td {
  padding: 8px;
  vertical-align: middle;
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(10, 37, 64, 0.78);
  line-height: 1.65;
}
#sc_agenda .agenda-table .time-sep {
  display: block;
  line-height: 1.2;
}
#sc_agenda .agenda-table .col-full {
  letter-spacing: 0.05em;
}
#sc_agenda .agenda-table .col-speaker {
  vertical-align: middle;
}
#sc_agenda .agenda-table .speaker-entry {
  padding: 6px 0;
}
#sc_agenda .agenda-table .speaker-entry + .speaker-entry {
  margin-top: 6px;
  padding-top: 12px;
}
#sc_agenda .agenda-table tbody tr:nth-child(even) td {
  background: #0b3a4f;
}

#sc_speakers {
  padding: 75px 0 150px;
  background-color: #bfcdd9;
}
#sc_speakers .section-title {
  max-width: 374px;
  aspect-ratio: 3/1;
  width: 100%;
  height: clamp(130px, 12vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: clamp(20px, 3vw, 40px);
  font-size: clamp(3rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1b435b;
  background-image: url(../img/singUpBK.png);
  background-repeat: no-repeat;
  background-size: contain;
}
#sc_speakers .speakers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(24px, 4vw, 48px) clamp(2px, 1vw, 10px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
#sc_speakers .speakers-grid .speaker-card:nth-child(1),
#sc_speakers .speakers-grid .speaker-card:nth-child(2),
#sc_speakers .speakers-grid .speaker-card:nth-child(3) {
  grid-column: span 2;
}
#sc_speakers .speakers-grid .speaker-card:nth-child(4) {
  grid-column: 2/4;
}
#sc_speakers .speakers-grid .speaker-card:nth-child(5) {
  grid-column: 4/6;
}
@media (max-width: 768px) {
  #sc_speakers .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #sc_speakers .speakers-grid .speaker-card:nth-child(1),
  #sc_speakers .speakers-grid .speaker-card:nth-child(2),
  #sc_speakers .speakers-grid .speaker-card:nth-child(3),
  #sc_speakers .speakers-grid .speaker-card:nth-child(4),
  #sc_speakers .speakers-grid .speaker-card:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  #sc_speakers .speakers-grid {
    grid-template-columns: 1fr;
  }
}
#sc_speakers .speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}
#sc_speakers .speaker-photo-wrap {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.1rem;
}
#sc_speakers .speaker-photo-wrap.placeholder-wrap {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
#sc_speakers .speaker-photo-wrap.placeholder-wrap .placeholder-text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: #e03030;
  letter-spacing: 0.1em;
}
#sc_speakers .speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 45px;
}
#sc_speakers .speaker-info {
  padding: 0 0.5rem;
}
#sc_speakers .speaker-name {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: #262a44;
  line-height: 1.5;
}

#sc_register {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
#sc_register .gift-section {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
#sc_register .gift-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
#sc_register .gift-label {
  height: 90px;
  width: auto;
  object-fit: contain;
}
#sc_register .gift-item {
  width: 100%;
  max-width: 350px;
  max-height: 329px;
  object-fit: contain;
}
#sc_register .gift-name {
  font-size: clamp(14px, 3vw, 24px);
  font-weight: bold;
  letter-spacing: 0.03em;
  margin: 0;
}
#sc_register .gift-note-main {
  font-size: clamp(12px, 3vw, 22px);
  margin-top: 2.5rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
#sc_register .gift-note-sub {
  margin-bottom: 0;
}
#sc_register .register-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  #sc_register .gift-section .row {
    flex-direction: column;
  }
}

#sc_map {
  padding: 0;
}
#sc_map .section-title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
#sc_map .map-text-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
#sc_map .map-text-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#sc_map .map-img-wrap {
  width: 100%;
  line-height: 0;
}
#sc_map .map-iframe {
  width: 100%;
  height: 420px;
  display: block;
}
@media (max-width: 767px) {
  #sc_map {
    padding-top: 60px;
  }
  #sc_map .map-text-img {
    max-width: 90%;
  }
  #sc_map .map-iframe {
    height: 280px;
  }
}

.top-btn {
  position: fixed;
  right: 2rem;
  bottom: 2.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top-btn .btn {
  padding: 0;
  background: transparent;
  border: none;
  line-height: 0;
}
.top-btn .btn img {
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s;
}
.top-btn .btn:hover img {
  transform: translateY(-3px);
}
@media (max-width: 767px) {
  .top-btn {
    right: 1rem;
    bottom: 1.5rem;
  }
  .top-btn .btn img {
    width: 80px;
  }
}

footer img {
  width: 35%;
  margin: 25px auto;
  display: flex;
}

@media (max-width: 768px) {
  .hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .agenda-item {
    flex-direction: column;
    gap: 0.4rem;
  }
  .agenda-dot {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */