body {
  margin: 0;
  padding: 0;
  font-family: Kanit;
  background-color: #000918;
  color: white;
  line-height: 1.25;
}
.bg-head {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.bg-head::before {
  position: absolute;
  content: "";
  background-image: url('./images/bg-1.png');
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
}
.bg-light {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 100%;
  mix-blend-mode: screen;
  width: 1200px;
}
.bg-light::before, .bg-light::after {
  position: absolute;
  content: "";
  background-image: url('./images/light-left-1.png');
  inset: 0;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 50%;
  mix-blend-mode: screen;
  margin-top: -100px;
}
.bg-light::after {
  transform: scaleX(-1);
}
.bg-flare {
  position: absolute;
  background-image: url('./images/flare-small.png');
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  opacity: 50%;
  mix-blend-mode: screen;
  width: 100%;
  min-width: 1200px;
}
.logo {
  position: absolute;
  top: 25vh;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-width: 600px;
}
.content-head {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrow-down {
  border-radius: 50%;
  background: #AA753480;
  box-shadow: 0px 0px 8px 2px #FFCF83 inset, 0px 4px 4px 0px #00000040;
  backdrop-filter: blur(4px);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.arrow-down:hover {
  background: #AA7534CC;
  box-shadow: 0px 0px 8px 2px #FFCF83 inset, 0px 0px 4px 0px #FFFFFF;
}
.banner {
  overflow: unset;
  position: relative;
  margin-bottom: 8px;
}
.banner > img {
  position: relative;
  width: 80vw;
  object-fit: contain;
  max-width: 600px;
}
.light-under {
  position: absolute;
  height: 100%;
  bottom: calc(2% + 140px);
  left: 50%;
  width: 100%;
  min-width: 900px;
  max-width: 1200px;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  background-image: url('./images/light-under-1.png');
  background-repeat: no-repeat;
  background-position:  center bottom;
  background-size: 100% auto;
}
.event-date {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  border: 4px solid transparent;
  padding: 4px 20px;
  background:
    linear-gradient(#000000, #000000) padding-box,
    linear-gradient(90deg, #AA7534 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, #98581B 100%) border-box;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  text-wrap: nowrap;
  text-transform: uppercase;
}
.bg-body {
  padding: 20px 0;
  background: radial-gradient(49.82% 50% at 50.81% 50%, #021B71 0%, #000918 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tabs-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  gap: 24px;
  color: #C4C4C4;
  padding: 16px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #000a19;
  flex-wrap: wrap;
}
.tab-title {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  text-wrap: nowrap;
}
.tab-title.selected {
  padding: 8px;
  background-image: url('./images/btn-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-title.selected > span {
  font-weight: 700;
  background: linear-gradient(180deg, #AA7534 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, #98581B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.content-body {
  position: relative;
  /* mix-blend-mode: screen; */
  width: 100%;
  overflow: hidden;
}
.content-body > div {
  margin: auto;
}
.content-body::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 1200px;
  mix-blend-mode: screen;
  background-image: url('./images/flare-big.png');
  background-repeat: no-repeat;
  background-position:  center top;
  background-size: 100%;
  opacity: 50%;
  pointer-events: none;
}
.content-body > div {
  display: none;
  padding: 0 5vw;
  max-width: 1200px;
  /* overflow-y: auto; */
  /* max-height: calc(100vh - 204px); */
  font-size: 18px;
}
.content-body > .show {
  display: block;
}
.list-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.list-content > .item {
  padding: 24px;
  background-image: url('./images/border-gradient.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  gap: 16px;
}
.list-content > .item > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.credit {
  width: calc(100% - 48px);
  background: linear-gradient(90deg, rgba(164, 108, 55, 0) 0%, rgba(164, 108, 55, 0.5) 50%, rgba(164, 108, 55, 0) 100%);
  padding: 8px 24px;
  text-align: center;
}
.bg-red-gradient {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  border: 4px solid transparent;
  padding: 4px 20px;
  background:
    linear-gradient(180deg, #D60906 0%, #450001 50%) padding-box,
    linear-gradient(90deg, #AA7534 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, #98581B 100%) border-box;
}
.section-title {
  position: relative;
  background: linear-gradient(180deg, #AA7534 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, #98581B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 24px;
  font-weight: 700;
}
.section-title::before, .section-title::after {
  content: "";
  background: linear-gradient(90deg, rgba(170, 117, 52, 0) 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, rgba(152, 88, 27, 0) 100%);
  height: 4px;
  flex: 1;
}
.section-title::after {
  transform: scaleX(-1);
}
.text-gold {
  font-weight: 700;
  background: linear-gradient(180deg, #AA7534 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, #98581B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.bg-prize::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  min-width: 600px;
  mix-blend-mode: screen;
  background-image: url('./images/prize/bwc-chip-bg.png');
  background-repeat: no-repeat;
  background-position:  center bottom;
  background-size: 100%;
  opacity: 50%;
  pointer-events: none;
}
.list-prize {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.list-prize > div {
  display:  flex;
  align-items: flex-end;
  gap: 8px;
}
.list-prize > div:nth-child(even) {
  flex-direction: row-reverse;
}
.prize-img {
  display: inline-block;
  position: relative;
  width: 240px;
  z-index: 0;
}
.prize-img::before {
  display: block;
  content: "";
  position: absolute;
  padding-top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
}
.prize-img > * {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -10px;
}
.prize-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 24px;
}
.prize-title {
  font-weight: 700;
}
.prize-amount {
  margin-top: 16px;
  padding: 16px;
  position: relative;
  width: fit-content;
  text-align: center;
}
.prize-amount > span {
  position: relative;
  z-index: 1;
  font-size: 28px;
}
.prize-amount::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('./images/prize/gold-sign.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.prize-jackpot {
  position: relative;
  background: linear-gradient(90deg, rgba(164, 108, 55, 0) 0%, rgba(164, 108, 55, 0.5) 50%, rgba(164, 108, 55, 0) 100%);
  padding: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.prize-jackpot::before, .prize-jackpot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(170, 117, 52, 0) 0%, #FFCF83 30.5%, #F9E29C 55%, #EBE867 75%, rgba(152, 88, 27, 0) 100%);
}
.prize-jackpot::before {
  top: 0;
}
.prize-jackpot::after {
  bottom: 0;
}
.prize-jackpot > img {
  height: 100%;
  width: 30%;
  max-width: 120px;
}
li {
  margin-top: 4px;
}
@media (max-width: 991px) {
  .bg-head::before {
    background-size: auto 100%;
  }
  .list-prize {
    gap: 100px;
  }
  .list-prize > div, .list-prize > div:nth-child(even) {
    flex-direction: column;
    align-items: center;
  }
  .prize-detail {
    align-items: center;
  }
  .prize-img {
    height: 240px;
  }
  .prize-img > div {
    top: 50%;
  }
  .content-head {
    bottom: 5vh;
  }
  .banner {
    margin-bottom: 60px;
  }
}
.prize-jackpot > .prize-detail {
  align-items: flex-start;
}