* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 13px;
  font-family: "Microsoft Jhenghei", sans-serif;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

p,
li {
  margin-bottom: 5px;
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

.wrapper {
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.logo-bg-outer {
  background: #fff;
  text-align: left;
}

.logo-bg {
  width: 100%;
}

.logo-bg img {
  display: inline;
}

.logo1 {
  float: left;
}

body {
  background: #120524;
}

.kv {
  position: relative;
  background: #300c5e url("../images/kv-bg2.png") no-repeat top/100%;
  padding-bottom: 70%;
  background-attachment: fixed;
  z-index: 1;
  animation: fadeInImage 1.5s ease-in-out forwards;
}

.kv-coin {
  position: absolute;
}
.kv-coin.coin1 {
  width: 5%;
  left: 58%;
  top: 6%;
  animation: float 1.5s ease-in-out infinite;
}
.kv-coin.coin2 {
  width: 35%;
  left: -10%;
  top: 30%;
}

.fix-btn {
  position: fixed;
  z-index: 9999;
  top: 72%;
  right: 1%;
  transition: 0.5s linear;
}
.fix-btn img {
  width: 85%;
  max-width: 180px;
  animation: pulse 1s ease-in-out infinite;
}
.fix-btn.disabled {
  display: none;
}

.img-m {
  display: none;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInImage {
  0% {
    opacity: 0;
    background-size: 100%;
  }
  50% {
    background-size: 102%;
  }
  100% {
    opacity: 1;
    background-size: 100%;
  }
}
.content {
  width: 100%;
  position: relative;
  padding-bottom: 5%;
  background: #120524 url("../images/sec-bg.png") no-repeat;
}
.content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transform: translateY(-99%);
  width: 100%;
  padding-bottom: 50%;
  background: url("../images/sec-before.png") bottom/100% no-repeat;
  z-index: 99;
}

.section {
  margin: 0 auto;
  padding: 2% 0 5%;
  position: relative;
}
.section .sec1-0 {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.section .pic {
  width: 90%;
  max-width: 1300px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 5%;
}
.btn-group img {
  width: 100%;
  max-width: 450px;
}

.apply-btn img {
  width: 80%;
  max-width: 450px;
  margin-top: 80px;
}
.apply-btn .active-img {
  animation: click 1s linear infinite;
}
.apply-btn .disabled-img {
  display: none;
}
.apply-btn.disabled {
  pointer-events: none;
  display: none;
}
.apply-btn.disabled .active-img {
  display: none;
}
.apply-btn.disabled .disabled-img {
  display: block;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  flex-wrap: wrap;
}

.time-block {
  text-align: center;
  position: relative;
}
.time-block .time {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.time-block .time .digit {
  font-size: 120px;
  font-weight: bold;
  background: linear-gradient(180deg, rgb(49, 25, 8) 0%, rgb(18, 8, 30) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #FFEA9F;
  padding: 10px 15px;
  border-radius: 10px;
}
.time-block .label {
  font-size: 24px;
  margin-top: 15px;
  color: #fff;
}
.time-block.second::before {
  content: "";
  display: block;
  position: absolute;
  top: -20%;
  right: -28%;
  width: 20%;
  padding-bottom: 30%;
  background: url("../images/sec-deco.svg") center/contain no-repeat;
}

#status {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.accordion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.accordion > li {
  margin-bottom: 20px;
}
.accordion .accordion_header {
  display: table;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  background-color: #fff;
  padding: 20px 48px 20px 20px;
  border-radius: 10px;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  position: relative;
  cursor: pointer;
}
.accordion .accordion_header i {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  transform: translateY(-50%) rotateX(0deg);
  top: 50%;
  right: 20px;
  background: url("../images/i_arrow.svg") no-repeat center/100%;
}
.accordion .accordion_header.active {
  border-bottom: 1px solid #C9C9C9;
  border-radius: 10px 10px 0 0;
  transition-delay: 0s;
  transition-duration: 0;
}
.accordion .accordion_header.active i {
  transform: translateY(-50%) rotateX(180deg);
}
.accordion .accordion_header span {
  display: table-cell;
  text-align: left;
}
.accordion .accordion_header .q_num {
  color: #7B34C6;
  width: 48px;
}
.accordion .accordion_content {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  text-align: left;
  display: none;
}
.accordion .accordion_content a {
  color: #7B34C6;
  font-weight: bold;
  word-break: break-word;
}
.accordion .accordion_content div {
  padding: 24px;
}

@keyframes click {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.note-outer {
  margin-bottom: 5%;
}

.notebg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-collapse {
  display: block;
  padding: 20px 25px;
  background: transparent;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn-collapse > span:nth-child(1) {
  display: inline-flex;
  align-items: center;
}
.btn-collapse .icon {
  font-size: 30px;
  margin-left: 4px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
}
.btn-collapse .minus {
  display: none;
}
.btn-collapse.open .plus {
  display: none;
}
.btn-collapse.open .minus {
  display: inline-block;
}

.collapse {
  display: none;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: auto;
  text-align: left;
  color: #333;
  padding: 10px 30px 30px;
  border-radius: 20px;
  font-size: 16px;
  opacity: 0;
  transition: 500ms all;
  background: #fff;
}
.collapse.in {
  display: block;
  opacity: 1;
}
.collapse a {
  color: #825dc7;
  text-decoration: underline;
  word-break: break-all;
}
.collapse li {
  line-height: 1.8;
}
.collapse p {
  font-size: 16.5px;
  line-height: 2;
}
.collapse h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #825dc7;
}

.collapse-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 2% 0;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.btn-border {
  padding: 15px 40px;
  color: #fff;
  background-color: transparent;
  border-radius: 100px;
  border: 1px solid #fff;
}

.note_DotList {
  list-style: disc;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList {
  list-style: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}

.note_NumList2 {
  counter-reset: list;
  list-style: none;
}
.note_NumList2 > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.note_NumList2 > li::before {
  content: "(" counter(list) ") ";
  counter-increment: list;
}

@media screen and (max-width: 992px) {
  .time-block .time .digit {
    font-size: 80px;
    padding: 3px 6px;
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    background: #300c5e url("../images/kv-bg-m2.png") no-repeat top/100%;
    padding-bottom: 145%;
  }
  .kv-coin.coin1 {
    width: 8%;
    left: 40%;
    top: 52%;
  }
  .kv-coin.coin2 {
    width: 60%;
    left: -20%;
    top: 55%;
  }
  .fix-btn {
    top: calc(100% - 100px);
  }
  .fix-btn img {
    max-width: 100px;
  }
  .img-d {
    display: none;
  }
  .img-m {
    display: block;
  }
  .content::before {
    padding-bottom: 48%;
    background: url("../images/sec-before-m.png") bottom/100% no-repeat;
  }
  .section {
    padding: 5% 0 10%;
  }
  .apply-btn img {
    width: 60%;
    margin-top: 40px;
  }
  .btn-group {
    gap: 20px;
  }
  .accordion {
    padding: 20px;
  }
  .accordion li {
    margin-bottom: 10px;
  }
  .accordion .accordion_header {
    font-size: 16px;
    padding: 10px 32px 10px 10px;
  }
  .accordion .accordion_header .q_num {
    width: 36px;
  }
  .accordion .accordion_header i {
    width: 32px;
    height: 32px;
    right: 5px;
  }
  .accordion .accordion_content p {
    padding: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .logo-bg img {
    height: 35px;
  }
  .countdown {
    gap: 10px;
  }
  .time-block .time {
    gap: 5px;
  }
  .time-block .time .digit {
    font-size: 30px;
  }
  .time-block .label {
    font-size: 14px;
    margin-top: 5px;
  }
  #status {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .btn-border {
    padding: 10px 20px;
  }
  .btn-collapse,
  .btn-collapse .icon {
    font-size: 20px;
  }
  .collapse {
    padding: 10px 10px 30px;
  }
  .collapse-inner {
    border-radius: 20px;
    padding: 0;
  }
  .btn-collapse {
    padding: 20px 25px;
  }
}