.intro_section {
    padding: 100px 0;
}
.intro_section .wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.intro_section .wrapper .title_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 62px;
}
.intro_section .wrapper .title_wrap h3 {
    font-size: 60px;
    color: #fff;
}
.intro_section .wrapper .title_wrap p {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.intro_section .wrapper ul {
    display: flex;
    justify-content: center;
}

.intro_section .wrapper ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    padding: 0 10px;
}
.intro_section .wrapper ul li .number_wrap {
    font-size: 80px;
    color: var(--mainpink);
}
.intro_section .wrapper ul li .desc {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 16px 0;
}

.system_section {
    padding: 0 0 100px 0;
}
.system_section  .wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.system_section  .wrapper h3 {
    font-size: 60px;
    line-height: 1.3;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
.system_section  .wrapper .contenets_wrap .box_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 52px;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box {
    position: relative;
    padding: 20px 20px 24px 20px;
    width: calc(33.33% - 10.66px);
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-image: url('../../../src/img/live/production/card_texture.png'), linear-gradient(to top, #1b1b1b, #1b1b1b);
    background-repeat: repeat, repeat; 
    background-size: auto, cover; 
    background-blend-mode: color-burn;  
    border-image: linear-gradient(-36deg, #fff, rgba(255, 255,255, 0.4) 30%, rgba(255, 255,255, 0.4) 70%, #fff) 1;
    /* transition: all 0.3s linear;  */
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover {
    background-color: #fff;
    background-image: none;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box .box_number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 42px;
    color: rgba(255, 255,255, 0.2);
    transition: all 0.6s linear;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .box_number {
    color: rgba(0, 0, 0, 0.14);
    top: 340px;
    transform: translate(0, -100%);
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box .hov_txt .box_tit {
    position: absolute;
    bottom: 24px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    transition: all 0.6s linear;
    color: #fff;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_tit {
    bottom: calc(100% - 20px);
    color: #000;
    transform: translate(0, 100%);
    -webkit-text-stroke: 0px #fff;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box .hov_txt .box_detail {

    opacity: 0;
    position: absolute;
    bottom: 20px;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box .hov_txt .box_detail span {
    position: relative;
    display: block;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    transform: translate(0, 22px);
    padding-left: 10px;
    transition: all 0.4s ease; 
    border-left: 3px solid #444;
    margin-bottom: 6px;
    opacity: 0;
}
.system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_detail span .m_br {
    display: none;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box .hov_txt .box_detail span:last-child {
    margin-bottom: 0;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_detail {
    opacity: 1;
    color: #444;
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_detail span.n1 {
    opacity: 1;
    transition-delay: 0.4s;
    transform: translate(0px);
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_detail span.n2 {
    opacity: 1;
    transition-delay: 0.5s;
    transform: translate(0px);
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_detail span.n3 {
    opacity: 1;
    transition-delay: 0.6s;
    transform: translate(0px);
}
.system_section  .wrapper .contenets_wrap  .box_wrap li.box:hover .hov_txt .box_detail span.n4 {
    opacity: 1;
    transition-delay: 0.7s;
    transform: translate(0px);
}

.system_detail_section {
    padding: 100px 0;
    background-image: linear-gradient(to right, #000, #ff006e);
}
.system_detail_section .wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 49.4%;
    opacity: 0;
    transform: translateX(-50px); /* Start from left */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text_wrap {
    opacity: 1;
    transform: translateX(0); 
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap h3 {
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap span {
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    word-break: keep-all;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap h3,
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap span,
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text_wrap h3 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text_wrap span {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text_wrap p {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .img_wrap {
    width: 50.6%;
    aspect-ratio: 648 / 434;
    min-width: 640px;
    flex-shrink: 1;
    opacity: 0;
    transform: translateY(50px); /* Start from bottom */
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.4s;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .img_wrap {
    opacity: 1;
    transform: translateY(0);
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -15px;
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .swiper_pagination {
    width: fit-content;
    min-width: 70px;
    font-size: 16px;
    letter-spacing: 0.4rem;
    color: rgba(255, 255,255, 0.8);
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .swiper_pagination span {
    font-size: 16px;
    letter-spacing: 0.5rem;
    color: rgba(255, 255,255, 0.8);
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .nav_btn_wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .nav_btn_wrap .nav_btn {
    display: block;
    width: 40px;
    height: 14px;
    cursor: pointer;
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .nav_btn_wrap .nav_btn.swiper-button-disabled {
    opacity: 0.33;
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .nav_btn_wrap .nav_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .nav_btn_wrap span {
    display: block;
    width: 2px;
    height: 14px;
    background-color: rgba(255, 255,255, 0.2);
}

.event_section {
    padding: 160px 0;
}
.event_section .wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.event_section .wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.event_section .wrapper ul li {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.event_section .wrapper ul li .text_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.event_section .wrapper ul li .text_wrap h3 {
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    word-break: keep-all;
}
.event_section .wrapper ul li .text_wrap p {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255,255, 0.8);
    word-break: keep-all;
}
.event_section .wrapper ul li .text_wrap p .m_br {
    display: none;
}
.event_section .wrapper ul li .img_wrap {
    width: 100%;
    aspect-ratio: 1000 / 520;
}
.event_section .wrapper ul li .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1300px) {
    .intro_section .wrapper {
        padding: 0 16px;
    }
    .system_detail_section .wrapper {
        padding: 0 16px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap h3 {
        font-size: 50px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap span {
        font-size: 22px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p {
        font-size: 16px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p br {
        display: none;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap {
        margin-top: 20px;
    }
}
@media screen and (max-width:1200px) {
 
    .system_section .wrapper {
        padding: 0 16px;
    }
 
    .event_section .wrapper {
        padding: 0 16px;
    }
}
@media screen and (max-width: 980px) {
    .intro_section {
        padding: 70px 0;
    }
    .intro_section .wrapper .title_wrap {
        margin-bottom: 42px;
    }
    .intro_section .wrapper .title_wrap h3 {
        font-size: 42px;
    }
    .intro_section .wrapper .title_wrap p {
        font-size: 16px;
        line-height: 1.2;
    }
    .intro_section .wrapper ul {
        flex-wrap: wrap;
        row-gap: 30px;
    }
    .intro_section .wrapper ul li {
        min-width: 160px;
        width: 50%;   
    }
    .intro_section .wrapper ul li .number_wrap {
        font-size: 42px;
    }
    .intro_section .wrapper ul li .desc {
        font-size: 14px;
    }

    .system_section {
        padding: 0 0 70px 0;
    }
    .system_section .wrapper h3 {
        font-size: 42px;
        margin-bottom: 32px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap {
        padding: 0;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box {
        width: calc(50% - 8px);
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_tit {
        font-size: 16px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_tit br {
        display: none;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_detail span {
        font-size: 12px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_detail span .m_br {
        display: block;
    }

    .system_detail_section {
        padding: 42px 0;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide {
        flex-direction: column-reverse;
        gap: 14px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .img_wrap {
        width: 100%;
        min-width: 100%;
        min-height: 240px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap {
        width: 100%;
        height: 274px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap h3 {
        font-size: 32px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap h3 .pc_br {
        display: none;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap span {
        font-size: 20px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p {
        font-size: 14px;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper .swiper-wrapper .swiper-slide .text_wrap p br {
        display: block;
    }
    .system_detail_section .wrapper .swiepr_wrap .swiper_nav_wrap .swiper_pagination {
        letter-spacing: 0.3rem;
    }

    .event_section {
        padding: 70px 0;
    }
    .event_section .wrapper ul li {
        flex-direction: column-reverse;
        gap: 42px;
    }
    .event_section .wrapper ul li .img_wrap {
        min-height: 295px;
    }
    .event_section .wrapper ul li .text_wrap {
        align-items: flex-start;
        gap: 24px;
    }
    .event_section .wrapper ul li .text_wrap h3 {
        font-size: 32px;
        text-align: left;
    }
    .event_section .wrapper ul li .text_wrap p {
        font-size: 16px;
        text-align: left;
    }
    .event_section .wrapper ul li .text_wrap p .m_br {
        display: block;
    }
    .event_section .wrapper ul li .text_wrap p .pc_br {
        display: none;
    }

}

@media screen and (max-width: 500px) {
    .system_section .wrapper .contenets_wrap .box_wrap {
        gap: 20px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box {
        width: 100%;
        height: 190px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .box_number {
        font-size: 42px;
        line-height: 56px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box .hov_txt .box_tit {
        font-size: 16px;
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box:hover .hov_txt .box_tit {
        /* bottom: 170px; */
    }
    .system_section .wrapper .contenets_wrap .box_wrap li.box:hover .box_number {
        top: 170px;
    }
   
}