/* 메인 페이지 추가 영역 작업 */

/* 메인 이벤트 페이지 CSS */
/* main.css */
.fullpage-wrap {
  height: auto !important;
}

.mainWrap {
  height: auto;
  display: flex;
  flex-direction: column;
  background-image: url(/img/page1/allBack-bede839c5d55991df4c62e5b5aa2528f.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainEventPage {
  width: 100%;
  height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* background-image: url(/img/page1/eventBg-50a9e9ab5ce2d0b98e94062a9b9a07f7.webp); */
  background-position: bottom;
  background-size: cover;
}

.mainEventInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  z-index: 99;
}

.mainEventTitle {
  font-family: 'TmonMonsori';
  font-size: 45px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mainEventTit1, .mainEventTit2 {
  position: relative;
  height: 45px;
  font-size: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainEventTitOutTxt {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  color: #015B38;
  -webkit-text-stroke: 8px #015B38;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

.mainEventTit1 .mainEventTitInTxt {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  background: linear-gradient(to bottom, #FFFFFF 5%, #E3FF68);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mainEventTit2 .mainEventTitInTxt {
  position: absolute;
  margin: 0;
  white-space: nowrap;
  background: linear-gradient(to bottom, #FFFFFF 5%, #FFC404);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* 카운트다운 */
.eventCountDiv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.evtCountBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.evtCountTit {
  color: #616161;
  font-size: 16px;
  font-weight: 500;
}

.evtCountNums {
  display: flex;
  align-items: center;
  gap: 5px;
}

.evtCountNum {
  width: 55px;
  height: 55px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #FFE387;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.evtCountNum span {
  font-size: 30px;
  font-family: 'TmonMonsori';
  margin: 5px 0 0 0;
  background: linear-gradient(to bottom, #FFFFFF 5%, #FFC404);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.evtCountDot {
  font-size: 30px;
  background: linear-gradient(to bottom, #FFFFFF 5%, #FFC404);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.luckyCouponList {
  display: flex;
  align-items: center;
  gap: 10px;
}
.luckyCouponBox {
  width: 160px;
  height: 160px;
}
.luckyCouponBox > img {
  width: 100%;
  height: 100%;
}

.moveTitArt {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(255, 203, 34, 0), rgba(255, 203, 34, 1), rgba(255, 203, 34, 0));
  position: relative;
}

.luckyCouponTit {
  position: absolute;
  font-size: 18px;
  font-weight: 800;
  font-family: "Pretendard Variable",'Pretendard', Pretendard, 'Noto Sans KR';
  -webkit-text-stroke: 3px #ffffff;
}
.luckyCouponTitTop {
  position: absolute;
  font-size: 18px;
  font-weight: 800;
  font-family: "Pretendard Variable",'Pretendard', Pretendard, 'Noto Sans KR';
  color: #476D00;
}


@keyframes moveTit {
  0% {
    margin: 0;
  }
  50% {
    margin: 8px 0 0 0;
  }
  100% {
    margin: 0;
  }
}

/* 쿠폰 팝업 */
.couponPopArt {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  z-index: 999;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  display: none;
}

.couponPopBox {
  width: 60%;
  max-width: 750px;
  height: 380px;
  background-color: rgba(42, 42, 42, 0.8);
  border: 3px solid #EDA93E;
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  position: relative;
  padding: 20px;
  box-shadow: 0 0 35px #EDA93E;
}

.couponPopClose {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.couponPopTit {
  font-family: 'TmonMonsori';
  font-size: 35px;
  background: linear-gradient(to top, #FFFFFF 2%, #FFC404);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px #594306;
  margin: 0 0 10px 0;
  text-align: center;
}

.couponPopText {
  text-align: center;
  color: white;
}

.couponPopTxt1 {
  font-weight: 500;
  font-size: 16px;
}
.couponPopTxt2 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 25px;
}

.popDiscordBtn {
  width: 320px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(to bottom, #B96BC6, #BB00DA);
  border-radius: 10px;
  border: 2px solid #C5C5C5;
  font-family:'bitbit';
  color: #FFF9E5;
  font-size: 20px;
  cursor: pointer;
  margin: 10px 0;
}

.popDiscordBtn span {
  text-shadow:
    -2px 0 #5C0050,
    2px 0 #5C0050,
    0 -2px #5C0050,
    0 2px #5C0050,
    -2px -2px #5C0050,
    2px -2px #5C0050,
    -2px 2px #5C0050,
    2px 2px #5C0050;
}


.popDiscordIcon {
  width: 50px;
  height: 50px;
}

.couponPopPsTxt {
  font-size: 15px;
  color: #A0A0A0;
}
.couponPopPsTxt span {
  color: #FFE180;
}

.preForms {
  width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* ?�메??*/
.preEmailBox {
  width: 100%;
  height: 65px;
  border: 3px solid rgb(255, 225, 128);
  border-radius: 80px;
  display: flex;
  align-items: center;
  background-color: #385600;
  padding: 6px;
  animation: boxLine 0.9s infinite;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@keyframes boxLine {
  0% {
    border: 3px solid rgba(255, 225, 128, 1);
  }
  50% {
    border: 3px solid rgba(255, 225, 128, 0.5);
  }
  100% {
    border: 3px solid rgba(255, 225, 128, 1);
  }
}

.preEmailTit {
  width: 100px;
  font-size: 16px;
  text-align: center;
  color: #FFE180;
  font-weight: 700;
  font-family: 'Pretendard';
}
.preEmailBox input {
  flex: 1;
  height: 100%;
  padding: 0 20px;
  border: none;
  font-size: 14px;
  outline: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  font-family: 'Pretendard';
}

/* ?�의체크 */
.preCheckMore {
  width: 100%;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
}

.preTit {
  color: #FFE180;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Pretandard';
}

.preCheckBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.preChecks {
  display: flex;
  align-items: center;
  gap: 6px;
}
.preChecks label {
  font-size: 16px; /* ?�정 */
  word-break: keep-all; /* ?�정 */
  color: #FFD014;
  font-family: 'Pretendard';
  font-weight: 600;
  cursor: pointer;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.preChecks input[type=checkbox] {
  appearance: none;
  width: 26px;
  height: 26px;
  background-image: url(/img/page1/checkOff-84d113bec35e0339a54d7134a93013a9.png);
  background-size: cover;
  flex-shrink: 0; /* ?�정 */
  cursor: pointer;
}
.preChecks input[type=checkbox]:checked {
  background-image: url(/img/page1/checkOn-328dea5552b9a9ad62ee36df2ac92f6d.png);
}

.clauseBtn {
  color: #FFE180;
  font-size: 16px;
  font-family: 'Pretendard';
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* 버튼 */
.preBtn {
  width: 100%;
  height: 45px;
  margin: 15px 0 0 0;
  background-color: #EDA93E;
  border: none;
  border-radius: 5px;
  color: #562F00;
  font-family:'bitbit';
  font-size: 19px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2), inset 0 4px 4px rgba(255, 255, 255, 0.3);
}

/* ?��? ?�업 */
.clausePopArt {
  width: 100%;
  height: 100vh;
  position: fixed;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}

.no-scroll {
  overflow: visible !important;
}

.clausePopBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.clauseClose {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -5px;
}

.clausePopInner {
  width: 600px;
  height: 500px;
  display: flex;
  flex-direction: column;
}

.clausePopContent {
  background-color: #394E76;
  padding: 10px;
  border-radius: 0 10px 10px 10px;
  border-left: 1px solid #7069B5;
  border-right: 1px solid #7069B5;
  border-bottom: 1px solid #7069B5;
}

.clausePopTop {
  position: relative;
}


.clausePopCate {
  display: flex;
  align-items: center;
}

.clausePopCate li {
  width: 160px;
  height: 45px;
  line-height: 45px;
  background-color: #1D2941;
  border: 1px solid #7069B5;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
}

.clausePopCate li:first-child {
  border-right: none;
}

.clausePopCate li.on {
  background-color: #394E76;
  color: white;
}

.clausePopContent .clauseText {
  width: 100%;
  height: 450px;
  background-color: #021C33;
  resize: none;
  outline: none;
  cursor: default;
  border: none;
  font-family: 'Noto Sans';
  font-size: 14px;
  color: white;
  font-weight: 500;
  padding: 15px;
  border-radius: 5px;
  overflow: auto;
  display: none;
}

.clausePopContent .clauseText::-webkit-scrollbar {
  background-color: #d6d6d6;
  width: 6px;
  border-radius: 10px;
}
.clausePopContent .clauseText::-webkit-scrollbar-thumb {
  background-color: #38355a;
  border-radius: 10px;
}

.clausePopContent .clauseText li {
  list-style: disc;
  margin-left: 20px;
}

.clausePopContent .clauseText.clauseOn {
  display: block;
}

/* 두 번째 영역 */
.mainEventListPage {
  width: 100%;
  height: 100vh;
  /* background-image: url(/img/page1/section2Back-6a767734aa998ee910ce6b19a0e81fc4.webp); */
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}

.mainEvtListInner {
  width: 1300px;
  height: 85%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainEvtListBg {
  position: absolute;
}

.mainEvtListTitle {
  position: absolute;
  width: 100%;
  top: 10%;
  text-align: center;
  font-family: 'TmonMonsori';
  font-size: 32px;
  z-index: 99;
  display: none;
}

.mainEvtListTitle > p:first-child {
  width: 100%;
  -webkit-text-stroke: 8px #3F2A0B;
  position: absolute;
}

.mainEvtListTitle > p:nth-child(2) {
  width: 100%;
  background: linear-gradient(to bottom, #FFFFFF 5%, #FFC404);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
}

.mainEvtList {
  position: absolute;
  width: 80%;
  height: 60%;
  max-height: 470px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 10px;
  z-index: 9;
  top: 20%;
  left: 10%;
}

.mainEvtBox {
  width: 100%;
  height: 100%;
  max-height: 230px;
  cursor: pointer;
  transform: rotate(0deg);
  transform-origin: 50% 80%;
}
.mainEvtBox:hover {
  animation: evtBoxWiggle 0.5s ease-in-out 1;
}

.mainEvtBox > img {
  width: auto;
  height: 100%;
}

.mainEvtDetailPopArt {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
}

.mainEvtDetailPopBox {
  width: min(90vw, 1000px);
  background-color: #1f1f1f;
  border-radius: 16px;
  border: 2px solid #ffc404;
  padding: 20px;
  position: relative;
  display: flex;
  gap: 20px;
}

.mainEvtDetailClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}

.mainEvtDetailImgBox {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}


.mainEvtDetailImg {
  width: 100%;
  height: 100%;
  display: block;
}

.mainEvtDetailSub {
  font-family: "Pretendard Variable",'Pretendard', Pretendard, 'Noto Sans KR';
  color: white;
  text-shadow:
    -2px 0 #305B0D,
    2px 0 #305B0D,
    0 -2px #305B0D,
    0 2px #305B0D,
    -2px -2px #305B0D,
    2px -2px #305B0D,
    -2px 2px #305B0D,
    2px 2px #305B0D;
}

.mainEvtDetailText {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mainEvtDetailTitle {
  font-size: 32px;
  color: #FFD014;
  text-shadow:
    -3px 0 #594306,
    3px 0 #594306,
    0 -3px #594306,
    0 3px #594306,
    -3px -3px #594306,
    3px -3px #594306,
    -3px 3px #594306,
    3px 3px #594306;
}

.mainEvtDetailDesc {
  font-size: 16px;
  line-height: 1.6;
  white-space: pre-line;
}

@keyframes evtBoxWiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-1.5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


/* 세 번째 영역 */
.mainLivePage {
  width: 100%;
  height: 100vh;
  /* background-image: url(/img/page1/section3Back-8c4cabf49840684c678bbc16be6bf510.png); */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.mainLiveInner {
  width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.mainLiveTitle {
  height: 220px;
}
.mainLiveTitle > img {
  width: auto;
  height: 100%;
}

.mainLiveStreamDiv {
  width: 100%;
  height: 540px;
  position: relative;

}

.mainLiveStreamLine1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/img/page1/lineM-c13c88b407957edf81cd59b46d51341e.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.mainLiveStreamLine2 {
  position: absolute;
  left: 10%;
  width: 80%;
  height: 95%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0 0 0;
}

.liveStreamBox {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 67, 0, 0.5);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.liveStreamBox::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #ffe180 0%, #ffc404 35%, #8cff7a 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liveTopList {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 10px;
  left: 10px;
}

.liveStreamBoxInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  margin: 5% 0 0 0;
}

.liveTopBox {
  height: 40px;
}
.liveTopBox img {
  width: auto;
  height: 100%;
}

.liveStreamText1 > p:first-child {
  color: #FFC404;
  font-size: 20px;
  font-weight: 500;
}
.liveStreamText1 > p:nth-child(2) {
  color: white;
  font-size: 30px;
  font-weight: 600;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.liveStreamText2 {
  font-family: "Orbitron", sans-serif;
  font-size: 26px;
}

.liveStreamText2 > p:first-child {
  text-shadow:
    -3px 0 #305B0D,
    3px 0 #305B0D,
    0 -3px #305B0D,
    0 3px #305B0D,
    -3px -3px #305B0D,
    3px -3px #305B0D,
    -3px 3px #305B0D,
    3px 3px #305B0D;
  color: white;
}
.liveStreamText2 > p:nth-child(2) {
  text-shadow:
    -3px 0 #305B0D,
    3px 0 #305B0D,
    0 -3px #305B0D,
    0 3px #305B0D,
    -3px -3px #305B0D,
    3px -3px #305B0D,
    -3px 3px #305B0D,
    3px 3px #305B0D;
  color: #FFE181;
}

.liveGoBtn {
  width: 90%;
  margin-top: 10%;
}

.getFreeBtn {
  height: 60px;
}
.getFreeBtn img {
  width: auto;
  height: 100%;
}

/* 페이지 퀵 전환 */
.pageQuickMenu {
  position: fixed;
  z-index: 9999;
  top: 45%;
  left: 5%;
}


.pageQuickMenu > ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pageQuickBtn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 0, 0, 1);
  font-size: 17px;
}

.pgQuickIcon {
  width: 26px;
  height: 26px;
  position: sticky;
  z-index: 9;
}

.pageQuickMenu::before {
  content: '';
  border-left: 2px dotted rgb(255, 255, 255, 0.5);
  display: flex;
  width: 2px;
  height: 145px;
  position: absolute;
  left: 12px;
  top: 10px;
}

.pgQuickIconOn {
  display: none;
}

.pageQuickBtnOn {
  color: #adee4f;
  font-size: 19px;
}

.pageQuickBtnOn .pgQuickIconOn {
  display: block;
}
.pageQuickBtnOn .pgQuickIconOff {
  display: none;
}

/* 마우스 스크롤 효과 */
.scrollIcon {
  width: 40px;
  height: 60px;
  border: 3px solid white;
  position: absolute;
  bottom: 0;
  /* left: 50%; */
  border-radius: 60px;
  margin: 0 0 1.5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 0 0;
}

.scrollIcon1 {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 5px;
  position: relative;
  animation: scrollMove 1.8s infinite;
}
.scrollIcon2 {
  width: 24px;
  height: 24px;
}

@keyframes scrollMove {
  0% {
    top: 0;
    opacity: 0.3;
  }
  100% {
    top: 18px;
    opacity: 1;
  }
}

/* 네 번째 영역 */
.mainEvtVideoPage {
  width: 100%;
  height: 100vh;
  /* background-image: url(/img/page1/section4Back-b57c9ae0b5b6d9fd8e8befe926ad4e46.png); */
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainEvtVideoInner {
  width: 100%;
  max-width: 1300px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mainEvtVideoTitle {
  text-align: center;
  color: #ffe602;
  display: flex;
  flex-direction: column;
  gap: 8px;
    text-shadow:
    -2px 0 #3F2A0B,
    2px 0 #3F2A0B,
    0 -2px #3F2A0B,
    0 2px #3F2A0B,
    -2px -2px #3F2A0B,
    2px -2px #3F2A0B,
    -2px 2px #3F2A0B,
    2px 2px #3F2A0B;
}

.mainEvtVideoTitle p:first-child {
  font-size: 42px;
  font-family: 'TmonMonsori';
  line-height: 1.2;
}

.mainEvtVideoTitle p:nth-child(2) {
  font-size: 20px;
  font-weight: 500;
}

.mainEvtVideoBox {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

.mainEvtVideoBox::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(to bottom, #FFFF00, #FF9706);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.mainEvtYoutube {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mainEvtThumbBtn {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  pointer-events: none;
}

.mainEvtThumbImg {
  width: 100%;
  height: 100%;
}

.mainEvtThumbPlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.7);
}

.mainEvtThumbPlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.mainEvtVideoBox.is-video-playing .mainEvtYoutube {
  opacity: 1;
  pointer-events: auto;
}

.mainEvtVideoBox.is-video-playing .mainEvtThumbBtn {
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 2000px) {
  .mainWrap {
    background-size: cover;
  }

  .mainEvtList {
    top: 25%;
  }
  .mainEvtListTitle {
    top: 160px
  }
}

@media screen and (max-width: 1800px) {
  .mainEvtListTitle {
    top: 5%
  }
}

@media screen and (max-width: 1440px) {
  .pageQuickMenu {
    display: none;
  }

  .evtCountTit {
    display: none;
  }

  .mainEventTit1, .mainEventTit2 {
    font-size: 33px;
    height: 40px;
  }

  .preForms {
    max-width: 620px;
    width: 95%;
    margin: 0 auto;
    gap: 5px;
  }

  .preEmailBox {
    height: 55px;
  }
  .preBtn {
    font-size: 15px;
  }

  .eventDays {
    font-size: 15px;
  }

  /* 이벤트 페이지 */
  .luckyCouponBox {
    width: 140px;
    height: 140px;
  }

  .mainEventTitle {
    font-size: 40px;
  }


  .preEmailBox input {
    font-size: 15px;
  }
  .preChecks label {
    font-size: 14px;
  }
  .reserPs {
    font-size: 13px;
    line-height: 160%;
  }
  .reserBtn {
    width: 310px;
    height: 50px;
    font-size: 16px;
    padding-top: 0;
  }
  .preChecks input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .clauseBtn {
    font-size: 15px;
  }

    
  .fullpage-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .mainEventBg {
    position: static;
    height: 100%;
  } 
  .mainEvtListInner {
    width: 1100px;
  }
  .mainEvtList {
    height: 55%;
  }

}

@media screen and (max-width: 1300px) {


  .mainEvtList {
    top: 18%;
  }

}

@media screen and (max-width: 1200px) {
  .couponPopBox {
    height: 450px;
  }

  
  .liveStreamBox {
    max-height: 380px;
  }
  .mainLiveStreamLine1 {
    display: none;
  }

  .mainLiveStreamLine2 {
    width: 90%;
    position: static;
    margin: 0 auto;
    height: auto;
  }
  
  .clausePopInner {
    width: 500px;
  }

  .clausePopContent .clauseText {
    height: 400px;
  }

  .mainEvtListTitle {
    top: 0;
    font-size: 28px;
  }

  .mainEvtListInner {
    width: 950px;
  }

  .mainEvtList {
    top: 24%;
    height: 50%;
  }

  .mainLiveInner {
    width: 96%;
  }

  .mainLiveTitle {
    height: 170px;
  }

  .liveStreamText1 > p:first-child {
    font-size: 18px;
  }

  .liveStreamText1 > p:nth-child(2) {
    font-size: 24px;
  }

  .liveStreamText2 {
    font-size: 20px;
  }

  .mainEvtDetailPopBox {
    width: min(92vw, 900px);
  }

  .mainEvtDetailImgBox {
    width: 340px;
    height: 340px;
  }

  .mainEvtVideoInner {
    max-width: 1000px;
    padding: 0 24px;
  }

  .mainEvtVideoTitle p:first-child {
    font-size: 34px;
  }

  .mainEvtVideoTitle p:nth-child(2) {
    font-size: 18px;
  }

  
  .mainLiveStreamDiv {
    height: auto;
  }

}

@media screen and (max-width: 1000px) {
  .preEmailBox {
    max-width: 550px;
    height: 55px;
  }
  
  .reserPsTxt {
    width: 90% !important;
    word-break: keep-all;
  }

  .eventDays {
    font-size: 14px;
  }
  .eventBoxTit {
    font-size: 14px;
  }
  
  .clausePopInner {
    width: 80%;
  }

  .mainEventTitle {
    font-size: 35px;
    word-break: keep-all;
    text-align: center;
  }

  .couponPopBox {
    width: 80%;
  }

  .luckyCouponList {
    width: 80%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
  }

  .mainEventTit1, .mainEventTit2 {
    font-size: 38px;
    height: 50px;
  }
  
  .mainEventInner {
    gap: 20px;
  }

  .moveTitArt {
    width: 80%;
    height: 45px;
  }

  .luckyCouponTitTop {
    font-size: 16px;
    word-break: keep-all;
  }
  .luckyCouponTit {
    font-size: 16px;
    -webkit-text-stroke: 2px #fff;
  }

  .evtSecDot {
    display: none;
  }
  .evtCountSec {
    display: none;
  }

  .luckyCouponBox {
    width: 100%;
    height: auto;
  }

  .rouletteDiv {
    width: 320px;
    height: 380px;
  }
  .preEmailTit {
    font-size: 13px;
  }
  .preEmailBox input {
    font-size: 14px;
  }
  .preChecks input[type=checkbox] {
    width: 18px;
    height: 18px;
  }

  .clauseBtn {
    font-size: 14px;
  }
  .reserBox5Tit .reserSubTit {
    font-size: 15px;
  }

  .mainEvtList {
    top: 27%
  }

  .mainEvtListTitle {
    top: 55px;
    font-size: 26px;
  }

  .mainEvtListTitle > p:first-child {
    -webkit-text-stroke: 6px #3F2A0B;
  }

  .mainEvtDetailPopBox {
    width: 92vw;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .mainEvtDetailImgBox {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .mainEvtDetailText {
    width: 100%;
  }

  .mainEvtDetailTitle {
    font-size: 28px;
  }

  .mainEvtDetailSub {
    font-size: 20px;
  }

  .mainEvtDetailDesc {
    font-size: 15px;
    line-height: 1.5;
  }


  .mainLiveStreamLine2 {
    position: static;
    width: 100%;
    height: auto;
    left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px 12px 0;
  }

  .liveStreamBox {
    min-height: 260px;
  }

  .mainEvtVideoTitle p:first-child {
    font-size: 30px;
  }

  .mainEvtVideoTitle p:nth-child(2) {
    font-size: 16px;
  }

}

@media screen and (max-height: 700px) {
    .mainEventPage {
      height: 100vh;
    }
    .luckyCouponBox {
      width: 100px;
      height: 100px;
    }

    .preEmailBox {
      height: 50px;
    }



    .mainEvtListTitle {
      top: 5%;
    }

    .mainEvtList {
      top: 15%
    }

    .scrollIcon {
      width: 35px;
      height: 50px;
    }

    .evtCountNum  {
      width: 40px;
      height: 40px;
    }
    .evtCountNum span {
      font-size: 22px;
    }
}

@media screen and (max-width: 800px) {
  .mainEventPage {
    min-height: 100vh;
  }

  .mainEventTit1, .mainEventTit2 {
    font-size: 32px;
    height: 35px;
  }

  .mainEventInner {
    position: static;
    gap: 10px;
  }

  body {
    overflow: visible;
  }

  .page1 {
    overflow: visible;
    /* position: static; */
  }

  /* .page1More {
    position: sticky;
  } */

  .preTit {
    font-size: 14px;
  }

  .luckyCouponTit {
    display: none;
  }

  .moveTitArt {
    padding: 10px;
    text-align: center;
  }
  .luckyCouponTitTop {
    font-size: 15px;
  }

  .mainEventTitle {
    font-size: 27px;
  }

  .mainEventTitOutTxt {
    -webkit-text-stroke: 6px
  }

  .couponPopTit {
    font-size: 25px;
    margin: 0;
  }

  .couponPopClose {
    width: 30px;
    height: 30px;
  }

  .couponPopTxt1 {
    font-size: 14px;
  }
  .couponPopTxt2 {
    font-size: 18px;
  }

  .couponPopPsTxt {
    font-size: 13px;
    word-break: keep-all;
    text-align: center;
  }

  .mainEvtListBg img {
    display: none;
  }

  .mainEvtListBg {
    width: 100%;
    position: static;
  }

  .mainEvtListInner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 30px;
  }

  .mainEvtList {
    grid-template-columns: 1fr 1fr;
    max-height: 100%;
    position: static;
  }

  .mainEventListPage {
    height: auto;
    padding: 0 0 10% 0;
  }

  .mainEvtListTitle {
    position: static;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mainEvtListTitle::before {
    content: '';
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/img/page1/titleIcon-b2b374d64bd98d8d63c6147015748ed7.png);
    background-size: cover;
  }

  .mainEvtListTitle > p {
    top: 120px;
  }

  .mainLivePage {
    height: auto;
    padding: 30px 0 40px;
  }

  .mainLiveInner {
    width: 100%;
    gap: 30px;
  }


  .mainLiveStreamDiv {
    min-height: 0;
  }

  .mainLiveStreamLine1 {
    display: none;
  }

  .mainLiveStreamLine2 {
    width: 90%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    padding: 10px 14px 0;
  }

  .liveStreamBox {
    width: 70%;
    margin: 0 auto;
  }

  .mainEvtVideoPage {
    height: auto;
    padding: 10% 0;
    background-position: bottom;
  }
  .liveGoBtn {
    margin: 0;
  }

  .mainEvtVideoInner {
    padding: 0 14px;
    gap: 16px;
  }

  .mainEvtVideoTitle p:first-child {
    font-size: 24px;
  }

  .mainEvtVideoTitle p:nth-child(2) {
    font-size: 14px;
  }

  .mainEvtDetailPopBox {
    width: 94vw;
    padding: 14px;
    border-radius: 12px;
  }

  .mainEvtDetailClose {
    width: 35px;
    height: 35px;
    top: 8px;
    right: 8px;
  }

  .mainEvtDetailTitle {
    font-size: 22px;
  }

  .mainEvtDetailSub {
    font-size: 16px;
  }

  .mainEvtDetailDesc {
    font-size: 14px;
  }

}

@media screen and (max-width: 600px) {
  .evtCountNum {
    width: 45px;
    height: 45px;
  }

    .luckyCouponBox {
    width: 100%;
    height: 100%;
  }

  .evtCountNum span {
    font-size: 25px;
  }

  .mainEventTitle {
    width: 90%;
    margin: 0 auto;
  }

  .mainEventTit1 .mainEventTitInTxt {
    white-space: normal;
    word-break: keep-all;
  }
  .mainEventTit1, .mainEventTit2 {
    font-size: 22px;
    height: 55px;
  }

  .mainEventTitOutTxt {
    white-space: normal;
    word-break: keep-all;
  }

  .mainEventTit2 .mainEventTitInTxt {
    white-space: normal;
    word-break: keep-all;
  }

  .eventDays {
    width: 90%;
    text-align: center;
    line-height: 20px;
    padding: 10px 20px;
    flex-direction: column;
  }
  
  @keyframes boxLine {
    0% {
      border: 2px solid rgba(72, 112, 0, 1);
    }
    50% {
      border: 2px solid rgba(72, 112, 0, 0.5);
    }
    100% {
      border: 2px solid rgba(72, 112, 0, 1);
    }
  }
  
  .clauseClose {
    width: 35px;
    height: 35px;
    top: -50px;
  }

  .clausePopInner {
    height: 300px;
  }
  .clausePopContent .clauseText {
    height: 300px;
  }
  .clausePopContent {
    font-size: 14px;
    border-radius: 0 0 10px 10px;
  }
  .clausePopContent textarea {
    font-size: 13px;
  }

  .luckyCouponList {
    width: 90%;
    gap: 6px;
  }

  .rouletteDiv {
    width: 240px;
    height: 280px;
  }
  .evtCountTit {
    font-size: 14px;
  }

  .luckyResDiv {
    width: 100%;
  }

  .luckyCouponTit {
    font-size: 14px;
    margin: 0;
  }

  .preChecks label {
    color:white;
    font-size: 15px;
  }
  
  .popDiscordBtn {
    width: 100%;
    height: 50px;
    font-size: 15px;
  }

  .couponPopTxt2 {
    font-size: 14px;
  }

  .couponPopTit {
    font-size: 20px;
    
  }

  .couponPopClose {
    width: 24px;
    height: 24px;
  } 


  .popDiscordIcon {
    width: 35px;
    height: 35px;
  }

  .reserPs {
    font-size: 11px;
    word-break: keep-all;
  }
  .reserPs p::before {
    display: none;
  }

  .reserPsTxt {
    margin: 2% 0;
    font-size: 12px;
  }

  .reserBtn {
    width: 300px;
    height: 55px;
    text-align: center;
    padding: 0 15px;
  }

  .preEmailBox {
    max-width: 90%;
    height: 55px;
  }
  .preEmailBox input {
    width: 80%;
  }

  .eventCountDiv {
    gap: 2px;
  }
  
  .preEmailTit {
    width: 80px;
  }
  .moveTit {
    font-size: 14px;
  }

  .preForms {
    gap: 8px
  }
  .preEmailTit {
    flex-shrink: 0;
  }
  .preCheckBox {
    padding: 0 10px;
    gap: 5px;
  }
  .preCheckMore {
    padding: 8px 5px;
    gap: 5px;
  }
  .preTit {
    font-size: 13px;
  }

  .scrollIcon {
    left: 45%;
    width: 35px;
    height: 55px;
  }

  .mainEvtList {
    grid-template-columns: 1fr;
  }

  .mainEvtBox {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mainEvtListTitle::before {
    width: 35px;
    height: 40px;
  }
  .mainEvtListTitle {
    font-size: 22px;
  }

  .mainEvtListTitle > p:first-child {
    -webkit-text-stroke: 5px #3F2A0B;
  }

  .mainEvtBox > img {
    width: 100%;
    height: auto;
  }

  .mainEvtDetailImgBox {
    max-width: 100%;
  }

  .mainEvtVideoTitle p:first-child {
    font-size: 20px;
  }

  .mainEvtVideoTitle p:nth-child(2) {
    font-size: 13px;
  }

  .mainEvtThumbPlay {
    width: 62px;
    height: 44px;
  }

  .mainEvtThumbPlay::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
  }

}


@media screen and (max-width: 500px) {
  .liveStreamBox {
    width: 95%;
  }

  .mainLiveTitle {
    height: 100px;
  }

  .liveTopBox {
    height: 30px;
  }

  .clausePopBox {
    width: 95%;
  }
  .clausePopCate li {
    font-size: 13px;
    width: 100px;
    padding: 0 10px;
  }

  .clausePopCate li span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

}

