/* 버전 A 전용 스타일 */

body {
  background-color: #150803;
  background-image: url("/assets/images/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-position: top center;
}

section {
  width: 100%;
}

/* 메인히어로  */
.hero img {
  object-fit: contain;
}
.hero_logo {
  width: auto !important;
  margin-bottom: 50px;
}

/* <!-- 섹션1 --> */

.section1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 302px;
  min-height: 285px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.section1 .sec_title {
text-align: center;
font-family: 'GMarketSans';
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 37px;
letter-spacing: -1.12px;
background: linear-gradient(180deg, #FFDD25 0%, #FF8500 121.64%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.statebox {
display: flex;
flex-direction: column;
justify-content: center;
 align-items: center;

color: #FFF;
text-align: center;
color: #FFF;
font-family: 'GMarketSans';
font-style: normal;
margin-top: 20px;
font-weight: 300;
}

.statebox .statebox_title {
  border-radius: 3px;
  font-size: 13px;
  min-width: 66px;
  min-height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF5A00;
  font-style: normal;
  color: #FFF;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}
.statebox .statebox_desc {
display: flex;
height: 38px;
font-weight: 500;
width: 263px;
height:38px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
color: #FFF;
text-align: center;
font-size: 12px;
border-radius: 5px;
background: rgba(255, 143, 95, 0.15);
}

.section2{
margin-top: 40px;
display: flex;
width: 303px;
height: auto;
flex-direction: column;
gap: 10px;
}
.section2 .sec_title{
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'GMarketSans';
  background: linear-gradient(180deg, #FFF 33.65%, #C8C8C8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section2 .gift_box{
  margin-bottom: 20px;
      position: relative;
}

.section2 .gift_box img{
  width: 302px;
}

.section2 .gift_box button{
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 100%;
    height: 160px;
    opacity: 0;
}
.section2 .gift_box button:hover{
  cursor: pointer;
}

.compliance{
  color: #5E5D5E;
  text-align: center;
  font-family: Pretendard;
  font-size: 12px;
  margin: 30px;
}

/* 혜택받기 버튼 */
.sticky_btn{
    width: 296px;
    position: sticky;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
      font-family: 'GMarketSans';
}

.sticky_btn button{
  font-family: 'GMarketSans';
  border: unset;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  width: 100%;
 padding: 16px 20px;
}

.sticky_btn button:hover{
  cursor: pointer;
}



.sticky_btn .btn_tp1{
border-radius: 50px;
background: #FF6C00;
color: #fff;
}



/* 토스트 알림 */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-160px);
}

@media (max-width: 768px) {
  .sticky_btn {
    height: 100px;
    bottom: 0;
  }

  .toast {
    transform: translateX(-50%) translateY(-60px);
  }

  
.toast.show {
  transform: translateX(-50%) translateY(-80px);
}

}

