.evt_wp {
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}

/* 윙배너 */
.wing_banner{
    position: fixed;
    right:1%;
    display:flex;
    z-index: 100;
    flex-direction: column;
    gap: 10px;
    bottom:20%;
}
.wing_banner a img{
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.visual {
    background: url('https://image.engineerlab.co.kr/data/www/engr/promotion/2026/newyear_ev/1/bg.jpg') 
    no-repeat top center #eff1ef;
}

.visual img{
    display:block;
}
.inner_1200 {
    width:1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}





/* 캐릭터 이미지 */
.character {
    position: absolute;
    top: 20%;
    left: 0;
}

/* 캐릭터 흔들기 애니메이션 */
@keyframes shake {
    0% {
        transform: translateY(0) rotate(0);
    }

    20% {
        transform: translateY(-8px) rotate(-3deg);
    }

    40% {
        transform: translateY(3px) rotate(4deg);
    }

    60% {
        transform: translateY(-6px) rotate(-2deg);
    }

    80% {
        transform: translateY(2px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.character-animate {
    animation: shake 2.2s cubic-bezier(.36, .07, .19, .97) infinite;
}

/* 돌리마 애니메이션 */
.main_typo_3d {
    animation: rotate360 3.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform-style: preserve-3d;
    will-change: transform;
    position: absolute;
    top: 28%;
    left: 50%;
    max-height: 125px;
    height: 13%;
}

@keyframes rotate360 {
    0% {
        transform: rotateY(0deg);
        filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.10));
    }

    20% {
        filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.16));
    }

    50% {
        transform: rotateY(180deg) scale3d(1.05, 1.05, 1.05);
        filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.17));
    }

    80% {
        filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.16));
    }

    100% {
        transform: rotateY(360deg);
        filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.10));
    }
}

/* 이벤트 참여방법 */
.section01 {
    background: #1567e7;
}

/* 룰렛 돌리기 */
.section02 {
    background: url('https://image.engineerlab.co.kr/data/www/engr/promotion/2026/newyear_ev/3/bg.jpg') 
    no-repeat top center #eff0e2;
}
.section02 .wind_img {
    position: absolute;
    top: 297px;
    left: 50%;
    transform: translateX(-50%);
}
.section02 .wind_img img {
    display: block;
    transform-origin: 50% 50%;
    will-change: transform;
}
.section02 .select_cu {
    position: absolute;
    top: 215px;
    left: 50%;
    transform: translateX(-50%);
}

.section02 .btn_wrap {
    position: absolute;
    top: 525px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.10));
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%)  scale(1.1);
    }
}
.section02 .btn_wrap img {
    display: block;
}
.section02 .btn_wrap .spin_btn {
    cursor: pointer;
    width: 170px;
    height:170px;
    border-radius: 50%;
    background: #2793f2;
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    line-height: 0.7;
    box-shadow: 0 8px 8px 0 rgba(255,255,255,0.20) inset,           
    2px 3px 37px 0 rgba(0,0,0,0.40);                     
}
.section02 .btn_wrap .spin_btn span{
    font-size: 18px;
}

.section02 .result {
    position: absolute;
    top: 920px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1567e7;
    padding: 20px 40px;
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    border-radius: 50px;
    /* 포토샵 레이어 스타일 구현 */
    box-shadow:
        0 2px 0 0 rgba(0,0,0,0.20) inset,                       
        2px 3px 37px 0 rgba(0,0,0,0.40);         
    background-image: 
        linear-gradient(161deg, rgba(255,255,255,0.2) 0%, rgba(21,103,231,0) 100%);
}

/* 결과 팝업 */
.layer_popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.layer_popup.open {
    display: flex;
}
.layer_popup .popup_inner {
    width: 520px;
    max-width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 28px;
    text-align: center;
    position: relative;
}
.layer_popup .popup_close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 40px;
    cursor: pointer;
}
.layer_popup .popup_title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.layer_popup .popup_list {
    margin-top: 6px;
}
.layer_popup .popup_item {
    display: none;
}
.layer_popup .popup_item.is-active {
    display: block;
}
.layer_popup .popup_desc {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}
.layer_popup .popup_img {
    background: #888;
    color: #fff;
    height:200px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.layer_popup .popup_img img{
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.40));
}

/* 유위사항 */
.section03 {
    background: #333;
}