@charset "UTF-8";
.neon-rounded-border {
  position: relative;
  display: inline-block;
  color: white;
  font-weight: bold;
  z-index: 1; /* 確保內容在最上層 */
}

/* 建立漸層邊框底層 */
.neon-rounded-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px; /* 這裡設定圓角 */
  padding: 3px; /* 這就是邊框的粗細 */
  /* 你的螢光漸層配色 */
  background: linear-gradient(135deg, #e6007e, #8a8aff, #00ffff, #f9ff00);
  /* 關鍵：只顯示 padding 區域以外的背景（即邊框） */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #030312;
  color: #e8f4ff;
  overflow-x: hidden;
  max-width: 100%;
}

.wrapper {
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 0.5rem;
  transform: translateX(150%);
  transition: transform 600ms;
}
.fix_aside.is_active {
  transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  width: 4em;
  height: 4em;
  margin: 0.5em 0;
  border-radius: 0.5em;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fix_aside .fx_item.is_calendar {
  background-color: transparent;
  border-radius: 99%;
}
.fix_aside .fx_item.is_calendar img {
  width: 100%;
}
.fix_aside .fx_item.is_boothConnect {
  background-color: transparent;
  border-radius: 99%;
  box-shadow: none;
}
.fix_aside .fx_item.is_boothConnect img {
  width: 100%;
}
.fix_aside .fx_item.is_primary {
  background: radial-gradient(ellipse at right, #030312, transparent), radial-gradient(ellipse at left, #48a8dc, transparent);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}
.fix_aside .fx_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  width: 100%;
  text-align: center;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap.ic .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("../../assets/images/ui/arrow_top.png") center/contain no-repeat;
}

.g_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
  width: 100%;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.g_header.is_active {
  background: rgba(3, 3, 18, 0.92);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(0, 229, 255, 0.18);
}
.g_header .header_cnt {
  position: relative;
  display: flex;
  padding: 0.5rem;
}
.g_header .menu_btn {
  position: relative;
  width: 48px;
  height: 48px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 6px;
}
.g_header .menu_btn .icon {
  position: absolute;
  left: 20%;
  top: 50%;
  display: inline-block;
  width: 60%;
  height: 4px;
  margin-top: -2px;
  background-color: #fff;
}
.g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.g_header .menu_btn .icon::before {
  top: -200%;
}
.g_header .menu_btn .icon::after {
  bottom: -200%;
}
.g_header .nav_area {
  position: relative;
  z-index: 3;
}
.g_header .nav_area .nav_content {
  display: flex;
  justify-content: flex-end;
}
.g_header .nav_area .nav_cnt {
  display: inline-flex;
}
.g_header .nav_area .nav_item {
  font-size: 1.125rem;
  line-height: 1;
}
.g_header .nav_area .nav_item .nav_link {
  color: #e8f4ff;
}
.g_header .nav_area .nav_item.is_highlight {
  padding: 0 6px;
}
.g_header .nav_area .nav_item.is_highlight .nav_link {
  background: linear-gradient(135deg, #83c7e9, #ab61cf);
  color: #ffffff;
  font-weight: 700;
  border-radius: 4px;
}
.g_header .nav_area .nav_link {
  display: block;
  padding: 12px;
  border-radius: 4px;
  color: #e8f4ff;
  transition: all 0.3s ease-in-out;
}
.g_header .nav_area .nav_link:hover {
  text-decoration: none;
  color: #83c7e9;
  transform: translateY(-2px);
}
.g_header .header_sns {
  flex: 1 0 auto;
  padding: 0 12px;
  text-align: right;
}
.g_header .header_sns .hover {
  position: relative;
  display: inline-block;
}
.g_header .header_sns .hover img {
  width: 40px;
  line-height: 0;
}
.g_header .header_sns .hover:hover .hover_menu {
  display: block;
}
.g_header .header_sns .hover_holder {
  cursor: pointer;
}
.g_header .header_sns .hover_menu {
  position: absolute;
  display: none;
  padding: 0.5em 0;
}
.g_header .header_sns .hover_menu .hover_item {
  display: block;
  margin-top: 0.5em;
  cursor: pointer;
}

.g_kv {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #030312;
  overflow: hidden;
}
.g_kv .kv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.g_kv .kv_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
}
.g_kv .kv_layer--light {
  background-image: url("../../assets/images/kv/bg-light.png");
  mix-blend-mode: screen;
  animation: kv-light-breathe 10s ease-in-out infinite;
  opacity: 0.9;
}
.g_kv .kv_layer--cube {
  background-image: url("../../assets/images/kv/bg-cube.png");
  mix-blend-mode: screen;
  animation: kv-cube-scroll 20s linear infinite;
}
.g_kv .kv_layer--cube2 {
  animation-delay: -10s;
}
.g_kv .kv_layer--hand {
  background-image: url("../../assets/images/kv/bg-hand.png");
  background-position: right center;
  background-size: cover;
  mix-blend-mode: screen;
}
@keyframes kv-light-breathe {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}
@keyframes kv-cube-scroll {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  88% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes kv-cube-flow {
  0% {
    transform: translateY(10px) scale(1);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}
@keyframes kv-hand-float {
  0%, 100% {
    transform: translateY(10px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.g_kv {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 0;
}

.kv_overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
.kv_overlay .df_logo {
  position: absolute;
  left: 3%;
  top: 4vh;
  width: 10%;
}
.kv_overlay .df_logo img {
  width: 100%;
  max-width: 100%;
}
.kv_overlay .t1 {
  position: absolute;
  width: 45%;
  top: 20%;
  left: 3%;
}
.kv_overlay .t1 img {
  width: 100%;
  max-width: 100%;
}
.kv_overlay .t2 {
  position: absolute;
  width: 30%;
  top: 75%;
  left: 4%;
}
.kv_overlay .t2 img {
  width: 100%;
  max-width: 100%;
}

@keyframes kv-logo-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kv-t1-in {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-t2-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.g_main {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.main_sc {
  padding: 4rem 0;
}

.sc_title {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.5rem;
}
.sc_title .tit {
  display: inline-block;
  margin: 0 auto 20px;
  color: #83c7e9;
  font-weight: 700;
  line-height: 1.3;
}
.sc_title .tit.c_white {
  color: #ffffff;
}
.sc_title .tit.c_main {
  color: #83c7e9;
}

.sc_intro,
.sc_agenda,
.sc_speaker,
.sc_gift,
.sc_boothConnect,
.sc_sponsor,
.sc_location,
.sc_detail {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sc_agenda,
.sc_gift,
.sc_location {
  background: rgba(10, 20, 50, 0.5);
  border-top: 1px solid rgba(131, 199, 233, 0.1);
}

.sc_intro,
.sc_speaker,
.sc_sponsor,
.sc_detail {
  background: rgba(3, 3, 18, 0.8);
  border-top: 1px solid rgba(131, 199, 233, 0.08);
}

.sc_boothConnect {
  background: linear-gradient(135deg, rgba(3, 3, 18, 0.95), rgba(10, 5, 35, 0.95));
  border-top: 1px solid rgba(171, 97, 207, 0.2);
}

.sc_intro .sc_title .tit,
.sc_intro .sc_title .titleText {
  display: inline-block;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1.4;
  color: transparent;
  background: linear-gradient(135deg, #83c7e9 0%, #fff 60%, #ab61cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.intro_cnt {
  margin-bottom: 3.5rem;
}
.intro_cnt p {
  color: #e8f4ff;
  margin-bottom: 0.5em;
  padding: 0.25em 0;
  line-height: 2;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
}
.intro_cnt .feature {
  width: 100%;
  margin-top: 4rem;
}
.intro_cnt .feature .title {
  margin-bottom: 1.5rem;
  color: #83c7e9;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
.intro_cnt .feature > .topic {
  margin: 1.5rem auto 0;
  max-width: 800px;
  color: #e8f4ff;
  font-size: 1.15rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.9;
}
.intro_cnt .feature .battle,
.intro_cnt .feature .battle-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
  align-items: start;
}
.intro_cnt .feature .battle .item,
.intro_cnt .feature .battle-2 .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(131, 199, 233, 0.18);
  border-radius: 16px;
}
.intro_cnt .feature .battle .battle-txt,
.intro_cnt .feature .battle-2 .battle-txt {
  padding: 0rem 1.25rem;
}
.intro_cnt .feature .battle .topic,
.intro_cnt .feature .battle-2 .topic {
  margin-bottom: 0.75rem;
  color: #83c7e9;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}
.intro_cnt .feature .battle .des,
.intro_cnt .feature .battle-2 .des {
  color: #e8f4ff;
  font-size: 1.125rem;
  line-height: 1.85;
  list-style: none;
  padding-left: 0;
  text-align: left;
}
.intro_cnt .feature .battle .des li,
.intro_cnt .feature .battle-2 .des li {
  padding: 0.4rem 0;
  padding-left: 1.25em;
  position: relative;
}
.intro_cnt .feature .battle .des li::before,
.intro_cnt .feature .battle-2 .des li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #83c7e9;
  opacity: 0.7;
}
.intro_cnt .feature .battle-2 {
  grid-template-columns: repeat(3, 1fr);
}
.intro_cnt > .feature:first-of-type .battle {
  grid-template-columns: repeat(3, 1fr);
}
.intro_cnt > .feature:first-of-type .battle .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60%;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 16px 16px 0px 0px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(131, 199, 233, 0.2);
}
.intro_cnt > .feature:first-of-type .battle .image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.intro_cnt > .feature:nth-of-type(2) {
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.intro_cnt > .feature:nth-of-type(2) > .title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.45;
}
.intro_cnt > .feature:nth-of-type(2) > p:not(.topic) {
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}
.intro_cnt > .feature:nth-of-type(2) > .topic {
  margin-top: 2rem;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8f4ff;
  line-height: 1.9;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons {
  margin-top: 2.5rem;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .battle-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .item {
  padding: 1.5rem 1.25rem;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .image-icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  max-width: 88px;
  margin: 0 auto 1rem;
  padding: 0.5rem;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .image-icon-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 64px;
  max-height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .topic {
  margin-bottom: 0.55rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #83c7e9;
  line-height: 1.45;
}
.intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .des {
  font-size: 1.125rem;
  line-height: 1.85;
  color: #e8f4ff;
}

.sc_sponsor {
  position: relative;
}
.sc_sponsor .sc_title .tit {
  color: #ffffff;
}
.sc_sponsor .container-fluid {
  max-width: 1440px;
}

.sort_cnt .sorts {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.sort_cnt .sorts .item {
  flex: 0 0 auto;
  margin: 0 5px;
}
.sort_cnt .sorts .item_link {
  display: block;
  border-radius: 100px;
  padding: 0.6em 1.5em;
  background: rgba(131, 199, 233, 0.06);
  border: 1px solid rgba(131, 199, 233, 0.3);
  font-size: 1rem;
  line-height: 1;
  color: #8baac8;
  cursor: pointer;
  transition: all 250ms;
}
.sort_cnt .sorts .item_link:hover {
  text-decoration: none;
  background: rgba(131, 199, 233, 0.15);
  border-color: rgba(131, 199, 233, 0.6);
  color: #83c7e9;
}
.sort_cnt .sorts .item_link.is_active {
  background: rgba(131, 199, 233, 0.2);
  border-color: #83c7e9;
  color: #83c7e9;
  box-shadow: 0 0 10px rgba(131, 199, 233, 0.25);
}

.sc_speaker .sc_title .tit {
  text-shadow: none;
  color: #ffffff;
}

.sponsor_cnt {
  padding: 20px 0;
}
.sponsor_cnt .sponsors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.sponsor_cnt .spr_item {
  flex: 0 0 20%;
  padding: 10px;
}
.sponsor_cnt .spr_item .for_test {
  display: none;
}
.sponsor_cnt .spr_item .link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.sponsor_cnt .spr_item img {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .g_header.is_active {
    background-color: #2c2c2c;
    box-shadow: none;
  }
  .intro_cnt p {
    color: #e8f4ff;
    margin-bottom: 0.5em;
    padding: 0.25em 0;
    line-height: 2;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
  }
  .intro_cnt .feature {
    margin-top: 2.5rem;
  }
  .intro_cnt .feature .battle {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0;
  }
  .intro_cnt > .feature:nth-of-type(2) {
    margin-top: 3.5rem;
    padding-top: 2.25rem;
  }
  .intro_cnt > .feature:nth-of-type(2)::before {
    margin-bottom: 1.5rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > p:not(.topic) {
    max-width: 100%;
  }
  .intro_cnt > .feature:nth-of-type(2) > .topic {
    margin-top: 1.25rem;
    font-size: 1.15rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .battle {
    gap: 20px;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .battle-2 {
    grid-template-columns: 1fr;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .image-icon-placeholder {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .image-icon-placeholder img {
    max-width: 118px;
    max-height: 118px;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .topic {
    font-size: 1.1rem;
  }
  .intro_cnt > .feature:nth-of-type(2) > .feature.feature-icons .des {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}
.cta {
  text-align: center;
  padding-bottom: 3.5rem;
}
.cta .cta-lead {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #e8f4ff;
  font-size: 1.5rem;
  line-height: 1.9;
  text-align: center;
}
.cta .cta-info {
  display: block;
  max-width: 580px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: rgba(131, 199, 233, 0.08);
  border-radius: 1.25rem;
  border: 1px solid rgba(131, 199, 233, 0.2);
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cta .cta-info:hover {
  text-decoration: none;
  border-color: rgba(131, 199, 233, 0.5);
  box-shadow: 0 0 40px rgba(131, 199, 233, 0.12);
  transform: translateY(-4px);
}
.cta .btn-shine {
  display: block;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-decoration: none;
  background: -webkit-linear-gradient(270deg, #83c7e9 0%, #ffffff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.cta .cta-time {
  margin: 0 0 1.75rem !important;
  color: #e8f4ff;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06rem !important;
  line-height: 1.6;
  text-align: center;
}
.cta .cta-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: -webkit-linear-gradient(270deg, #83c7e9 0%, #ffffff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.cta .cta-register img {
  width: 18px;
  animation: arrow-ani 1.25s ease-in-out infinite;
}
.cta .cta-info:hover .cta-register {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

@keyframes shine {
  0% {
    background-position: 125% 0, 0 0;
  }
  100% {
    background-position: -125% 0, 0 0;
  }
}
.bttn {
  display: inline-block;
}
.bttn .bttn_inner {
  display: block;
  padding: 0.75em 2em;
  border-radius: 5px;
  text-align: center;
  font-size: 1.25em;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.bttn .bttn_inner:hover {
  text-decoration: none;
}
.bttn .xs_size {
  padding: 0.35em 1em;
  font-size: 0.95em;
}
.bttn .main_b {
  border: 1px solid #48a8dc;
  color: #48a8dc;
  font-weight: 700;
}
.bttn .main_b:hover {
  transform: translateX(10px);
}

@keyframes arrow-ani {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}
.sc_agenda {
  position: relative;
}
.sc_agenda .container {
  max-width: 1140px;
}
.sc_agenda .sc_title {
  margin-bottom: 1.75rem;
}
.sc_agenda .sc_title .tit {
  color: #ffffff;
}

.agd_cnt {
  background: transparent;
  border-radius: 0;
  margin-bottom: 20px;
  line-height: 1.45;
  overflow: visible;
}
.agd_cnt .tr {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(131, 199, 233, 0.12);
  border-left: 3px solid rgba(131, 199, 233, 0.35);
  border-bottom: 3px solid rgba(131, 199, 233, 0.35);
  box-shadow: none;
  border-radius: 0.75rem;
}
.agd_cnt .tr.tr_light {
  align-items: center;
  min-height: 58px;
  margin-bottom: 10px;
  background: rgba(131, 199, 233, 0.1);
  border: 1px solid rgba(131, 199, 233, 0.2);
  border-left: 3px solid #83c7e9;
  border-bottom: 3px solid #83c7e9;
}
.agd_cnt .tr.tr_light .td {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.agd_cnt .tr.tr_light .td_time {
  color: #83c7e9;
  font-weight: 700;
}
.agd_cnt .tr.tr_light .ag_tit {
  color: #83c7e9;
  font-weight: 700;
}
.agd_cnt .tr.tr_light .ag_spk,
.agd_cnt .tr.tr_light .name,
.agd_cnt .tr.tr_light .job {
  color: #83c7e9;
}
.agd_cnt .td {
  display: flex;
  align-items: center;
  padding: 1.1rem 1.25rem;
  color: #e8f4ff;
  border-right: 0;
}
.agd_cnt .td_time {
  flex: 0 0 148px;
  justify-content: center;
  color: #83c7e9;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.85;
}
.agd_cnt .td_title {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.agd_cnt .ag_tit {
  flex: 1 1 auto;
  margin-right: 0;
  color: #e8f4ff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.agd_cnt .topic_toggle {
  flex: 0 0 auto;
  margin-left: auto;
}
.agd_cnt .topic_toggle .bttn {
  display: inline-flex;
  align-items: center;
}
.agd_cnt .topic_toggle .bttn_inner.main_b.xs_size {
  min-width: 96px;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(131, 199, 233, 0.5);
  border-radius: 999px;
  background: transparent;
  color: #83c7e9;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.agd_cnt .topic_toggle .bttn_inner.main_b.xs_size:hover {
  background: rgba(131, 199, 233, 0.15);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(131, 199, 233, 0.3);
}
.agd_cnt .td_speaker {
  flex: 0 0 290px;
  align-items: center;
  border-left: 1px solid rgba(131, 199, 233, 0.08);
}
.agd_cnt .ag_spk {
  width: 100%;
  color: #83c7e9;
  line-height: 1.55;
  font-size: 0.95rem;
}
.agd_cnt .ag_spk + .ag_spk {
  margin-top: 0;
}
.agd_cnt .ag_spk .job,
.agd_cnt .ag_spk .name {
  display: block;
  color: inherit;
}
.agd_cnt .ag_spk .name {
  font-weight: 600;
  color: #e8f4ff;
}
.agd_cnt .ag_spk_tit {
  display: none;
}

.agd_normal .td_title {
  flex: 1 1 auto;
}
.agd_normal .td_speaker {
  flex: 0 0 305px;
}

.ag_tip {
  margin-top: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.speaker_items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.speaker_items .item {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  text-align: center;
  margin-bottom: 20px;
  color: #e8f4ff;
}
.speaker_items .item .for_test {
  display: none;
}
.speaker_items .item .pic {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 10px;
  background: url("../../assets/images/ui/speech.svg") center/120px no-repeat;
  cursor: pointer;
}
.speaker_items .item .pic::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 100%;
  background: linear-gradient(135deg, #83c7e9, #ab61cf, #e6007e);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 300ms;
}
.speaker_items .item .pic img {
  border-radius: 100%;
  position: absolute;
  left: 3px;
  top: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 300ms;
  filter: brightness(0.9) contrast(1.05);
}
.speaker_items .item .pic:hover::after {
  opacity: 1;
}
.speaker_items .item .pic:hover img {
  transform: scale(0.95);
}
.speaker_items .item .name {
  margin-bottom: 4px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: #e8f4ff;
}
.speaker_items .item .name span {
  display: inline-block;
}
.speaker_items .item .job,
.speaker_items .item .cmp {
  color: #8baac8;
  font-size: 0.875rem;
  line-height: 1.4;
}

.sc_gift {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.sc_gift .tit {
  margin-bottom: 2.5rem;
  color: #e8f4ff;
}
.sc_gift-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
  margin-bottom: 2rem;
}
.sc_gift-cnt .gift-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: calc(25% - 1rem);
  position: relative;
  padding: 1.25rem 1rem 1.25rem;
  background: rgba(6, 10, 28, 0.8);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 300ms, box-shadow 300ms;
}
.sc_gift-cnt .gift-list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1.5px;
  background: linear-gradient(160deg, #83c7e9 0%, rgba(171, 97, 207, 0.5) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.sc_gift-cnt .gift-list .gift-type {
  display: block;
  margin-bottom: 1rem;
  padding: 0.4rem 0 0.75rem;
  border-bottom: 1px solid rgba(131, 199, 233, 0.2);
  color: #83c7e9;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06rem;
}
.sc_gift-cnt .gift-list .gift-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.sc_gift-cnt .gift-list .gift-item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 0.75rem;
  border-radius: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.sc_gift-cnt .gift-list .gift-item .gift-name {
  margin-bottom: 0.4rem;
  color: #e8f4ff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.45;
}
.sc_gift-cnt .gift-list .gift-item .gift-text {
  color: #8baac8;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}
.sc_gift-cnt .gift-list .gift-item .gift-num {
  display: inline-block;
  margin-top: auto;
  padding: 0.2em 0.75em;
  border-radius: 999px;
  background: rgba(131, 199, 233, 0.1);
  border: 1px solid rgba(131, 199, 233, 0.3);
  color: #83c7e9;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sc_gift .gifr-warning {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0.5rem;
  color: #8baac8;
  font-size: 1rem;
  text-align: center;
}

.sc_boothConnect {
  background: linear-gradient(135deg, rgba(3, 3, 18, 0.95), rgba(10, 5, 35, 0.95));
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  padding: 4.25rem 0;
  border-top: 1px solid rgba(131, 199, 233, 0.12);
}
.sc_boothConnect .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.75rem;
}
.sc_boothConnect .bg_inner {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: 100%;
}
.sc_boothConnect .bg_inner .circle {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 75%;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: -35px 40px 40px -25px rgba(0, 0, 0, 0.1);
}
.sc_boothConnect .bg_inner .circle.circle2 {
  box-shadow: 35px -30px 20px -28px rgba(255, 255, 255, 0.15);
}
.sc_boothConnect .bg_inner .circle.purple, .sc_boothConnect .bg_inner .circle.blue, .sc_boothConnect .bg_inner .circle.blue2, .sc_boothConnect .bg_inner .circle.sky {
  filter: blur(40px);
  mix-blend-mode: screen;
}
.sc_boothConnect .bg_inner .circle.purple {
  background: #ea95fe;
  animation: rotate-reverse 1.8s linear infinite;
  transform-origin: 44% 44%;
}
.sc_boothConnect .bg_inner .circle.blue {
  background: #adc0ff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 56% 44%;
}
.sc_boothConnect .bg_inner .circle.blue2 {
  background: #adc0ff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 44% 56%;
}
.sc_boothConnect .bg_inner .circle.sky {
  background: #a7faff;
  animation: rotate 1.8s linear infinite;
  transform-origin: 56% 56%;
}
.sc_boothConnect-cnt {
  width: 65%;
}
.sc_boothConnect .tit {
  position: relative;
  margin-bottom: 1.75rem;
  color: #e8f4ff;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}
.sc_boothConnect .tit span {
  position: absolute;
  top: 50%;
  left: 82%;
  transform: translateY(-40%);
  font-size: 1rem;
  font-weight: 300;
  color: #83c7e9;
}
.sc_boothConnect .tit span.zh {
  animation: shine-ani 1s steps(1) infinite;
}
.sc_boothConnect .text {
  margin-bottom: 1rem;
  color: #8baac8;
}
.sc_boothConnect .text p {
  text-align: justify;
  color: #8baac8;
}
.sc_boothConnect .text p:first-child {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #e8f4ff;
}
.sc_boothConnect .bttn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(131, 199, 233, 0.15), rgba(171, 97, 207, 0.15));
  border: 1.5px solid rgba(131, 199, 233, 0.6);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
  transition: all 0.3s ease-in-out;
}
.sc_boothConnect .bttn img {
  width: 8%;
  margin: 0.2rem 0 0 0.5rem;
  animation: arrow-ani 1.25s ease-in-out infinite;
}
.sc_boothConnect .bttn:hover {
  text-decoration: none;
  background: rgba(131, 199, 233, 0.25);
  box-shadow: 0 0 16px rgba(131, 199, 233, 0.4);
  color: #ffffff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes shine-ani {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.sc_location .sc_title .tit {
  color: #e8f4ff;
}

.location_cnt .loc_top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-align: center;
}
.location_cnt .loc_top .loc {
  margin: 0 0.5em 10px;
  color: #83c7e9;
  font-size: 1.5em;
}
.location_cnt .loc_top .addr {
  margin: 0 0.5em 10px;
  color: #8baac8;
}

.sc_detail .sc_title .tit {
  color: #e8f4ff;
}
.sc_detail .list {
  padding-left: 1.5em;
}
.sc_detail .list li {
  padding: 0.25em 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
}

@media (max-width: 991px) {
  .agd_cnt .td_time {
    flex-basis: 120px;
    font-size: 0.95rem;
  }
  .agd_cnt .td_speaker {
    flex-basis: 250px;
  }
  .agd_cnt .ag_tit {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .g_header {
    background-color: #2c2c2c;
  }
  .g_header .header_cnt {
    display: block;
    padding: 0.5rem 0;
    max-height: 4rem;
  }
  .g_header .menu_trigger {
    padding: 0 24px;
  }
  .g_header .nav_area .nav_content {
    display: block;
  }
  .g_header .nav_area .nav_cnt {
    display: block;
    padding: 10px 0;
    background-color: #212529;
  }
  .g_header .nav_area .nav_item.is_highlight {
    padding: 0;
  }
  .g_header .nav_area .nav_link {
    padding: 16px 24px;
    border-radius: 0;
    color: #ffffff !important;
  }
  .g_main {
    margin-top: 0;
  }
  .g_kv {
    position: relative !important;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100vw;
    height: 75vw;
    max-height: 100vh;
    margin-top: 4rem;
    overflow: hidden;
    background: #030312;
  }
  .g_kv .kv_layer--light {
    animation-duration: 14s;
  }
  .g_kv .kv_layer--cube {
    animation-duration: 16s;
  }
  .g_kv .kv_layer--cube2 {
    animation-duration: 16s;
    animation-delay: -8s;
  }
  .g_kv .kv_layer--hand {
    left: 10%;
    background-position: right top;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
  @keyframes kv-hand-float-mobile {
    0%, 100% {
      transform: translateY(0px) scale(1);
    }
    50% {
      transform: translateY(-8px) scale(1.02);
    }
  }
  .kv_overlay {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 75vw;
    z-index: 2;
  }
  .kv_overlay .df_logo {
    top: 4%;
    left: 4%;
    width: 14%;
  }
  .kv_overlay .t1 {
    top: 14%;
    left: 4%;
    width: 48%;
  }
  .kv_overlay .t2 {
    top: 52%;
    left: 5%;
    width: 35%;
  }
  .main_sc {
    padding: 40px 16px;
  }
  .sc_title {
    font-size: 1.75rem;
  }
  .sc_title .tit {
    line-height: 1.3;
  }
  .sc_intro,
  .sc_location,
  .sc_detail {
    background: rgba(3, 3, 18, 0.8);
  }
  .sc_agenda,
  .sc_speaker,
  .sc_gift,
  .sc_sponsor {
    background: rgba(2, 2, 14, 0.96);
  }
  .intro_cnt {
    font-size: 1.125rem;
    text-align: left;
  }
  .intro_cnt p {
    color: #e8f4ff;
    margin-bottom: 0.5em;
    padding: 0.25em 0;
    line-height: 2;
    font-size: 1.125rem;
    font-weight: 400;
    text-align: center;
  }
  .intro_cnt .feature {
    margin: 16px 0 30px;
  }
  .intro_cnt .feature .title {
    text-align: center;
  }
  .intro_cnt .feature .battle,
  .intro_cnt .feature .battle-2 {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 16px;
  }
  .intro_cnt .titleText {
    font-size: 1.25rem;
    background: linear-gradient(180deg, #48a8dc, #48a8dc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
  }
  .cta .cta-lead {
    font-size: 1.05rem;
  }
  .cta .cta-info {
    padding: 2rem 1.25rem;
  }
  .cta .btn-shine {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    white-space: normal;
  }
  .cta .cta-time {
    font-size: 1.2rem !important;
    margin: 0 0 1.25rem !important;
  }
  .cta .cta-register {
    font-size: 1.2rem;
    padding-bottom: 0;
    border-bottom-width: 0;
    border-bottom: none;
  }
  .agd_cnt .tr {
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
  }
  .agd_cnt .tr.tr_light {
    min-height: 0;
  }
  .agd_cnt .td {
    display: block;
    padding: 0.7rem 1rem;
  }
  .agd_cnt .td_time {
    padding-bottom: 0.2rem;
    text-align: left;
    font-size: 0.95rem;
  }
  .agd_cnt .td_title {
    display: block;
  }
  .agd_cnt .ag_tit {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .agd_cnt .topic_toggle {
    margin-left: 0;
    margin-top: 0.2rem;
  }
  .agd_cnt .td_speaker {
    padding-top: 0.1rem;
  }
  .agd_cnt .ag_spk {
    font-size: 0.96rem;
    line-height: 1.5;
  }
  .ag_tip {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .sc_speaker .container {
    padding: 0;
  }
  .speaker_items {
    display: flex;
    flex-wrap: wrap;
  }
  .speaker_items .item {
    flex: 0 0 100%;
  }
  .sort_cnt .sorts {
    flex-wrap: wrap;
  }
  .sort_cnt .sorts .item {
    margin: 0;
    padding: 3px;
    flex: 0 0 33.33%;
  }
  .sort_cnt .sorts .item_link {
    text-align: center;
    padding: 0.65em 1em;
  }
  .sc_gift {
    padding: 30px 10px;
  }
  .sc_gift .tit {
    margin-bottom: 1.5rem;
  }
  .sc_gift-cnt {
    gap: 0.75rem;
  }
  .sc_gift-cnt .gift-list {
    width: 100%;
  }
  .sc_gift-cnt .gift-list .gift-item img {
    max-width: 240px;
  }
  .sc_boothConnect {
    padding: 3rem 0;
  }
  .sc_boothConnect .container {
    flex-direction: column;
    padding: 0 1rem;
  }
  .sc_boothConnect .bg_inner {
    width: 100%;
  }
  .sc_boothConnect .bg_inner .circle {
    left: auto;
    right: -40px;
    width: 160px;
    height: 160px;
  }
  .sc_boothConnect-cnt {
    width: 100%;
  }
  .sc_boothConnect .tit {
    font-size: 1.5rem;
    text-align: center;
  }
  .sc_boothConnect .tit span {
    position: static;
    display: inline-block;
    transform: none;
    margin-left: 0.25rem;
  }
  .sc_boothConnect .text p {
    text-align: justify;
  }
  .sc_boothConnect .boothConnect-cta {
    text-align: center;
  }
  .battle,
  .battle-2 {
    grid-template-columns: 1fr !important;
  }
  .sc_sponsor {
    background: rgba(2, 2, 14, 0.96);
  }
  .sc_sponsor .sponsor_cnt {
    padding: 0;
  }
  .sc_sponsor .sponsor_cnt .spr_item {
    flex: 0 0 50%;
    padding: 4px;
  }
  .location_cnt .loc_top {
    display: block;
  }
  .location_cnt .loc_top .loc {
    margin-bottom: 0;
  }
  .location_cnt .loc_top .addr {
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=style.css.map */