@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bakbak+One&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+KR:wght@200..900&family=Noto+Serif+TC:wght@200..900&display=swap");
/**** Variables ****/
:root {
  --footerbg-color: #508acc;
  --bg-color: #0b0b0b;
  --title-pointer: #97f0ff;
  --bluebg-color: #07177C;
  --blue-color: #2643f4;
  --pink-color: #ff90e3;
  --pop-content-bg: #191919;
  --font-size-XS: 1rem;
  --font-size-S: 1.1rem;
  --font-size-M: 1.25rem;
  --font-size-L: 1.4rem;
  --font-size-XL: 1.45rem;
  --font-size-XXL: 1.8rem;
  --font-size-XXXL: 2.2rem;
  --font-size-title-h6: 2.5rem;
  --font-size-title-h5: 2.91rem;
  --font-size-title-h4: 3.33rem;
  --font-size-title: 4.5rem;
  --body-font: "Noto Sans TC", sans-serif;
  --scrollbar-bg: #494949;
  --scrollbar-thumb: #2643f4;
  --scrollbar-thumb-hover: #3e58ff;
  color-scheme: light only;
}

/**** Font ****/
p {
  font-size: var(--font-size-S);
  line-height: calc(var(--font-size-S) * 2.5);
}

/**** Scrollbar ****/
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--scrollbar-bg);
  /* bar 背景色 */
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  /* bar 滑動色 */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

/**** breakpoint ****/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: url(../images/popup-bg.jpg) no-repeat right;
  background-size: cover;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(5px) brightness(0.6);
  overflow: hidden;
}
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: repeating-linear-gradient(rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.2) 2px, rgba(0, 0, 0, 0.2) 4px);
  opacity: 0.6;
}
.overlay.glitch-active {
  -webkit-animation: overlayShake 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: overlayShake 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.overlay.glitch-active::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(62, 165, 255, 0.3);
  mix-blend-mode: color-dodge;
  -webkit-animation: glitchFlash 0.2s steps(2) infinite;
          animation: glitchFlash 0.2s steps(2) infinite;
}
@media (max-width: 1024px) {
  .overlay {
    padding: 13vw;
  }
}
@media (max-width: 576px) {
  .overlay {
    padding: 4vw;
    background-position: right bottom;
  }
}

.popup_main {
  position: relative;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: calc(100dvh - 80px);
  max-width: 45vw;
  margin: 0 auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  overflow: hidden;
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s linear, -webkit-transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s linear;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s linear, -webkit-transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}
.popup_main.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.popup_main.closing {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: opacity 0.2s linear, -webkit-transform 0.2s ease-in;
  transition: opacity 0.2s linear, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, opacity 0.2s linear;
  transition: transform 0.2s ease-in, opacity 0.2s linear, -webkit-transform 0.2s ease-in;
}
@media (max-width: 1024px) {
  .popup_main {
    max-width: 100%;
  }
}

.popup_main:has(.participating-areas-wrapper) {
  max-width: 50vw;
}
@media (max-width: 1024px) {
  .popup_main:has(.participating-areas-wrapper) {
    max-width: 100%;
  }
}

.popup_main:has(.rules-wrapper) {
  max-width: 100%;
}

.popup_main:has(.rewards-wrapper) {
  width: 45vw;
}
@media (max-width: 1024px) {
  .popup_main:has(.rewards-wrapper) {
    min-width: 100%;
  }
}

.popup_info {
  opacity: 1;
  padding: 3rem;
  height: 100%;
  border: 1px solid var(--blue-color);
  background-color: var(--pop-content-bg);
}
@media (max-width: 768px) {
  .popup_info {
    padding: 2rem;
  }
}
@media (max-width: 430px) {
  .popup_info {
    padding: 1.5rem;
  }
}
.popup_info a {
  color: var(--bg-color);
  text-align: center;
}

.close_popup {
  position: relative;
  text-align: right;
  font-size: var(--font-size-title-h6);
  font-family: "Bakbak One";
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 0.5rem;
}
.close_popup::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.15rem;
  right: 0;
  bottom: 0.2rem;
  display: block;
  background-color: var(--pink-color);
}
.close_popup:hover {
  color: #ffffff;
}

.popup-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#ffb8ed), color-stop(50%, #ff90e3), to(#ffb8ed));
  background-image: linear-gradient(to right, #ffb8ed 0%, #ff90e3 50%, #ffb8ed 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  width: 100%;
  font-weight: 500;
  padding: 0.8rem 0;
  font-size: var(--font-size-S);
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s, -webkit-transform 0.2s;
  -webkit-font-smoothing: antialiased;
  border: solid 1px var(--pink-color);
  color: var(--bg-color);
}
.popup-btn:hover {
  background-position: 100% 0;
}

