@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

/* 공통?�소 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  -ms-overflow-style: none; /* ?�터???�스?�로??*/
  scrollbar-width: none; /* ?�이?�폭??*/
}
html::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none; /* ?�터???�스?�로??*/
  scrollbar-width: none; /* ?�이?�폭??*/
}
body::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none; /* ?�터???�스?�로??*/
  scrollbar-width: none; /* ?�이?�폭??*/
}

/* ?�트 */
@font-face {
  font-family: 'TmonMonsori';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/TmonMonsori.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Vitro_core';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/Vitro_core.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face{
  font-family:'bitbit';
  src:url('//cdn.df.nexon.com/img/common/font/DNFBitBit-Regular.woff'),url('//cdn.df.nexon.com/img/common/font/DNFBitBit-Regular.woff2') ;
}

/* ?�더 ?�역 */
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.headerInner {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 로고 ?�역 */
.logoBox {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding-bottom: 5px;
}

.logoBox > img {
  width: auto;
  height: 100%;
}

/* 메뉴 ?�역 */
.headerMenus {
  display: flex;
  align-items: center;
  gap: 80px;
}
.headerMenus li {
  font-size: 20px;
  text-align: center;
}
.headerMenus li a {
  color: white;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-family: 'Pretendard-Regular';
}

.headerPlayBtn {
  width: 220px;
  height: 50px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #FF7700, #FFAB00);
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
}

.headerPlayBtn span {
  font-family: 'Vitro_core';
  background: linear-gradient(to bottom, #FFFFFF, #FFEA96);
  color: transparent;
  -webkit-background-clip: text;
  font-size: 20px;
}

.headerPlayBtn:hover {
  background: linear-gradient(to left, #FF7700, #FFAB00);
}

/* 커�??�티 */
.communityList {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
}

.communityBox {
  width: 42px;
  height: 42px;
}

/* ?�?�이지 ?�크�??�역 */
.fullpage-wrap {
  width: 100%;
  height: 100vh;
      overflow: hidden;
}

/* 1?�이지 */
.page1 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* 배경 ?�역 */
.page1Bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

/* ?�체 ?�역 */
.page1More {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page1MoreList {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* ?�스??문구 */
.page1TxtList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.page1SubTxt {
  color: white;
  font-size: 22px;
  font-family: 'Pretendard-Regular';
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
  cursor: default;
}
.page1Tit {
  position: relative;
  cursor: default;
}
.page1Tit h1 > p:first-child {
  font-size: 75px;
  font-family: 'TmonMonsori';
  background: linear-gradient(to bottom, #fff, #84ffe6);
  color: transparent;
  -webkit-background-clip: text;
}
.page1Tit h1 > p:last-child {
  background: linear-gradient(to bottom, #fff, #84ffe6);
  color: transparent;
  -webkit-background-clip: text;
  font-family:'bitbit';
  font-size: 50px;
  display: inline-block;
  margin-top: 5px;
}

/* ?�레??버튼 */
.playBtns {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.playArrow {
  width: 40%;
  margin: 0 auto;
  position: absolute;
  z-index: 9;
  cursor: pointer;
}
.playBack {
  position: absolute;
  animation: playBackMove 50s infinite;
}

@keyframes playBackMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ?��? 버튼 */
.steamBtn {
  display: flex;
  align-items: center;
  justify-content: start;
  background: linear-gradient(to bottom, #EDA93E, #ed933e);
  border-radius: 10px;
  gap: 10px;
  padding: 10px 40px 10px 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2), inset 0 6px 3px rgba(255, 255, 255, 0.25);
}
.steamBtn:hover {
  background: linear-gradient(to top, #EDA93E, #ed933e);
}
.steamBtnIcon {
  width: 45px;
  height: 45px;
}
.steamTxt {
  color: #001426;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: 'Pretendard';
}
.steamTxt > p:first-child {
  font-size: 13px;
  font-weight: 500;
}
.steamTxt > p:nth-child(2) {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* ?�업 ?�역 */
.play1PopupArt {
  width: 100%;
  height: 100%;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.play1PopupBox {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.playPopVideo {
  width: 60%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 10px;
}
.playPopVideo > video {
  width: 100%;
  border-radius: 10px;
}

.playPopClose {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

/* 2?�이지 */
.page2 {
  width: 100%;
  height: 100vh;
  background-image: url(/img/page2/page2Bg.webp);
  background-size: cover;
  background-position: bottom center;
}

.page2More {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page2MoreBox {
  width: 70%;
  height: 75%;
  max-width: 1400px;
  max-height: 800px;
  background-color: #1D2D4E;
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(255, 217, 0, 0.25);
  display: flex;
  align-items: center;
  padding: 0 0 0 2%;
  border: 1px solid #000;
}

/* ?�쪽 ?�역 */
.page2BoxLeft {
  width: 48%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: end;
}
.page2BoxLeft2 {
  width: 98%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: end;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.page2BoxLeft3 {
  width: 98%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
  padding: 0 5%; /* ?�정 */
}

/* ?�스???�역 */
.page2BoxText {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.page2BoxTit {
  font-family: 'Vitro_core';
  color: #1D2D4E;
  font-size: 30px;
}
.page2BoxTxt {
  font-size: 18px;
  font-family: 'Pretendard';
  font-weight: 600;
  color: #747474;
}

/* 모닥�??�영??*/
.page2Move {
  width: 60%;
  height: 280px;
  position: relative;
  overflow: hidden;
}
.page2Move video {
  width: 100%;
  position: absolute;
  right: -2px;
  z-index: 9;
}

/* ?�용 ?�력 */
.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: 100%;
  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;
}

/* ?�른�??�역 */
.page2BoxRight {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 2%;
}

/* ?�스???�역 */
.page2BoxRText {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.page2BoxRTit {
  font-family: 'Vitro_core';
  font-size: 30px;
  background: linear-gradient(to bottom, #fff, #fff846);
  color: transparent;
  -webkit-background-clip: text;
}

/* ?�벤??기간 */
.eventDays {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 18px;
  color: #FFD93B;
  font-weight: 500;
  font-family: 'Pretendard';
  display: flex;
  gap: 5px;
}

/* 경품 */
.eventListBox {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.eventProduct {
  width: 85%;
  padding: 10px; /* ?�정 */
}
.eventBoxTit {
  color: white;
  font-family: 'Vitro_core';
  font-size: 16px;
  letter-spacing: 1px;
}


/* 3?�이지 */
.page3 {
  width: 100%;
  height: 100vh;
  background-image: url(/img/page3/page3Bg-f577d22b177f871b971c686e8807a15c.webp);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: bottom;
}

.page3More {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page3Tit {
  font-family: 'Vitro_core';
  font-size: 40px;
  background: linear-gradient(to bottom, #fff, #fff846);
  color: transparent;
  -webkit-background-clip: text;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-buttons button {
  width: 75px;
  height: 75px;
  background-color: transparent;
  border: none;
  opacity: 0.6;
  cursor: pointer;
}

.nav-buttons button.active {
  opacity: 1;
  scale: 1.2;
}

.carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: auto;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 50px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 10px;
}

.slide {
  width: 160px; /* 4�?보이�?*/
  height: 420px;
  transition: transform 0.3s ease;
  border-top: 3px solid #FFE180;
  background: linear-gradient(to bottom, #041331, #002D61);
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.25);
  flex-shrink: 0;
}
.slide:hover {
  background: linear-gradient(to bottom, #002D61, #031b4b);
}

.slideImg {
  width: 100%;
  height: 90%;
  background-size: cover;
  background-position: 40%;
}
.slide.focused {
  width: 380px;
}


/* 캐릭???��?지 */
.slideImg1 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha1_off-6bcd558bb98180a56ace4f3ecf838355.webp);
}
.slide.focused .slideImg1 {
  background-image: url(/img/page3/cha1_on-425b416435265e5226f7b46332261573.webp);
}

.slideImg2 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha2_off-b9f7993d3404189a3effac0517cfc1ca.webp);
}
.slide.focused .slideImg2 {
  background-image: url(/img/page3/cha2_on-a5c9cbb6f1486616c2b4b714820dbf3d.webp);
}

.slideImg3 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha3_off-ebbca6821510c9ecc9bb2c1010f22058.webp);
}
.slide.focused .slideImg3 {
  background-image: url(/img/page3/cha3_on-b9fec2724d14dc2820dc5a900d5b60fb.webp);
}

.slideImg4 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha4_off-38e4b56f24b17e2fb06e12d6a3427337.webp);
}
.slide.focused .slideImg4 {
  background-image: url(/img/page3/cha4_on-099f7a34c14b8d6516bcec834da3c2a9.webp);
}

.slideImg5 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha5_off-0b44a5f483f86de5997ef4d18c461989.webp);
}
.slide.focused .slideImg5 {
  background-image: url(/img/page3/cha5_on-9af3f07ef8921659a88b1e04b252f4b7.webp);
}

.slideImg6 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha6_off-ceaaf5bbc0bfba07f9b0df8a5a3aacb9.webp);
}
.slide.focused .slideImg6 {
  background-image: url(/img/page3/cha6_on-baa22abbd29f64ec534ccf4d98ae7504.webp);
}

.slideImg7 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha7_off-edd9452a8589dc1e9482d8513b8e9528.webp);
}
.slide.focused .slideImg7 {
  background-image: url(/img/page3/cha7_on-963a229402dd482bb8dab7b6c491f8cc.webp);
}

.slideImg8 {
  width: 100%;
  height: 100%;
  background-image: url(/img/page3/cha8_off-1f41e3433b6420e97452118005e424ca.webp);
}
.slide.focused .slideImg8 {
  background-image: url(/img/page3/cha8_on-2fd6c0354e8d1a7cde310c34ef82407a.webp);
}

.arrow {
  cursor: pointer;
}

.carousel-window {
  overflow: hidden;
  width: 1000px;
}

/* 캐릭???�스??*/
.slideText {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideTxt {
  display: none; 
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.slideTxt.active {
  display: flex; 
}

.slideTTitBox {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slideTxtIcon {
  width: 30px;
  height: 30px;
}

.slideTit {
  color: #FFE180;
  font-size: 28px;
  font-family: 'Vitro_core';
  text-shadow: -1px 3px 7px rgba(0, 0, 0, 1);
}
.slideTTxt {
  line-height: 150%;
  color: white;
  font-family: 'Pretendard';
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

/* 4?�이지 */
.page4 {
  width: 100%;
  height: 5px;
  background-color: #030C20;
}

/* ?�반 ?�크�??�역 */
.scrollable-wrap {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none; /* ?�터???�스?�로??*/
  scrollbar-width: none; /* ?�이?�폭??*/
}
.scrollable-wrap::-webkit-scrollbar {
  display: none;
}

/* 5?�이지 */
.page5 {
  width: 100%;
  padding: 1% 0 10% 0;
  background-image: url(/img/page5/page5Bg-347eca35e568773cf6ec5d25e47864b4.webp);
  background-size: cover;
}

.page5More {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6% 0 0 0;
  flex-direction: column;
  gap: 100px;
}

.page5PlayList {
  width: 60%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page5PlayBox {
  width: 100%;
  display: flex;
  gap: 40px;
}
.page5PlayVideo {
  width: 50%;
  max-width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.page5PlayVideo video {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.page5PlayTxt {
  width: 50%;
  word-break: keep-all;
  font-family: 'Pretendard';
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page5PlayTxtTop {
  color: white;
  font-weight: 700;
  font-size: 26px;
  line-height: 35px;
  display: flex;
  gap: 10px;
}
.page5PlayTxtCenter {
  color: #AFAFAF;
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
}
.page5PlayTxtBottom {
  color: #FFE180;
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
}

.txtTopIcon {
  width: 30px;
  height: 30px;
}

.applyBtns {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
}

.applyBtn {
  width: 100%;
  height: 55px;
  border-radius: 60px;
  background-color: #EDA93E;
  color: #562F00;
  font-family: 'bitbit';
  font-size: 21px;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2),
  inset 0 4px 4px rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.applyBtn > span {
  text-shadow: 0 0 3px rgba(255, 255, 255, 1);
}

/* main.css */
.mainWrap {
  display: flex;
  flex-direction: column;
}

.mainVideo {
  width: 100%;
  height: 650px;
}
.mainVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -9;
}
.mainButtonMore {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background: linear-gradient(to bottom,#00142600, #001426);
}

.soundToggleBtn {
  width: 100px;
  height: 40px;
  position: absolute;
  left: 30px;
  bottom: 16px;
  z-index: 5;
  border: none;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
}

.mainButtonInner {
  width: 1200px;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  display: grid;
  grid-template-areas: 
  "mainC mainC"
  "topL topR";
  gap: 20px;
  justify-content: center;
}

/* mainButtonInner Grid Layout */
  .mainBtnL {
    grid-area: topL;
  }
  .mainBtnR {
    grid-area: topR;
  }

.mainBtnSide {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Pretendard';
  color: #A8A8A8;
  font-weight: 700;
  font-size: 16px;
}

.mainBtnIcons {
  width: 40px;
  height: 40px;
}

.mainBtnText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mainBtnC {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  grid-area: mainC;
}

.mainBtnCTop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.policyCheck {
  font-size: 16px;
  color: #C3C3C3;
  font-weight: 400;
  font-family: 'Pretendard-Regular';
  display: flex;
  align-items: center;
  gap: 5px;
}

.toggle-input {
  display: none;
}

.toggle-label {
    position: relative;
    display: block;
    width: 40px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.toggle-label::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.toggle-input:checked + .toggle-label {
    background-color: #FFD014;
}
.toggle-input:checked + .toggle-label::before {
    transform: translateX(16px);
}

.policyBtn {
  text-decoration: underline;
  color: #FFE180;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Noto Sans KR';
}

.gameStartBtn {
  width: 340px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* background: linear-gradient(to bottom, #FFF79D, #FFAB00, #FFD650); */
    /* background: linear-gradient(to bottom, #FFFAC3 5%, #FFC857 75%, #FFEFBC);
  border-radius: 50px;
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25); */
  cursor: pointer;
}

.gameStartBtn > img {
  width: 100%;
}

.gameBtnImg {
  height: 70px;
}
.gameBtnImg img {
  width: auto;
  height: 100%;
}

.gameStartBtnOff {
  display: block;
}

.gameStartBtnOn {
  display: none;
}

.gameStartBtn:hover .gameStartBtnOff {
  display: none;
}

.gameStartBtn:hover .gameStartBtnOn {
  display: block;
}


.gameStartTit {
  font-family: 'Vitro_core';
  background: linear-gradient(to bottom, #CE5600, #E96100);
  /* background: linear-gradient(to bottom, #986700, #4D2D00); */
  color: transparent;
  -webkit-background-clip: text;
  font-size: 30px;
}

.gameStartTxt {
  font-family: 'Noto Sans';
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(to bottom, #986700, #4D2D00);
  color: transparent;
  -webkit-background-clip: text;
}


/* ?�터 */
footer {
  padding: 25px 0;
  background-color: #001426;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.footComm {
  display: none;
}

.footerInner {
  display: flex;
  align-items: start;
  gap: 80px;
}

.footerLeft {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerLogo {
  height: 35px;
}
.footerLogo > img {
  width: auto;
  height: 100%;
}

.footerText {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Pretendard';
  font-size: 14px;
}

.fTextTop {
  color: #A0A0A0;
  font-weight: 500;
}
.fTexts {
  color: #A0A0A0;
  font-size: 400;
  line-height: 22px;
}
.fTextBottom {
  color: #555;
  font-weight: 400;
}

.footTopBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 메인 이벤트 페이지 CSS */
.mainEventPage {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mainEventInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 0 0;
  position: absolute;
  z-index: 99;
}

.mainEventBg {
  width: 100%;
  position: absolute;
  z-index: -9;
  bottom: 0;
  object-fit: cover;
}

.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: 60px;
  font-size: 45px;
  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: 17px;
  font-weight: 500;
}

.evtCountNums {
  display: flex;
  align-items: center;
  gap: 5px;
}

.evtCountNum {
  width: 75px;
  height: 75px;
  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: 45px;
  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: 230px;
  height: 210px;
}

.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;
}

/* 반응??*/
@media screen and (min-width: 2000px) {
  .mainVideo {
    height: 900px;
  }
}

@media screen and (max-width: 1900px) {

  .gameStartTit {
    font-size: 35px;
  }
}

@media screen and (max-height: 900px) {
  .mainEventPage {
    min-height: 950px;
  }

  .fullpage-wrap:has(.mainEventPage) {
    height: auto;
  }
}

@media screen and (max-width: 1600px) {
  .page2BoxLeft3 {
    padding: 5%;
  }
  .page2BoxRight {
    padding: 5%;
  }

  .gameStartTit {
    font-size: 28px;
  }
}


@media screen and (max-width: 1440px) {
  /* 1?�이지 */
  .headerMenus li {
    font-size: 16px;
  }
  .page1Tit h1 > p:first-child {
    font-size: 65px;
  }

  .mainEventTit1, .mainEventTit2 {
    font-size: 42px;
    height: 56px;
  }

  /* 2?�이지 */
  .page2BoxTit {
    font-size: 25px;
  }
  .page2BoxTxt {
    font-size: 16px;
  }

  .page2Move {
    height: 210px;
  }
  .preForms {
    max-width: 620px;
    width: 95%;
    margin: 0 auto;
  }
  .preBtn {
    font-size: 15px;
  }
  .page2BoxRTit {
    font-size: 25px;
  }
  .eventDays {
    font-size: 15px;
  }

  /* 3?�이지 */
  .carousel-window {
    width: 800px;
  }
  .carousel-wrapper {
    gap: 50px;
  }
  .slide {
    width: 130px;
    height: 380px;
  }
  .slide.focused {
    width: 320px;
  }
  .slideTit {
    font-size: 24px;
  }
  .slideTTxt {
    font-size: 16px;
  }

  .carousel-container {
    gap: 20px;
  }
  .page3Tit {
    font-size: 30px;
  }
  .nav-buttons button {
    width: 80px;
    height: 80px;
  }

  /* 5?�이지 */
  .page5PlayTxtTop {
    font-size: 25px;
    line-height: 28px;
  }
  .txtTopIcon {
    width: 26px;
    height: 26px;
  }
  .page5PlayTxtCenter {
    font-size: 16px;
    line-height: 20px;
  }
  .page5PlayTxtBottom {
    font-size: 19px;
    line-height: 28px;
  }

  .applyBtn {
    height: 50px;
    font-size: 19px;
  }

  /* ?�터 */
  .footerLogo {
    height: 30px;
  }

  /* 이벤트 페이지 */
  .luckyCouponBox {
    width: 200px;
    height: 200px;
  }

  .mainEventTitle {
    font-size: 40px;
  }

  .evtCountNum {
    width: 60px;
    height: 60px;
  }

  .evtCountTit {
    font-size: 15px;
  }

  .evtCountNum span {
    font-size: 38px;
  }
}

@media screen and (max-width: 1200px) {
  .headerMenus {
    gap: 50px;
  }

  
  .couponPopBox {
    height: 450px;
  }

  .play1PopupBox {
    flex-direction: column-reverse;
    width: 80%;
    align-items: end;
  }

  .playPopVideo {
    width: 100%;
  }

  .communityList {
    gap: 10px;
  }
  .communityBox {
    width: 34px;
    height: 34px;
  }
  .headerMenus li {
    font-size: 15px;
  }
  .page2MoreBox {
    width: 90%;
  }

  .page5PlayList {
    width: 90%;
  }

  .page5PlayBox {
    gap: 30px;
  }
  .page5PlayVideo {
    width: 45%;
  }
  .page5PlayTxtTop {
    font-size: 22px;
    line-height: 26px;
  }
  .page5PlayTxtCenter {
    font-size: 15px;
    line-height: 19px;
  }
  .page5PlayTxtBottom {
    font-size: 17px;
    line-height: 26px;
  }
  .txtTopIcon {
    width: 22px;
    height: 22px;
  }

  .steamBtn {
    padding: 10px 30px 10px 10px;
  }
  .steamBtnIcon {
    width: 40px;
    height: 40px;
  }
  .steamTxt > p:nth-child(2) {
    font-size: 22px;
  }

  .clausePopInner {
    width: 500px;
  }

  .clausePopContent .clauseText {
    height: 400px;
  }

  .mainButtonInner {
    width: 1000px;
  }
  .mainBtnIcons {
    width: 50px;
    height: 50px;
  }

}

@media screen and (max-width: 1000px) {
  .headerInner {
    justify-content: center;
    background: linear-gradient(to top, #010824, #011842, #042055);
  }
  .headerMenus {
    display: none;
  }
  .communityList {
    display: none;
  }

  .page1SubTxt {
    font-size: 20px;
  }
  .page1Tit h1 > p:first-child {
    font-size: 60px;
  }
  .page1Tit h1 > p:last-child {
    font-size: 40px;
    margin-top: 0;
  }

  .page2BoxTit {
    font-size: 20px;
  }
  .page2BoxTxt {
    font-size: 14px;
  }
  .page2Move {
    height: 180px;
  }
  .preEmailBox {
    max-width: 550px;
    height: 55px;
  }

  .reserPsTxt {
    width: 90% !important;
    word-break: keep-all;
  }

  .page2BoxRTit {
    font-size: 22px;
  }
  .eventDays {
    font-size: 14px;
  }
  .eventBoxTit {
    font-size: 14px;
  }

  .nav-buttons button {
    width: 70px;
    height: 70px;
  }
  .page3Tit {
    font-size: 30px;
  }

  .carousel-window {
    width: 700px;
  }
  .slide {
    width: 120px;
  }

  .slide.focused {
    width: 280px;
  }
  .carousel-wrapper {
    gap: 20px;
  }

  .arrow {
    width: 40px;
  }
  .page5PlayBox {
    gap: 20px;
  }

  .page5PlayTxt > p:first-child {
    font-size: 18px;
    line-height: 25px;
  }
  .page5PlayTxt > p:nth-child(2) {
    font-size: 14px;
    line-height: 18px;
  }

  .footerInner {
    gap: 20px;
  }

  .footComm {
    display: block;
  }

  .footComm .communityList {
    display: flex;
    gap: 15px;
  }

  .mainBtnIcons {
    width: 40px;
    height: 40px;
  }


  .clausePopInner {
    width: 80%;
  }

  .mainBtnCBottom {
    width: 100%;
  }
  .gameStartBtn {
    margin: 0 auto;
  }

  .gameStartTit {
    font-size: 24px;
  }
  .gameStartTxt {
    font-size: 20px;
  }

  .mainBtnCTop {
    gap: 10px;
  }

  .logoBox {
    height: 45px;
  }

}

@media screen and (max-width: 1000px) {
  .mainEventTit1, .mainEventTit2 {
    font-size: 38px;
    height: 50px;
  }
}

@media screen and (max-width: 800px) {
  header {
    position: absolute;
  }

  .mainEventTit1, .mainEventTit2 {
    font-size: 32px;
    height: 35px;
  }

  .page1Tit h1 > p:first-child {
    font-size: 55px;
  }
  .page1SubTxt {
    font-size: 18px;
  }
  .playBtns {
    width: 180px;
    height: 180px;
  }

  .page2MoreBox {
    width: 100%;
    height: 100%;
    flex-direction: column-reverse;
    justify-content: start;
    border-radius: 0;
    max-height: 100%;
    padding: 0;
  }
  .page2BoxLeft {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    padding: 10% 0;
    background-color: white;
  }
  .page2BoxLeft2 {
    box-shadow: none;
  }
  .page2BoxRight {
    width: 100%;
    flex-shrink: 0;
    padding: 20% 0;
    gap: 30px;
  }

  .page2Move {
    width: 40%;
    height: 260px;
  }

  .page3More {
    width: 90%;
  }

  .carousel-container {
    width: 70%;
  }
  .carousel-wrapper {
    width: 100%;
  }
  .carousel-window {
    width: 80%;
    margin: 0 auto;
  }

  .page2BoxLeft2 {
    width: 100%;
  }
  .page2BoxLeft3 {
    width: 90%; /* ?�정 */
    margin: 0 auto; /* ?�정 */
    box-shadow: none;
  }

  .slide {
    width: 100%;
    height: 350px;
  }
  .slide.focused {
    width: 100%;
  }

  .soundToggleBtn {
    top: 90px;
    left: 20px;
    bottom: auto;
    z-index: 99;
  }


  .mainVideo {
    height: 40vh;
  }

  body {
    overflow: visible;
    flex-direction: column;
  }
  .page1 {
    overflow: visible;
    /* position: static; */
  }

  /* .page1More {
    position: sticky;
  } */


  .page4 {
    display: none;
  }

  .nav-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .page3Tit {
    font-size: 24px;
  }
  .page5More {
    gap: 40px;
    margin-top: 5%;
  }
  .page5PlayBox {
    flex-direction: column;
    align-items: center;
  }

  .page5PlayVideo {
    width: 90%;
  }

  .page5PlayTxt {
    width: 90%;
    text-align: center;
    align-items: center;
    padding: 0;
    gap: 10px;
  }

  .footerInner {
    flex-direction: column;
    align-items: center;
  }

  .scrollable-wrap {
    overflow-y:visible
  }

  .page5PlayTxtTop {
    font-size: 20px;
    line-height: 26px;
  }
  .txtTopIcon {
    width: 18px;
    height: 18px;
  }

  .preTit {
    font-size: 14px;
  }

  .mainBtnSide  {
    font-size: 14px;
  }

  .mainBtnIcons {
    width: 24px;
    height: 24px;
  }

  .mainButtonMore {
    padding: 30px 0;
  }

  .footTopBox {
    flex-direction: column;
  }

  .gameStartBtn {
    width: 100%;
    height: 200px;
  }

  .mainButtonInner {
    width: 70%;
    gap: 10px;
    margin: 0 auto;
  }

  .gameBtnImg {
    height: 40px;
  }
  .gameStartTit {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .mainBtnCTop {
    flex-direction: column;
  }

  .evtCountNum {
    width: 45px;
    height: 45px;
  }

  .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;
  }

  .page1SubTxt {
    font-size: 14px;
  }
  .page1Tit h1 > p:first-child {
    font-size: 40px;
  }
  .page1Tit h1 > p:last-child {
    font-size: 30px;
    margin-top: 2%;
  }
  .steamBtn {
    padding: 10px 30px 10px 10px;
    gap: 8px;
  }
  .steamTxt > p:nth-child(2) {
    font-size: 21px;
  }
  .playBtns {
    width: 130px;
    height: 130px;
  }
  .logoBox {
    height: 35px;
  }
  .page1MoreList {
    height: 55%;
    justify-content: space-between;
  }
  .page1Bg {
    position: static;
  }
  .playPopClose {
    width: 35px;
    height: 35px;
  }
  .play1PopupBox {
    width: 85%;
    gap: 10px;
  }

  .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);
    }
  }

  .page2Move {
    width: 70%;
    height: 250px;
  }

  .page3 {
    padding: 20% 0;
    height: auto;
  }
  .carousel-container {
    width: 100%;
  }
  .slide {
    height: 350px;
  }
  .slideTTxt {
    font-size: 13px;
  }
  .nav-buttons button {
    width: 60px;
    height: 60px;
  }

  .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;
  }

  .carousel-wrapper {
    gap: 5px
  }

  .page3Tit {
    font-size: 25px;
    text-align: center;
    word-break: keep-all;
    width: 80%;
    line-height: 40px;
  }

  .page5 {
    padding: 15% 0;
    background-position: center;
  }
  .page5PlayVideo {
    width: 100%;
  }
  .page5PlayTxt {
    width: 100%;
    text-align: center;
  }
  .page5PlayTxt > p:first-child {
    font-size: 14px;
    line-height: 23px;
  }
  .page5PlayTxt > p:nth-child(2) {
    font-size: 13px;
    line-height: 17px;
  }
  .page5PlayList {
    gap: 40px;
  }

  .applyBtns {
    width: 90%;
    height: 45px;
  }
  .applyBtn {
    font-size: 16px;
  }

  footer {
    padding: 10% 0;
  }

  .footerText {
    align-items: center;
    width: 85%;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
  }

  .fTexts {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .page5PlayTxtTop {
    font-size: 16px;
    line-height: 26px;
  }
  .txtTopIcon {
    width: 16px;
    height: 16px;
  }
  .page5PlayTxtCenter {
    font-size: 14px;
    line-height: 21px;
    word-break: keep-all;
  }
  .page5PlayTxtBottom {
    font-size: 14px;
    word-break: keep-all;
  }

  .slideTit {
    font-size: 20px;
  }

  .page3More {
    gap: 20px;
  }
  .nav-buttons {
    gap: 10px;
  }
  .nav-buttons button.btnfocused {
    scale: 1;
  }

}

@media screen and (max-width: 500px) {
  .page2Move {
    height: 180px;
  }

  .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;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.seo-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ?�단 ?�역 리뉴??*/
.reserBox {
  display: none;
}
.reserBox.on {
  display: flex;
}

.reserBoxInner {
  height: 750px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.rouletteDiv {
  width: 450px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rouletteBox {
  width: 100%;
  height: 100%;
}
.rouletteBox > img {
  width: 100%;
  height: 100%;
}

.reserBox1Top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.reserBox1Tit {
  font-size: 36px;
  font-family: 'Vitro_core';
  background: linear-gradient(to bottom, #D5F1FF, #56C1FF);
  color: transparent;
  -webkit-background-clip: text;
}

.reserBox1Sub {
  font-size: 20px;
  color: white;
}
.reserBox1Sub span {
  font-family: 'Vitro_core';
  background: linear-gradient(to bottom, #FFFED7, #FFFA5E);
  color: transparent;
  -webkit-background-clip: text;
  font-size: 27px;
  margin: 0 0 0 5px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #eb6e07;
}

/* ?�단 ?�역 */
.reserBottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.reserBtn {
  width: 400px;
  height: 60px;
  padding: 0 60px;
  background: linear-gradient(to bottom, #FFCE31, #FF7C09);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 4px;
  cursor: pointer;
  border: none;
  position: relative;
  font-family:'bitbit';
  font-size: 23px;
}

.reserBtn:hover {
  background: linear-gradient(to top, #FFCE31, #FF7C09);
}

.reserBtnIcon {
  width: 35px;
  height: 35px;
  position: absolute;
  left: 35px;
}

.reserPs {
  font-size: 14px;
  color: #7C7C7C;
  text-align: center;
  line-height: 170%;
}
.reserPs p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 5px;
}
.reserPs p::before {
  content: '';
  display: flex;
  width: 5px;
  height: 5px;
  background-color: #7C7C7C;
  border-radius: 10px;
}

#step2Btn {
  display: none;
  background-color: #56C1FF;
  color: #00507e;
}

.reserTxtInText {
  position: absolute;
  color: #562F00;
  left: 80px;
}

.reserTxtOutline {
  position: absolute;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.6);
  left: 80px;
}

.reserPsTxt {
  width: max-content;
  text-align: center;
  line-height: 140%;
  font-size: 14px;
  color: white;
  font-weight: 400;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

/* ?�재 ?�태 ?�시 */
.reserStateDiv {
  display: flex;
  flex-direction: column;
  width: 800px;
  gap: 10px;
}

.reserStateBar {
  position: relative;
  width: 100%;
  height: 40px;
}
.reserStateBar progress {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-appearance: none;
}
.reserStateTxt {
  position: absolute;
  font-size: 18px;
  top: 7px;
  color: #021948;
  font-family: 'Vitro_core';
  font-weight: 800;
}
progress::-webkit-progress-bar {
  background-color: #021948;
  border-radius: 50px;
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}
progress::-webkit-progress-value {
  background: linear-gradient(to right, #ffc966, #ff9166);
  border-radius: 50px;
}

/* ?�계 ?�시 */
.stateTxt20 {
  margin-left: 13%;
}
.stateTxt60 {
  margin-left: 52%;
}
.stateTxt80 {
  margin-left: 72%;
}
.stateTxt100 {
  margin-left: 92%;
}

/* ?�계 */
.reserStepDiv {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
}

.reserStep {
  width: 100%;
  color: #294377;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.reserStep.on {
  color: #ffc966;
}
.reserStep > p:first-child {
  font-size: 17px;
  font-weight: 700;
}
.reserStep > p:nth-child(2) {
  font-size: 15px;
}

/* ?�이??*/
.reserItemDiv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reserItemBox {
  width: 180px;
}

.reserBoxTit {
  font-size: 24px;
  font-family: 'Vitro_core';
  color: white;
  text-align: center;
  line-height: 160%;
}

.reserBox5Tit .reserBox1Tit {
  margin-bottom: 20px;
}
.reserBox5Tit .reserSubTit {
  font-size: 20px;
  line-height: 160%;
}

.moveTit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFCC66;
  font-size: 17px;
  font-weight: 600;
  animation: moveTit 1s infinite;
  position: absolute;
}
.moveIcon {
  width: 20px;
  height: 20px;
}

@keyframes moveTit {
  0% {
    margin: 0;
  }
  50% {
    margin: 8px 0 0 0;
  }
  100% {
    margin: 0;
  }
}

.preCheckPoint {
  color: #FF8080;
  font-weight: 700;
}



/* 반응??*/
@media screen and (max-width: 1440px) {
  .reserBoxInner {
    height: 680px;
    gap: 15px;
  }
  .moveTit {
    font-size: 15px;
  }

  .rouletteDiv {
    width: 350px;
    height: 410px;
  }

  .reserBox1Tit {
    font-size: 30px;
  }
  .reserBox1Sub {
    font-size: 17px;
  }
  .reserBox1Sub span {
    font-size: 22px;
  }

  .reserStateBar {
    height: 35px;
  }
  .reserStateTxt {
    font-size: 16px;
  }

  .reserStep > p:first-child {
    font-size: 15px;
  }
  .reserStep > p:nth-child(2) {
    font-size: 14px;
  }

  .reserBoxTit {
    font-size: 20px;
    word-break: keep-all;
  }
  .reserItemBox {
    width: 160px
  }

  .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%;
  } 
}

@media screen and (max-width: 1000px) {
  .reserBoxInner {
    height: 670px;
  }



  .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;
    gap: 10px;
  }

  .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;
  }

  .reserBox1Tit {
    font-size: 26px;
  }
  .reserBox1Sub {
    font-size: 15px;
  }
  .reserBox1Sub span {
    font-size: 20px;
  }

  .reserStateDiv {
    width: 600px;
  }
  .reserStateBar {
    height: 25px;
  }
  .reserStateTxt {
    font-size: 13px;
    top: 4px;
  }

  .reserBoxTit {
    font-size: 17px;
  }
  .reserStep > p:first-child {
    font-size: 14px;
  }
  .reserStep > p:nth-child(2) {
    font-size: 13px;
  }
  .reserItemBox {
    width: 140px;
  }

  .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;
  }
}

@media screen and (max-width: 800px) {
  .luckyCouponTit {
    display: none;
  }

  .moveTitArt {
    padding: 10px;
    text-align: center;
  }
  .luckyCouponTitTop {
    font-size: 15px;
  }


  .reserStateDiv {
    width: 500px;
  }
  .reserStateTxt {
    font-size: 12px;
  }
  .reserBoxTit {
    width: 80%;
    font-size: 14px;
  }

  .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;
  }

}

@media screen and (max-width: 600px) {
  .reserBoxInner {
    width: 90%;
    height: auto;
    margin: 0 auto;
    gap: 15px;
  }
  .reserBox1Tit {
    text-align: center;
    word-break: keep-all;
    font-size: 20px;
  }
  .reserBox1Sub {
    font-size: 14px;
  }
  .reserBox1Sub p {
    width: 80%;
    word-break: keep-all;
    margin: 0 auto;
    text-align: center;
  }
  .reserBox1Sub span {
    font-size: 14px;
  }

  .luckyCouponList {
    width: 85%;
    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 {
    display: none;
  }

  .reserBtn {
    width: 300px;
    height: 55px;
    text-align: center;
    padding: 0 15px;
  }

  .reserStateDiv {
    width: 100%;
  }
  .reserStep {
    display: none;
  }
  .reserStep.on {
    display: flex;
  }
  .reserStepDiv {
    display: flex;
    text-align: center;
  }

  .stateTxt20 {
    margin-left: 8%;
  }
  .stateTxt60 {
    margin-left: 46%;
  }
  .reserBoxTit {
    width: 100%;
    font-size: 14px;
  }
  .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;
  }

  .reserItemBox {
    width: 100px;
  }

  .reserBox3 .reserItemDiv {
    position: relative;
    width: 80%;
    height: 160px;
  }
  .reserStateBar {
    height: 20px;
  }
  .stateTxt80 {
    margin-left: 67%;
  }
  .reserStateTxt {
    top: 2px;
  }

  .reserBox3 .reserItemDiv .reserItemBox {
    position: absolute;
  }
  .reserBox3 .reserItemDiv > .reserItemBox:first-child {
    z-index: 1;
    left: 30%;
    bottom: 0;
  }
  .reserBox3 .reserItemDiv > .reserItemBox:nth-child(2) {
    left: 5px;
  }
  .reserBox3 .reserItemDiv > .reserItemBox:nth-child(3) {
    right: 5px;
  }

  .reserBox4 .reserBoxTit {
    font-size: 14px;
  }
  .reserBox4 .reserItemDiv {
    position: relative;
    width: 80%;
    height: 160px;
  }
  .reserBox4 .reserItemDiv .reserItemBox {
    position: absolute;
  }
  .reserBox4 .reserItemDiv > .reserItemBox:first-child {
    z-index: 1;
    bottom: 0;
    left: 5%;
  }
  .reserBox4 .reserItemDiv > .reserItemBox:nth-child(2) {
    left: 50%;
    z-index: 1;
    bottom: 0;
  }
  .reserBox4 .reserItemDiv > .reserItemBox:nth-child(3) {
    left: 30%;
  }

  .reserBox5Tit .reserSubTit {
    font-size: 13px;
  }

  .stateTxt100 {
    margin-left: 85%;
  }

  .reserItemDiv {
    gap: 5px;
  }

}

/* 모바???�더 */
.mSideBtn {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  padding: 2px;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1000px) {
  .headerInner {
    width: 100%;
    position: relative;
  }

  .mSideBtn {
    position: absolute;
    display: block;
    left: 16px;
  }

  .headerMenus {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 80px;
    left: 0;
    background: linear-gradient(to bottom, #010824, #011842, #042055);
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    padding: 30px 0 0 0;
  }

  .headerMenus.on {
    display: flex;
  }

  .headerMenus li {
    width: 90%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid white;
  }

  .headerMenus li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
}
