@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

*{padding: 0; margin: 0; position: relative; word-break: keep-all; overflow: hidden; box-sizing: border-box;}
li,ol,ul{list-style: none;}
a{color: inherit; text-decoration: none; display: block;}
img{display: block; width: 100%;}
body{font-family:  "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif; color: #515151;}


h1{font-size: 38px; font-weight: 800;}
h2{font-size: 34px; font-weight: 800;}
h3{font-size: 28px; font-weight: 700;}
h4{font-size: 24px; font-weight: 700;}
h5{font-size: 21px; font-weight: 500;}
h6{font-size: 18px; font-weight: 500;}
p{font-size: 16px; font-weight: 500;}

.w-600{font-weight: 600;}

/* 개별 css 시작 */
.bg{
  height: 100vh;
  background-image: url(/img/lobby/main-bg.png);
  background-size: cover;
}
.container{
  width: 1600px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}


/* left-box */
.left-box{
  /* border: 1px solid blue; */
  height: 60%;
  flex: 1;
  top: 50%;
  transform: translateY(-50%);
}
.left-box .l-circle-bg{
  position: absolute;
  z-index: 0;
  width: 510px;
  height: 510px;
  background-color: white;
  opacity: .3;
  border-radius: 50%;
} 
.left-box .l-cont{
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}
.left-box .n-color{
  color: #f66e62;
}
.left-box .t-color{
  color: #3a6a88;
}

.left-box .title-box{
  margin-top: 8px;
  width: 140px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f66e62;
  border-radius: 50px;
}
.left-box .title-box .title{
  color: white;
  font-size: 32px;
  font-weight: 700;
}
.left-box .mo-see{
  width: 120px;
  position: absolute;
  bottom: 30px;
  left: 48%;
  transform: translateX(-50%);
  text-align: center;
  color: #f66e62;
  display: none;
}
.left-box .mo-see h5{
  font-weight: 700;
  animation: textScale 2s infinite ease-in-out;
}
@keyframes textScale {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


/* right-box */
.right-box{
  flex: 2;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.right-box .r-circle-bg{
  position: absolute;
  z-index: 0;
  top: -50px;
  width: 1030px;
  height: 1030px;
  background-color: white;
  opacity: .3;
  border-radius: 50%;
}

.right-box .r-cont{
  width: 100%;
  height: fit-content;
  top: 50%;
  transform: translateY(-53%);
  padding: 0 100px;
}
.right-box .r-cont .t-logo{
  width: 220px;
  padding: 0 0 60px;
  margin: 0 auto;
}
.right-box .r-cont .togo-box{
  width: 90%;
  height: 100%;
  display: flex;
  margin: 0 auto;
  padding-top: 5px;
}
.right-box .r-cont .togo-box .togo-item{
  width: 340px;
  height: 420px;
  margin: 0 auto;
  border-radius: 15px;
  background-color: white;
}
.right-box .r-cont .togo-box .togo-item:hover{
  box-shadow: 5px 5px 5px #b4b4b4;
}
.right-box .r-cont .togo-box .togo-item .togo-box-cont{
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.right-box .r-cont .togo-box .l-togo-box.togo-item .name{
  text-align: center;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 20px;
  background-color: rgba(255,235,231,.7);
  margin: 3px;
}

.right-box .r-cont .togo-box .togo-item .name .g-t-color1{
  color: #e97150;
}

.right-box .r-cont .togo-box .l-togo-box {
  position: relative;
  border-radius: 15px;
  background-image: url(/img/lobby/left-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.right-box .r-cont .togo-box .l-togo-box::before {
  content: "";
  position: absolute;
  inset: 0; 
  border-radius: inherit;
  background: linear-gradient(-90deg, #f48c72 0%, #e97195 100%);
  padding: 3px;
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: 0; 
  pointer-events: none;
}

.right-box .r-cont .togo-box .l-togo-box:hover,
.right-box .r-cont .togo-box .r-togo-box:hover {
  transform: scale(1.01);
  transition: .3s;
  backface-visibility: hidden;
}
.right-box .r-cont .togo-box .btn-box{
  height: calc(100% - 110px);
}
.right-box .r-cont .togo-box .btn-box .s-box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 280px;
  padding-bottom: 5px;
}
.right-box .r-cont .togo-box .l-togo-box .btn-box .go-btn{
  background-color: rgba(255,255,255,.8);
  margin: 0 auto 20px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 270px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
      linear-gradient(-90deg, #f48c72 0%, #e97195 100%); 
  background-origin: border-box;
    background-clip: content-box, border-box;
}
.right-box .r-cont .togo-box .l-togo-box .btn-box .s-box .l-bg-color{
  background: linear-gradient(-90deg, #f48c72 0%, #e97195 100%);
  color: white;
  border: none;
}

/* .right-box .r-cont .togo-box .btn-box .go-btn a:hover h6 {
  font-size: 19px;
  transition: .3s;
} */
.right-box .r-cont .togo-box .btn-box .go-btn a{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.right-box .r-cont .togo-box .btn-box .go-btn h6{
  font-weight: 600;
}


.right-box .r-cont .togo-box .l-togo-box .btn-box .s-box .l-bor-color .l-po-color{
  color: #f78369;
}
.right-box .r-cont .togo-box .btn-box .go-btn:last-child{
  margin-bottom: 0;
}
.right-box .r-cont .togo-box .r-togo-box .btn-box .go-btn:last-child{
  margin-bottom: 0;
}

/* right-box right */
.right-box .r-cont .togo-box .r-togo-box.togo-item .name{
  text-align: center;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px 15px 0 20px;
  background-color: rgba(193,229,198,.7);
  margin: 2px;
}
.right-box .r-cont .togo-box .togo-item .name .g-t-color2{
  color: #729a20;
}

.right-box .r-cont .togo-box .r-togo-box {
  border-radius: 15px; 
  background-image: url(/img/lobby/right-bg.png);
  background-origin: border-box;
  background-clip: content-box;
  background-size: cover;
}

.right-box .r-cont .togo-box .r-togo-box::before {
  content: "";
  position: absolute;
  inset: 0; 
  border-radius: inherit;
  background: linear-gradient(-90deg, #8ed2c1 0%, #a8cc67 100%);
  padding: 3px;
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: 0; 
  pointer-events: none;
}

.right-box .r-cont .togo-box .r-togo-box .btn-box{
  display: flex;
  gap: 20px;
  height: calc(100% - 110px);
}

.right-box .r-cont .togo-box .r-togo-box .btn-box .s-box .r-bg-color{
  background: linear-gradient(-90deg,  #8ed2c1 0%, #a8cc67 100%);
  color: white;
  border: none;
}
.right-box .r-cont .togo-box .r-togo-box .btn-box .s-box .r-bor-color{
  display: flex;
  text-align: center;
}
.right-box .r-cont .togo-box .r-togo-box .btn-box .go-btn{
  background-color: rgba(255,255,255,.8);
  margin: 0 auto 20px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  width: 270px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
      linear-gradient(-90deg,  #8ed2c1 0%, #a8cc67 100%); 
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.right-box .r-cont .togo-box .r-togo-box .btn-box .go-btn .p-bl-color{
  color: #768ebb;
}
.right-box .r-cont .togo-box .r-togo-box .btn-box .go-btn .p-re-color{
  color: #e25f43;
}

.logout-box{
  width: fit-content;
  border-radius: 5px;
  height: 45px;
  z-index: 100;
  background-color: #f66e62;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}
.logout-box:hover{
  box-shadow: 3px 3px 3px #c5c5c5;
}
.logout-box .out-cont{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: white;
}
.logout-box .out-cont .out-img{
  height: 100%;
  display: flex;
  justify-content: center;
  width: 25px;
}
.logout-box .out-cont .out-img img{
  width: 100%;
}
.logout-box .out-cont .out-text{
  font-weight: 700;
}

 .r-cont .call-box{
  padding: 30px 0;
  margin: 0 auto;
  width: fit-content;
}
.r-cont .call-box p{
  font-size: 18px;
  font-weight: 800;
  color: #3a6a88;
}
.r-cont .call-box p span{
  color: #f66e62;
}
.right-box .r-cont .togo-box .btn-box .go-btn:hover{
  box-shadow: 3px 3px 3px #8b8b8b;
  background-color: rgba(255,255,255,.9);
  transition: .4s;
  border-radius: 40px 5px;
}

/* 반응형 */
@media(max-width: 1500px){
  .container{
    width: 1300px;
    gap: 0;
  }
  .left-box .l-cont{
    top: 47%;
    left: 47%;
  }
  .left-box .l-circle-bg{
    width: 400px;
    height: 400px;
  }
  h1{font-size: 32px;}
  h2{font-size: 28px !important;}
  .left-box .title-box{
    width: 120px;
    height: 42px;
  }
  .right-box .r-circle-bg{
    width: 830px;
    height: 830px;
  }
  .right-box .r-circle-bg{
    top: 0;
  }
  .right-box .r-cont .t-logo{
    width: 180px;
  }
  .right-box .r-cont{
    padding: 0 70px;
  }
  .right-box .r-cont .togo-box{
    gap: 30px;
  }
  .right-box .r-cont .togo-box .togo-item .name{
    height: 90px;
  }
  .right-box .r-cont .togo-box .btn-box .go-btn{
    margin: 0 auto 15px !important;
  }
  .right-box .r-cont .togo-box .btn-box .go-btn:last-child{
    margin-bottom: 0 !important;
  }
  .right-box .r-cont .togo-box .togo-item{
    width: 280px;
    height: 370px;
  }
  .right-box .r-cont .togo-box .btn-box .s-box{
    width: 220px;
  }
  .right-box .r-cont .togo-box .btn-box .s-box .go-btn{
    width: 100%;
  }
  .right-box .r-cont .logout-box{
    top: 65px;
  }
}


@media(max-width: 1024px){
  .bg{
    overflow: scroll;
  }
  .left-box .mo-see{
    display: block;
  }
  .right-box .r-cont .togo-box{
    gap: 0;
  }
}