.btn {
  position: relative;
  border: solid 1px var(--pink-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#0b0b0b), color-stop(50%, #2e2e2e), to(#0b0b0b));
  background-image: linear-gradient(to right, #0b0b0b 0%, #2e2e2e 50%, #0b0b0b 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  padding: 0.6rem 4.5rem;
  color: var(--pink-color);
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s, -webkit-transform 0.2s;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media (max-width: 576px) {
  .btn {
    padding: 0.6rem 0;
  }
}
.btn:hover {
  background-position: 100% 0;
}
.btn.active {
  color: var(--bg-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#ffb8ed), color-stop(50%, #ff90e3), to(#ffb8ed));
  background-image: linear-gradient(to right, #ffb8ed 0%, #ff90e3 50%, #ffb8ed 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  border-color: transparent;
}
.btn.active:hover {
  background-position: 100% 0;
  color: var(--bg-color);
}
.btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.line-deco {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 2rem 0 1rem;
  width: 20%;
}

.input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  margin-bottom: 1px;
  font-weight: 500;
  color: var(--bg-color);
  width: 100%;
}
@media (max-width: 430px) {
  .input-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

label {
  display: inline-block;
  width: 130px;
  padding: 0 1.5rem;
  white-space: nowrap;
}
@media (max-width: 430px) {
  label {
    width: 100%;
    padding: 0.8rem 1.5rem 0.3rem;
    font-size: 0.9rem;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.input-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.input-group input,
.input-group select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  outline: none;
  font-size: 1rem;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}
.input-group select {
  cursor: pointer;
  color: var(--bg-color) !important;
}
.input-group input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.input-group input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.input-group input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.input-group input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.input-group input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.input-group input[type=date]:before {
  width: 100%;
  margin-right: 0.5em;
  color: #999;
}
.input-group input[type=date]:focus:before,
.input-group input[type=date]:valid:before {
  display: none;
}
.input-group input:-webkit-autofill,
.input-group input:-webkit-autofill:hover,
.input-group input:-webkit-autofill:focus,
.input-group input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--bg-color) !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.input-wrap.error-field {
  background-color: #ffe8e8 !important;
}

.input-group.select-type {
  position: relative;
}

.input-group.select-type::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

.input-group.select-type select {
  padding-right: 3rem;
}

.notice-bar {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: var(--font-size-XS);
  line-height: 2;
  padding-left: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.notice-bar span {
  color: var(--pink-color);
}

.precautions {
  max-width: 700px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}
.precautions p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.point {
  background-color: white;
  padding: 0.5rem 1rem;
  color: var(--bg-color);
  margin: 0.5rem 0;
  font-size: var(--font-size-XS);
  display: inline-block;
}

.count-num {
  counter-reset: li-counter;
}
.count-num li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 35px;
  counter-increment: li-counter;
}
.count-num li::before {
  content: counter(li-counter);
  position: absolute;
  left: 0;
  top: 2px;
  background-color: #fff;
  color: var(--bg-color);
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--font-size-XS);
  font-weight: 500;
}
.count-num li span {
  color: var(--title-pointer);
}

h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-size: var(--font-size-title-h6);
  margin-bottom: 2.5rem;
  color: white;
}
@media (max-width: 320px) {
  h2 {
    margin-bottom: 1.5rem;
  }
}
h2 span {
  color: var(--title-pointer);
}

h4 {
  font-size: var(--font-size-XS);
  font-weight: 400;
}

.recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 72px;
  margin-bottom: 1px;
  border: 1px solid #d3d3d3;
  background: url(../images/recaptcaha.jpg) right 10px no-repeat white;
}
.recaptcha a {
  color: var(--bg-color);
}

.recaptcha > div:not(.g-recaptcha) {
  position: absolute;
  right: 10px;
  bottom: 0;
}

.recaptcha > div:not(.g-recaptcha) a {
  text-decoration: none;
  color: #999;
  font-size: 12px;
}

.g-recaptcha > div {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 200px !important;
  height: 66px !important;
  overflow: hidden;
}

.area-tabs {
  white-space: nowrap;
  cursor: pointer;
}

.area-content {
  display: none;
}
.area-content.active {
  display: block;
}

/* ==========================================================================
   2. 入選隊伍名單 (Team List)
   ========================================================================== */
.team-list-wrapper .area-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.8rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
}
.team-list-wrapper .area-tabs li {
  cursor: pointer;
  padding: 0.3rem 3rem;
  color: #888;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
  font-size: var(--font-size-S);
  text-align: left;
  position: relative;
}
@media (max-width: 576px) {
  .team-list-wrapper .area-tabs li {
    padding: 0.3rem 1rem;
  }
}
.team-list-wrapper .area-tabs li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blue-color);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.team-list-wrapper .area-tabs li:hover {
  color: #fff;
}
.team-list-wrapper .area-tabs li:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: #405aff;
}
.team-list-wrapper .area-tabs li.active {
  color: #fff;
}
.team-list-wrapper .area-tabs li.active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  background-color: var(--blue-color);
}
.team-list-wrapper .input-wrap {
  margin-bottom: 2rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 430px) {
  .team-list-wrapper .input-wrap {
    margin-bottom: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: transparent;
  }
}
@media (max-width: 430px) {
  .team-list-wrapper .input-wrap label {
    width: 100%;
    padding: 0.5rem 0;
    color: #fff;
    font-size: 0.9rem;
  }
}
.team-list-wrapper .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background-color: #fff;
}
.team-list-wrapper .input-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 0.8rem 1rem;
}
.team-list-wrapper .input-group .popup-btn {
  width: auto;
  padding: 0 1.5rem;
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
}
.team-list-wrapper .table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: left;
}
.team-list-wrapper .table-body {
  height: 18rem;
  overflow-y: auto;
  margin-bottom: 3rem;
}
@media (max-width: 550px) {
  .team-list-wrapper .table-body {
    height: 22rem;
  }
}
@media (max-width: 414px) {
  .team-list-wrapper .table-body {
    padding-right: 1rem;
    height: 10rem;
  }
}
@media (max-width: 320px) {
  .team-list-wrapper .table-body {
    margin-bottom: 2rem;
  }
}
.team-list-wrapper .col {
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 0.3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid var(--bg-color);
  text-align: left;
}
.team-list-wrapper .col:last-child {
  border-right: none;
}
@media (max-width: 414px) {
  .team-list-wrapper .col {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 1rem;
  }
}
.team-list-wrapper .no {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 414px) {
  .team-list-wrapper .no {
    display: none;
  }
}
@media (max-width: 414px) {
  .team-list-wrapper .table-header .no,
  .team-list-wrapper .area-content .no {
    display: none;
  }
}
.team-list-wrapper .name {
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
}
@media (max-width: 414px) {
  .team-list-wrapper .name {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.team-list-wrapper .leader {
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
}
@media (max-width: 414px) {
  .team-list-wrapper .leader {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1rem 1rem;
  }
}
.team-list-wrapper .area-content {
  display: none;
}
.team-list-wrapper .area-content.active {
  display: block;
}
.team-list-wrapper .area-content .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
.team-list-wrapper .area-content .col {
  background-color: transparent;
  padding: 1rem 0;
  border-right: 1px solid transparent;
}
@media (max-width: 414px) {
  .team-list-wrapper .area-content .col {
    padding: 1rem 1rem;
  }
}
@media (max-width: 414px) {
  .team-list-wrapper .area-content .leader {
    -webkit-box-flex: 0.7;
        -ms-flex: 0.7;
            flex: 0.7;
  }
}

/* ==========================================================================
   3. 領取測試帳號 登入 (Test Login)
   ========================================================================== */
.test-login-wrapper h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.test-login-wrapper h4 img {
  margin-right: 0.5rem;
  max-width: 100%;
}

/* ==========================================================================
   4. 領取測試帳號 (Test Account)
   ========================================================================== */
@media (max-width: 320px) {
  .test-account-wrapper {
    height: 31rem;
    overflow-y: scroll;
    padding-right: 1rem;
  }
}
.test-account-wrapper .team-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--blue-color);
  margin-bottom: 2rem;
}
@media (max-width: 430px) {
  .test-account-wrapper .team-info-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.test-account-wrapper .team-info-wrap .team-info {
  padding: 1rem;
}
@media (max-width: 576px) {
  .test-account-wrapper .team-info-wrap .team-info {
    padding-right: 5rem;
  }
}
.test-account-wrapper .team-info-wrap .area-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--blue-color);
  color: white;
  padding: 4px 1.5rem 4px 0.8rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.test-account-wrapper .team-info-wrap .team-image {
  height: 173px;
}
@media (max-width: 576px) {
  .test-account-wrapper .team-info-wrap .team-image {
    height: 138px;
  }
}
@media (max-width: 414px) {
  .test-account-wrapper .team-info-wrap .team-image {
    height: 151px;
  }
}
.test-account-wrapper .team-info-wrap .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
@media (max-width: 576px) {
  .test-account-wrapper .team-info-wrap .team-image img {
    -o-object-position: center left;
       object-position: center left;
  }
}
@media (max-width: 430px) {
  .test-account-wrapper .team-info-wrap .team-image img {
    -o-object-position: center right;
       object-position: center right;
    padding-left: 2.5rem;
  }
}
.test-account-wrapper .team-info-wrap .team-name {
  font-size: var(--font-size-L);
  font-weight: 400;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .test-account-wrapper .team-info-wrap .team-name {
    margin-bottom: 1rem;
    line-height: 1.2;
  }
}
.test-account-wrapper .team-info-wrap .leader-name {
  line-height: 1rem;
  font-size: var(--font-size-XS);
}
.test-account-wrapper .team-info-wrap time {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}
.test-account-wrapper h3 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: var(--font-size-M);
}
.test-account-wrapper ul {
  overflow-y: scroll;
  height: 16rem;
  padding-right: 2rem;
}
@media (max-width: 320px) {
  .test-account-wrapper ul {
    height: auto;
    overflow-y: initial;
    padding: 0;
  }
}
.test-account-wrapper li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .test-account-wrapper li {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.test-account-wrapper .field-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.test-account-wrapper .info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 1rem;
}
@media (max-width: 430px) {
  .test-account-wrapper .info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.test-account-wrapper .label {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: var(--font-size-XS);
  white-space: nowrap;
}
.test-account-wrapper span {
  margin-right: 0.5rem;
  padding: 0rem 0.7rem;
}
.test-account-wrapper .btn-copy-pair {
  background-color: #ffffff;
  color: var(--bg-color);
  font-size: var(--font-size-XS);
  padding: 0.2rem 1rem;
  white-space: nowrap;
  width: 100%;
}

/* 5. 全球參賽地區 (Participating Areas)
   ========================================================================== */
@media (max-width: 821px) {
  .participating-areas-wrapper .content {
    height: 39rem;
    overflow-y: scroll;
    padding-right: 1rem;
  }
}
@media (max-width: 576px) {
  .participating-areas-wrapper .content {
    padding-right: 1rem;
  }
}
@media (max-width: 430px) {
  .participating-areas-wrapper .content {
    height: 32rem;
  }
}
@media (max-width: 414px) {
  .participating-areas-wrapper .content {
    height: 24rem;
  }
}
.participating-areas-wrapper ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 821px) {
  .participating-areas-wrapper ul {
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .participating-areas-wrapper ul {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .participating-areas-wrapper ul {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.participating-areas-wrapper .team-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #000;
  border: 1px solid var(--blue-color);
  height: 180px;
  overflow: hidden;
}
.participating-areas-wrapper .team-info-wrap .team-info {
  position: relative;
  z-index: 2;
  padding: 2rem 0.8rem 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.participating-areas-wrapper .team-info-wrap .area-tag {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.9rem;
  background-color: var(--blue-color);
  color: white;
  padding: 0.2rem 1.5rem 0.2rem 0.8rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
.participating-areas-wrapper .team-info-wrap .country-list {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.participating-areas-wrapper .team-info-wrap .country-list li {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}
.participating-areas-wrapper .team-info-wrap .company-info {
  font-size: 0.7rem;
  color: #777;
  line-height: 1.2;
}
.participating-areas-wrapper .team-info-wrap .team-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.participating-areas-wrapper .team-info-wrap .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
.participating-areas-wrapper .notice-text {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}
.participating-areas-wrapper a {
  color: var(--pink-color);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.participating-areas-wrapper a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/* 6. 隊長註冊隊伍 (Register Team)
   ========================================================================== */
.register-team-wrapper h4 {
  margin-bottom: 1.5rem;
  font-size: var(--font-size-XS);
}
.register-team-wrapper .field-container {
  margin-bottom: 1px;
}
.register-team-wrapper .hint {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  color: var(--title-pointer);
  font-size: 0.9rem;
  text-align: right;
  padding-right: 5px;
  line-height: 3;
}
@media (max-width: 430px) {
  .register-team-wrapper .hint {
    text-align: left;
    line-height: 2;
  }
}
.register-team-wrapper .content {
  height: 18rem;
  overflow-y: scroll;
  margin-bottom: 2rem;
}
.register-team-wrapper a {
  color: var(--pink-color);
  cursor: pointer;
  display: inline-block;
  padding: 0 3px;
}
.register-team-wrapper .checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  font-size: 0.9rem;
  margin: 1.5rem 0;
  cursor: pointer;
  padding-right: 2rem;
}
.register-team-wrapper .checkbox-wrap input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 10px;
  margin-top: 2px;
  cursor: pointer;
}
.register-team-wrapper .checkbox-wrap label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  line-height: 1.5;
  padding: 0;
  width: auto;
  white-space: inherit;
}

/* 7. 隊員加入隊伍 (Join Team)
   ========================================================================== */
.join-team-wrapper .notice-bar {
  line-height: 1.3;
  padding: 0.5rem 1rem;
}

/* 8. 查詢隊伍 (Team Status)
   ========================================================================== */
.team-status-wrapper {
  height: 33rem;
  overflow-y: scroll;
  padding-right: 2rem;
}
@media (max-width: 414px) {
  .team-status-wrapper {
    padding-right: 1rem;
  }
}
.team-status-wrapper .team-info-wrap {
  margin-bottom: 0;
}
.team-status-wrapper .code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1px;
  min-height: 2.8rem;
  height: auto;
}
.team-status-wrapper .code p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-status-wrapper .code p .code-label {
  white-space: nowrap;
}
.team-status-wrapper .code p .code-value {
  font-weight: bold;
  letter-spacing: 1px;
  word-break: break-all;
}
.team-status-wrapper .code button {
  width: 7.5rem;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-color: #fff;
  color: var(--bg-color);
  font-weight: 500;
  cursor: pointer;
  border: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.team-status-wrapper .code button:hover {
  background-color: #d9d9d9;
}
@media (max-width: 576px) {
  .team-status-wrapper .code p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0.4rem 0.8rem;
  }
  .team-status-wrapper .code p .code-value {
    margin-left: 0;
    font-size: 0.85rem;
  }
  .team-status-wrapper .code button {
    width: 5.5rem;
    font-size: 0.85rem;
  }
}
.team-status-wrapper {
  /* 預設狀態 (狀態 1：預約刪除) */
}
.team-status-wrapper .btn-status-toggle {
  -webkit-transition: background 0.3s, opacity 0.3s, color 0.3s, border 0.3s;
  transition: background 0.3s, opacity 0.3s, color 0.3s, border 0.3s;
  background-color: var(--pink-color);
  color: var(--bg-color);
  margin-bottom: 4rem;
}
.team-status-wrapper {
  /* 狀態 2：已預約刪除中  */
}
.team-status-wrapper .btn-status-toggle.processing {
  opacity: 0.8;
}
.team-status-wrapper {
  /* 狀態 3：取消刪除隊伍 (灰色) */
}
.team-status-wrapper .btn-status-toggle.cancel-mode {
  background-image: -webkit-gradient(linear, left top, right top, from(#0b0b0b), color-stop(50%, #2e2e2e), to(#0b0b0b));
  background-image: linear-gradient(to right, #0b0b0b 0%, #2e2e2e 50%, #0b0b0b 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.team-status-wrapper ul {
  height: auto;
  overflow-y: visible;
  padding-right: 0;
}
.team-status-wrapper ul li {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-status-wrapper ul .cancel {
  background-image: -webkit-gradient(linear, left top, right top, from(#0b0b0b), color-stop(50%, #2e2e2e), to(#0b0b0b));
  background-image: linear-gradient(to right, #0b0b0b 0%, #2e2e2e 50%, #0b0b0b 100%);
  background-size: 200% 100%;
  background-position: 0% 0;
  color: white;
  white-space: nowrap;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, -webkit-transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s;
  transition: background-position 0.5s ease, color 0.3s ease, transform 0.2s, -webkit-transform 0.2s;
}
.team-status-wrapper ul .cancel:hover {
  background-position: 100% 0;
}
.team-status-wrapper ul .member {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
.team-status-wrapper ul .member span {
  padding: 0;
}
.team-status-wrapper ul .member p {
  line-height: 1.5;
}
.team-status-wrapper ul .popup-btn {
  width: 150px;
}
.team-status-wrapper .precautions li {
  border-bottom: none;
}
.team-status-wrapper .precautions li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 9. 觀賽報名 (Spectator Registration)
   ========================================================================== */
.spectator-registration-wrapper .content {
  height: 24rem;
  overflow-y: scroll;
  padding-right: 2rem;
}
.spectator-registration-wrapper .banner {
  margin: 0 auto;
  margin-bottom: 2rem;
}
.spectator-registration-wrapper .banner img {
  max-width: 100%;
}
.spectator-registration-wrapper p {
  font-size: var(--font-size-XS);
  line-height: 1.32;
  font-weight: 400;
}
.spectator-registration-wrapper .input-wrap {
  background-color: transparent;
  color: white;
  margin-bottom: 1rem;
}
.spectator-registration-wrapper .input-wrap label {
  background-color: white;
  color: var(--bg-color);
  width: auto;
  padding: 0.3rem 0.8rem;
  margin-right: 1rem;
}
@media (max-width: 430px) {
  .spectator-registration-wrapper .input-wrap label {
    margin-bottom: 1rem;
  }
}
.spectator-registration-wrapper .attention-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
.spectator-registration-wrapper .attention-box img {
  max-width: 100%;
  margin-right: 1rem;
}
.spectator-registration-wrapper .attention-box span {
  color: var(--title-pointer);
}
.spectator-registration-wrapper a {
  color: var(--pink-color);
  display: inline-block;
  padding: 0 0.5rem;
}
.spectator-registration-wrapper .popup-btn {
  color: var(--bg-color);
  padding: 0.8rem 0;
}

/* 10. 觀賽報名表單 (Spectator Registration Form)
   ========================================================================== */
.spectator-registration-form-wrapper .country-code {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  width: 8rem;
}
.spectator-registration-form-wrapper .popup-btn {
  margin-bottom: 1.5rem;
}
.spectator-registration-form-wrapper p {
  font-size: var(--font-size-XS);
  line-height: 1.5;
}
.spectator-registration-form-wrapper span {
  color: var(--pink-color);
}
.spectator-registration-form-wrapper .phone-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.spectator-registration-form-wrapper .phone-group .country-select-wrapper {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.spectator-registration-form-wrapper .phone-group .country-select-wrapper::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}
.spectator-registration-form-wrapper .phone-group .country-code {
  width: 100%;
  padding-right: 2.5rem !important;
  cursor: pointer;
}
.spectator-registration-form-wrapper .phone-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 1.5rem !important;
}

/* 11. 賽制與規章 (Rules)
   ========================================================================== */
.rules-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
}
@media (max-width: 1024px) {
  .rules-wrapper .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 821px) {
  .rules-wrapper .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.rules-wrapper p {
  line-height: 1.5;
  font-size: var(--font-size-XS);
  font-weight: 400;
}
.rules-wrapper .point-bg {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: white;
}
@media (max-width: 576px) {
  .rules-wrapper .point-bg {
    line-height: 1.6;
  }
}
.rules-wrapper h3 {
  width: 100%;
  background-color: var(--blue-color);
  color: white;
  padding: 1rem 0 1rem 0;
  text-indent: 1.3em;
  font-size: var(--font-size-XL);
  font-weight: 600;
  margin-bottom: 3.5rem;
  text-align: left;
}
.rules-wrapper h6 {
  color: var(--title-pointer);
  font-size: var(--font-size-L);
  font-weight: 500;
  text-align: left;
  margin-bottom: 1rem;
}
.rules-wrapper .table-body {
  width: 800px;
  height: 34rem;
  overflow-y: scroll;
  border: 1px solid var(--blue-color);
  padding-bottom: 5rem;
}
@media (max-width: 1024px) {
  .rules-wrapper .table-body {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .rules-wrapper .table-body {
    height: 22rem;
  }
}
@media (max-width: 320px) {
  .rules-wrapper .table-body {
    height: 20rem;
  }
}
.rules-wrapper .table-body ul {
  padding: 0 2rem;
  margin: 0;
}
.rules-wrapper .table-body ul li {
  margin-bottom: 3rem;
}
.rules-wrapper .table-body ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .rules-wrapper .area-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.rules-wrapper .area-tabs li {
  margin-bottom: 1rem;
}
.rules-wrapper .area-tabs li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .rules-wrapper .area-tabs li {
    margin-bottom: auto;
    width: 50%;
    text-align: center;
  }
}
.rules-wrapper .tournament-settings ul li {
  margin-bottom: 1.5rem;
}
.rules-wrapper .tournament-settings .point-bg {
  color: white;
}
.rules-wrapper .tournament-settings .info-bg {
  background-color: white;
  color: var(--bg-color);
  padding: 1rem 1rem;
  margin-top: 1rem;
}
.rules-wrapper .tournament-settings .info-bg p {
  line-height: 1.3;
  font-size: var(--font-size-XS);
  margin-bottom: 1rem;
}
.rules-wrapper .tournament-settings .info-bg span {
  font-weight: 500;
  color: var(--bg-color);
  margin-bottom: 0.6rem;
  display: block;
  text-indent: -0.5em;
}
.rules-wrapper .note {
  margin-bottom: 1rem;
}
.rules-wrapper a {
  color: var(--pink-color);
  padding: 0 0.5rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.rules-wrapper a:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  font-weight: 500;
}

/* 12. 報名方式與規則 (Registration Rules)
   ========================================================================== */
.registration-rules-wrapper ul {
  overflow-y: scroll;
  height: 24rem;
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .registration-rules-wrapper ul {
    height: 49rem;
  }
}
@media (max-width: 430px) {
  .registration-rules-wrapper ul {
    height: 32rem;
    padding-right: 1rem;
  }
}
@media (max-width: 414px) {
  .registration-rules-wrapper ul {
    height: 22rem;
  }
}
.registration-rules-wrapper ul li {
  margin-bottom: 3rem;
}
.registration-rules-wrapper ul p {
  line-height: 1;
}
.registration-rules-wrapper ul h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.7rem;
  font-size: var(--font-size-L);
}
.registration-rules-wrapper ul h3::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 0.7rem;
  background-color: #405aff;
}
.registration-rules-wrapper .count-num li {
  margin-bottom: 0.5rem;
}
.registration-rules-wrapper .stepWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0.5rem 0;
}
@media (max-width: 768px) {
  .registration-rules-wrapper .stepWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.registration-rules-wrapper .stepWrap li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: -webkit-gradient(linear, left top, right top, from(var(--pop-content-bg)), color-stop(50%, rgba(255, 255, 255, 0.1)), to(var(--pop-content-bg)));
  background: linear-gradient(90deg, var(--pop-content-bg) 0%, rgba(255, 255, 255, 0.1) 50%, var(--pop-content-bg) 100%);
}
@media (max-width: 768px) {
  .registration-rules-wrapper .stepWrap li {
    margin-bottom: 1rem;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding-left: 3rem;
  }
}
.registration-rules-wrapper .stepWrap li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--blue-color);
}
.registration-rules-wrapper .stepWrap li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.registration-rules-wrapper .stepWrap .text-group {
  position: relative;
  z-index: 2;
}
.registration-rules-wrapper .stepWrap .text-group .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.1;
  margin-bottom: 0.2rem;
  font-family: "Bakbak One";
  letter-spacing: 1px;
}
.registration-rules-wrapper .stepWrap .text-group strong {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.registration-rules-wrapper .stepWrap .char-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 60%;
  z-index: 1;
}
.registration-rules-wrapper .stepWrap .char-img img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(-5px 0 10px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(-5px 0 10px rgba(0, 0, 0, 0.8));
}
.registration-rules-wrapper .note {
  overflow: auto;
  height: auto;
  padding-right: 0;
}

/* 13. 台灣區賽制流程 (Tw Format)
   ========================================================================== */
.tw-format-wrapper {
  height: 30rem;
  overflow-y: scroll;
  padding-right: 2rem;
}
.tw-format-wrapper .event-list {
  margin-bottom: 2rem;
}
.tw-format-wrapper .event-list .event-item {
  border: 1px solid var(--blue-color);
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .tw-format-wrapper .event-list .event-info {
    margin-bottom: 1rem;
  }
}
.tw-format-wrapper .event-list .event-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 2rem;
}
@media (max-width: 576px) {
  .tw-format-wrapper .event-list .event-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.tw-format-wrapper .event-list .badge {
  border-bottom: 1px solid white;
  padding-bottom: 0.2rem;
  display: inline-block;
  margin-bottom: 0.2rem;
}
.tw-format-wrapper .event-list time {
  font-weight: 500;
  font-size: var(--font-size-XXL);
  display: block;
}
.tw-format-wrapper .event-list .type-tag {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
}
.tw-format-wrapper .event-list .event-location {
  background-color: var(--blue-color);
  padding: 0.5rem 2rem;
  text-align: left;
}
.tw-format-wrapper .event-list .event-location span {
  font-size: var(--font-size-L);
  font-weight: 500;
  margin-left: 1rem;
}
.tw-format-wrapper .event-item.final-match {
  border: 1px solid var(--pink-color);
}
.tw-format-wrapper .event-item.final-match .event-location {
  background-color: var(--pink-color);
  color: var(--bg-color);
}
.tw-format-wrapper .count-num {
  margin-bottom: 2rem;
}
.tw-format-wrapper p {
  line-height: 1.5;
}
.tw-format-wrapper .point {
  width: 100%;
}

/* 14. 賽事獎勵 (Rewards)
   ========================================================================== */
.rewards-wrapper .area-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
  width: 20rem;
}
@media (max-width: 576px) {
  .rewards-wrapper .area-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.rewards-wrapper .area-tabs li {
  color: var(--pink-color);
  border: 1px solid var(--pink-color);
  padding: 0.5rem 1rem;
}
.rewards-wrapper .table-body {
  height: 30rem;
  overflow-y: auto;
}
.rewards-wrapper .btn.active {
  color: var(--bg-color);
}
.rewards-wrapper .reward-subtitle {
  color: #ff5e5e;
  font-size: var(--font-size-M);
  font-weight: 500;
  margin-bottom: 1rem;
}
.rewards-wrapper .reward-subtitle span {
  color: white;
  font-size: var(--font-size-XS);
  font-weight: 400;
  margin-left: 1rem;
}
.rewards-wrapper .accordion-item {
  margin-bottom: 1rem;
}
.rewards-wrapper .accordion-item .reward-accordion-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--blue-color);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.rewards-wrapper .accordion-item .reward-accordion-header:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.rewards-wrapper .accordion-item .reward-accordion-header .arrow {
  background: url("../images/arw.svg") no-repeat center;
  background-size: contain;
  width: 25px;
  height: 25px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.rewards-wrapper .accordion-item .reward-accordion-content {
  display: none;
  background-color: #000;
  padding: 1.5rem;
  border: 1px solid var(--blue-color);
  border-top: none;
}
.rewards-wrapper .accordion-item.active .reward-accordion-header .arrow {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.rewards-wrapper .reward-title {
  font-size: var(--font-size-M);
}
.rewards-wrapper .reward-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 1px;
}
@media (max-width: 550px) {
  .rewards-wrapper .reward-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem 0 0 0;
  }
}
.rewards-wrapper .reward-item:nth-child(even) {
  background-color: #191919;
}
.rewards-wrapper .reward-item .item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0 1.5rem 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.rewards-wrapper .reward-item .item-img img {
  width: 100%;
  height: auto;
}
.rewards-wrapper .reward-item .item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rewards-wrapper .reward-item .item-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.rewards-wrapper .reward-item .item-info .item-details {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rewards-wrapper .reward-item .item-info .item-details li {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}
.rewards-wrapper .reward-item .item-info .item-note {
  color: var(--pink-color);
  font-size: 0.9rem;
  margin-top: 10px;
}
.rewards-wrapper .reward-item .item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 550px) {
  .rewards-wrapper .reward-item .item-quantity {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.rewards-wrapper .reward-item .item-quantity .q-label {
  background-color: #333232;
  color: white;
  font-size: var(--font-size-XS);
  padding-bottom: 1rem;
  text-align: center;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rewards-wrapper .reward-item .item-quantity .q-num {
  background-color: #959595;
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  padding: 10px 0;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "arial";
}
.rewards-wrapper .reward-item .scroll-box {
  max-height: 20rem;
  overflow-y: auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.rewards-wrapper .team-bonus {
  margin-top: 4rem;
}
.rewards-wrapper .margint-s {
  margin-top: 1rem;
}

@-webkit-keyframes overlayShake {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: hue-rotate(90deg) brightness(2);
            filter: hue-rotate(90deg) brightness(2);
  }
  20% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  40% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  60% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
  80% {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: hue-rotate(0deg) brightness(1);
            filter: hue-rotate(0deg) brightness(1);
  }
}

@keyframes overlayShake {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: hue-rotate(90deg) brightness(2);
            filter: hue-rotate(90deg) brightness(2);
  }
  20% {
    -webkit-transform: translate(-5px, 5px);
            transform: translate(-5px, 5px);
  }
  40% {
    -webkit-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
  }
  60% {
    -webkit-transform: translate(5px, 5px);
            transform: translate(5px, 5px);
  }
  80% {
    -webkit-transform: translate(5px, -5px);
            transform: translate(5px, -5px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: hue-rotate(0deg) brightness(1);
            filter: hue-rotate(0deg) brightness(1);
  }
}
@-webkit-keyframes glitchFlash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    clip-path: inset(40% 0 30% 0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes glitchFlash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    clip-path: inset(40% 0 30% 0);
  }
  100% {
    opacity: 0;
  }
}