/*./assets/css/common.css*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    /*color:#666666 !important;*/
    color:#fff;
      text-decoration: none !important;
}

footer a, .footer-ul li{
    color:#000;
    font-weight:300;
}
footer a{
    font-weight:100;
}
.logo{
    max-width:80% !important;
}

@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: SUIT-Regular, sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #000;
}
.nav a, h1,h2,h3,h4,h5,h6,p,span{
    font-family: SUIT-Regular, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container img{
    max-width: 100%;
}
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent; /* 변경 */
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.logo h1 {
    color: #7AF296;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.logo h1 span {
    font-size: 14px;
    font-weight: 400;
}

.nav {
    /*position: absolute;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    display: flex;
    align-items: center;
}


.nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    margin-right: 0;
}


.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ff7474;
}


.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
}

.btn-login:hover {
    background: #fff;
    color: #FF7474 !important;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001; /* 추가 또는 수정 */
    position: relative;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh; /* 동적 뷰포트 높이 추가 */
    height: calc(var(--vh, 1vh) * 100); /* JS 계산값 사용 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.3) 30%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,1) 100%
    );
    z-index: 1;
    pointer-events: none;
}
*/

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover; /* 추가: 비디오가 컨테이너를 완전히 채움 */
    object-position: center; /* 추가: 중앙 정렬 */
}

/*.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}*/


.second-hero {
    position: relative;
    /*margin-top: -100px; /* 섹션 겹치기 */*/
}

/*.second-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 20%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}*/



.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%,
        transparent 30%,
        rgba(0,0,0,0.3) 70%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.second-hero img {
    position: relative;
    z-index: 0;
}


.hero-content {
    position: absolute;
    /*bottom: 40px;*/
    left: 15vh;
    max-width:40vw;
    z-index: 2;
}
.hero-img{
    max-width:50vw;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7AF296;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-date {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero-logo {
    max-width: 400px;
    height: auto;
}

.hero-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero-logos img {
    height: 60px;
}

/* Section Styles */
.section {
    padding: 80px 0;
    background: #000;
}

.section:nth-child(even) {
    background: #000;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #E48B8E;
    position: relative;
    padding-bottom: 30px;
}

/*.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 3px;
    background: #3BB658;
}*/

/* Overview Section */
.overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.overview-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.overview-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.overview-item i {
    font-size: 48px;
    color: #7AF296;
    margin-bottom: 20px;
}

.overview-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.overview-item p {
    color: #ccc;
}

/* Program Section */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {

background: linear-gradient(325.39deg, rgba(59, 182, 88, 0.8) -3.07%, rgba(18, 95, 109, 0.8) 83.24%);
backdrop-filter: blur(10px);
border-radius: 50px;;
    border: 2px solid #7AF296;
    color: #7AF296;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    /*background: #7AF296;*/
    color: #000;
}

.tab-content,.archive-content {
    display: none;
}

.tab-content.active , .archive-content.active{
    display: block;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #7AF296;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 0;
    width: 10px;
    height: 10px;
    background: #7AF296;
    border-radius: 50%;
}

.timeline-time {
    color: #7AF296;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #ccc;
}


/* Footer */
.footer {
    background: #fff;
    color: #666;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer p {
    margin-bottom: 10px;
}

.footer .container{
    max-width: 1200px;
}
.footer-logo{
    display: flex;
}
.footer-second{
    margin-left:-40px;
}

/* Responsive */
@media (max-width: 991px) {

    .section-title{
        font-size:24px;
        margin-bottom:10px;
        padding-bottom:0;
    }
    .section-title::after{
        width:70px;
    }
    .second-hero::before{
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    }
     body {
        padding-top: 0 !important;
    }
     .hero-section {
        /*height: 100vh;*/
        height: 100dvh;
        /*height: calc(var(--vh, 1vh) * 65);*/
    }
     .video-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }
    /* 히어로 섹션이 아닌 페이지에서만 헤더 높이만큼 여백 추가 */
    .section:not(.hero-section):first-of-type {
        padding-top: 80px;
    }

    .header .nav {
        height:100dvh;
        position: fixed;
        overflow: scroll;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        padding: 100px 20px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-content {
        bottom: 20px;
        left: 20px;
    }

    .header .nav ul {
        flex-direction: column;
        padding:0;
        gap: 30px;
        text-align: center;
        align-items: flex-start;
    }

    .hero-logo {
        max-width: 250px;
    }
        .header .nav a {
        font-size: 28px;
        font-weight: 800;
        display: block;
        padding: 10px;
    }


    .btn-login {
        position: fixed;
        right: 80px;
        top: 20px;
        z-index: 1002;
    }
    
    .header .nav.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1002;
    }
    
    .nav {
        position: static;
        transform: none;
    }

    
    .hero-title {
        font-size: 32px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .archive-tab {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .survey-form {
        padding: 40px 20px;
    }
    /* 가로가 긴 비디오의 경우 */
    @media (min-aspect-ratio: 16/9) {
        .video-bg {
            width: auto;
            height: 100%;
            min-width: 100%;
        }
    }
    
}

        #sponsorship{
            padding-top:150px;
        }
    .sponsorship-logo-section img{
            /*margin-left:30px;*/
            /*margin-right:30px;*/
        }
        .sponsorship-logo-section{
            background: #d66e7221;
            border-radius: 15px;
            /*padding-top:50px;*/
            padding: 50px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap:50px;
            min-height:300px;
            height: 100%;

        }
        @media(max-width: 991px){
            .sponsorship-logo-section{
                padding:15px;
            }
            .sponsorship-logo-section img{
                margin:0px;
                width: 100%;
                padding:15px;
                height:70px;
                border-radius: 10px;
            }
            .sponsorship-logo-section {
                background: none;
                height: fit-content;
                flex-wrap: wrap;
                gap:15px;

            }
            .s-logo {
                background: #d66e7221;;
                width:  47%; ;
            }
        }
          .faq-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .faq-category {
        margin-bottom: 40px;
    }
    
    .faq-category-title {
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.5rem;
        font-weight: 400;
        color: white;
        padding: 10px 20px;
        display: inline-block;
        border-radius: 25px;
        width: 100%;
        max-width: 200px;
    }
    
    .faq-category-wrapper {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .faq-items {
        background: none;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-top: 1px solid #ffffff80;
        border-bottom: 1px solid #ffffff80;
    }
    
    .faq-item:last-child {
        /*border-bottom: none;*/
    }
    
    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding: 10px;
        transition: all 0.3s ease;
    }
    
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
    }
    
    .faq-arrow {
        width: 40px;
        height: 40px;
        margin-left: 20px;
        position: relative;
        flex-shrink: 0;
    }
    
    .arrow-circle {
        width: 40px;
        height: 40px;
        /*border: 2px solid #fff;*/
        border-radius: 50%;
        position: relative;
        transition: all 0.4s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .arrow-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.4s ease-in-out;
    }
    
    .faq-item.active .arrow-circle {
        /*background: #fff;*/
        transform: rotate(180deg);
    }
    
    .faq-item.active .arrow-icon {
        /*filter: brightness(0) contrast(100);*/

        transform: rotate(0deg);
    }
    
    .faq-text {
        flex: 1;
        text-align: left;
        font-size: 1.1rem;
        color: #fff;
        font-weight: 700;
    }
    .faq-text::before{
        /*content : '·';*/
        margin-right:10px;
        color:#fff;
    }

    .faq-answer {
        overflow: hidden;
        transition: height 0.4s ease-in-out, 
                    opacity 0.4s ease-in-out;
        height: 0;
        opacity: 0;
    }
    
    .faq-item.active .faq-answer {
        opacity: 1;
    }
    
    .faq-answer p {
        color: #9d9d9d;
        text-align: left;
        font-weight:300;
        line-height: 1.6;
        margin: 0;
        padding: 15px;
        padding-left:40px;
        background: #3a3a3a;
        width: 70%;
        margin-left: 9%;
        border-radius: 15px;
    }

    #faq-events .footer{
        background: none;
        border:0;
        max-width: 80%;
        margin: 0 auto;
    }
    #faq-events .container {;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }
    .footer-ul li{
        list-style: none;
        display: inline-block;
        padding-right: 30px;
        padding-left: 30px;
    }
    .br-1{
        border-right:1px solid #000;
    }
    .pl30{
        padding-left:30px;
    }
    @media(max-width: 991px){
        #faq-events .footer{
            max-width:90%;
        }
        #faq-events .container{
            align-items: flex-start;
        }
        footer a, .footer-ul li{
            color: #fff !important;
        }
        .footer .container{
            padding:0;
        }
        .footer-ul{
            display: flex;
            margin-top:15px;
            justify-content: space-between;
            padding-left: 0;
            width: 100%;
        }

        .footer-ul li{
            padding-left:7px !important;
            padding-right:7px !important;
            font-size:0.8rem;
            word-break: keep-all;
        }
        .footer-ul li:nth-child(3){
            padding-left:0;
        }
        .no-pl{
            padding-left:0 !important;
        }

        .faq-item.active {
            padding-bottom: 10px;
        }

        #sponsorship{
            padding-top:80px;
        }
        .faq-container{
            padding-right:5px;
            padding-left:5px;
        }
        #faq-events .section-title{
            font-size:33px;
            font-weight: 800;
        }
        .faq-items{
            padding:10px;
        }
        .faq-item{
            padding: 10px 0;
            padding:0;
        }
        .faq-text{
            font-size:0.8rem;
        }
        .arrow-circle{
            width:20px;
            height: 20px;
        }
        .faq-answer p{
            font-size:0.8rem;
            padding-left: 15px;
            max-width: 75vw;
            width: 90%;
            margin-left: 20px;

        }
        .faq-arrow{
            margin-left:0;
            top:10px;
            right:-20px;
        }
        .arrow-icon{
            width:10px;
            height:10px;
        }
        .footer{
            background: #000;
            border-top:0;
            flex-direction: column;
            padding: 15px;
            display: flex;
            justify-content: flex-start;
        }
        .footer-logo{
            justify-content: center;
        }
    }
  .overview-section{
            background: url('../img/section-bg-2.jpg?') !important;
            background-size:cover !important;
            background-position: center !important;
        }
        .overview-register{
            background:#ffffff2e;
            border:3px solid #fff;
            padding: 15px;
            width: 30vw !important;
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50px;
        }
        .overview-register-btn{
            background:#FF7474;
            color: #fff;
            border:0 !important;
        }
        @media(max-width:991px){
            .overview-register{
                padding: 10px;
                width: 100%;
                font-size: 1rem;

            }
        }



    .color-dark{color : #343a40!important}
    .color-white{color : #fff}
    .color-danger{color : #dc3545 !important}
    .color-info{color : #17a2b8 !important}
    .color-success{color : #28a745 !important}
    .mt0{ margin-top:0px  !important}
    .mt5{ margin-top:5px  !important}
    .mt10{ margin-top:10px  !important}
    .mt20{ margin-top:20px  !important}
    .mt30{ margin-top:30px  !important}
    .mt40{ margin-top:40px  !important}
    .mt50{ margin-top:50px  !important}
    .mt60{ margin-top:60px  !important}
    .mt70{ margin-top:70px  !important}
    .mt80{ margin-top:80px  !important}
    .mt90{ margin-top:90px  !important}
    .mt100{ margin-top:100px  !important}
    .mt110{ margin-top:110px  !important}
    .mt120{ margin-top:120px  !important}
    .mt130{ margin-top:130px  !important}
    .mt140{ margin-top:140px  !important}
    .mt150{ margin-top:150px  !important}
    .mb0{ margin-bottom:0px !important }
    .mb5{ margin-bottom:5px !important }
    .mb10{ margin-bottom:10px !important }
    .mb20{ margin-bottom:20px !important }
    .mb30{ margin-bottom:30px !important }
    .mb40{ margin-bottom:40px !important }
    .mb50{ margin-bottom:50px !important }
    .mb60{ margin-bottom:60px !important }
    .mb70{ margin-bottom:70px !important }
    .mb80{ margin-bottom:80px !important}
    .mb90{ margin-bottom:90px !important }
    .mb100{ margin-bottom:100px !important }
    .mb110{ margin-bottom:110px !important }
    .mb120{ margin-bottom:120px !important }
    .mb130{ margin-bottom:130px !important }
    .mb140{ margin-bottom:140px !important }
    .mb150{ margin-bottom:150px !important }
    .pb0{ padding-bottom:0px !important }
    .pb10{ padding-bottom:10px !important}
    .pb20{ padding-bottom:20px !important}
    .pb30{ padding-bottom:30px !important}
    .pb40{ padding-bottom:40px !important}
    .pb50{ padding-bottom:50px !important}
    .pb60{ padding-bottom:60px !important}
    .pb70{ padding-bottom:70px !important}
    .pb80{ padding-bottom:80px !important}
    .pb90{ padding-bottom:90px !important}
    .pb100{ padding-bottom:100px !important}
    .pb110{ padding-bottom:110px !important}
    .pb120{ padding-bottom:120px !important}
    .pb130{ padding-bottom:130px !important}
    .pb140{ padding-bottom:140px !important}
    .pb150{ padding-bottom:150px !important}
    .pt0{ padding-top:0px !important }
    .pt10{ padding-top:10px !important }
    .pt20{ padding-top:20px !important }
    .pt30{ padding-top:30px !important }
    .pt40{ padding-top:40px !important }
    .pt50{ padding-top:50px !important }
    .pt60{ padding-top:60px !important }
    .pt70{ padding-top:70px !important }
    .pt80{ padding-top:80px !important }
    .pt90{ padding-top:90px !important }
    .pt100{ padding-top:100px !important }
    .pt110{ padding-top:110px !important }
    .pt120{ padding-top:120px !important }
    .pt130{ padding-top:130px !important}
    .pt140{ padding-top:140px !important }
    
    .pt150{ padding-top:150px !important}

    .fw900{ font-weight: 900 !important}
    .fw800{ font-weight: 800 !important}
    .fw700{ font-weight: 700 !important}
    .fw600{ font-weight: 600 !important}
    .fw500{ font-weight: 500 !important}
    .fw400{ font-weight: 400 !important}
    .fw300{ font-weight: 300 !important}
    .fw200{ font-weight: 200 !important}
    .fw100{ font-weight: 100 !important}

    .pr0{ padding-right:0px !important}
    .pr10{ padding-right:10px !important}
    .pr20{ padding-right:20px !important}
    .pr30{ padding-right:30px !important}
    .pr40{ padding-right:40px !important}
    .pr50{ padding-right:50px !important}
    .pr60{ padding-right:60px !important}
    .pr70{ padding-right:70px !important}
    .pr80{ padding-right:80px !important}
    .pr90{ padding-right:90px !important}
    .pr100{ padding-right:100px !important}
    .pl0{ padding-left:0px !important}
    .pl10{ padding-left:10px !important}
    .pl20{ padding-left:20px !important}
    .pl30{ padding-left:30px !important}
    .pl40{ padding-left:40px !important}
    .pl50{ padding-left:50px !important}
    .pl60{ padding-left:60px !important}
    .pl70{ padding-left:70px !important}
    .pl80{ padding-left:80px !important}
    .pl90{ padding-left:90px !important}
    .pl100{ padding-left:100px !important}

    .lh1{ line-height: 1 }
    .lh2{ line-height: 2 }
    .lh3{ line-height: 3 }
    .lh4{ line-height: 4 }
    .lh5{ line-height: 5 }
    .lh6{ line-height: 6 }

    .text-left{text-align: left;}
    .text-center{text-align: center}
    .text-right{text-align: right}

    .p-v{
        display: block;
    }
    .p-i-v{
        display: inline-block;
    }
    img.p-v{
        display: inline-block;
    }
    .m-v, .m-v-f{
        display: none;
    }

    @media(max-width:991px){ 

        .m-mt0{ margin-top:0px  !important}
        .m-mt10{ margin-top:10px  !important}
        .m-mt20{ margin-top:20px  !important}
        .m-mt30{ margin-top:30px  !important}
        .m-mt40{ margin-top:40px  !important}
        .m-mt50{ margin-top:50px  !important}
        .m-mt60{ margin-top:60px  !important}
        .m-mt70{ margin-top:70px  !important}
        .m-mt80{ margin-top:80px  !important}
        .m-mt90{ margin-top:90px  !important}
        .m-mt100{ margin-top:100px  !important}
        .m-mt110{ margin-top:110px  !important}
        .m-mt120{ margin-top:120px  !important}
        .m-mt130{ margin-top:130px  !important}
        .m-mt140{ margin-top:140px  !important}
        .m-mt150{ margin-top:150px  !important}
        .m-mb0{ margin-bottom:0px !important }
        .m-mb10{ margin-bottom:10px !important }
        .m-mb20{ margin-bottom:20px !important }
        .m-mb30{ margin-bottom:30px !important }
        .m-mb40{ margin-bottom:40px !important }
        .m-mb50{ margin-bottom:50px !important }
        .m-mb60{ margin-bottom:60px !important }
        .m-mb70{ margin-bottom:70px !important }
        .m-mb80{ margin-bottom:80px !important}
        .m-mb90{ margin-bottom:90px !important }
        .m-mb100{ margin-bottom:100px !important }
        .m-mb110{ margin-bottom:110px !important }
        .m-mb120{ margin-bottom:120px !important }
        .m-mb130{ margin-bottom:130px !important }
        .m-mb140{ margin-bottom:140px !important }
        .m-pb150{ margin-bottom:150px !important }
        .m-pb0{ padding-bottom:0px !important }
        .m-pb10{ padding-bottom:10px !important}
        .m-pb20{ padding-bottom:20px !important}
        .m-pb30{ padding-bottom:30px !important}
        .m-pb40{ padding-bottom:40px !important}
        .m-pb50{ padding-bottom:50px !important}
        .m-pb60{ padding-bottom:60px !important}
        .m-pb70{ padding-bottom:70px !important}
        .m-pb80{ padding-bottom:80px !important}
        .m-pb90{ padding-bottom:90px !important}
        .m-pb100{ padding-bottom:100px !important}
        .m-pb110{ padding-bottom:110px !important}
        .m-pb120{ padding-bottom:120px !important}
        .m-pb130{ padding-bottom:130px !important}
        .m-pb140{ padding-bottom:140px !important}
        .m-pb150{ padding-bottom:150px !important}
        .m-pt0{ padding-top:0px !important }
        .m-pt10{ padding-top:10px !important }
        .m-pt20{ padding-top:20px !important }
        .m-pt30{ padding-top:30px !important }
        .m-pt40{ padding-top:40px !important }
        .m-pt50{ padding-top:50px !important }
        .m-pt60{ padding-top:60px !important }
        .m-pt70{ padding-top:70px !important }
        .m-pt80{ padding-top:80px !important }
        .m-pt90{ padding-top:90px !important }
        .m-pt100{ padding-top:100px !important }
        .m-pt110{ padding-top:110px !important }
        .m-pt120{ padding-top:120px !important }
        .m-pt130{ padding-top:130px !important}
        .m-pt140{ padding-top:140px !important }
        
        .p-v{
            display: none !important;
        }
        .p-i-v{
            display: none;
        }
        .m-v{
            display: block;
        }
        .m-v-f{
            display: flex;

        }
        img.m-v{
            display: inline-block;
        }

    }

@media (min-width: 769px) {
    .nav {
        /*position: absolute;*/
        /*left: 50%;*/
        /*transform: translateX(-50%);*/
        display: flex;
        align-items: center;
    }
    
    .btn-login {
        /*position: absolute;*/
        /*right: 0;*/
        /*top: 50%;*/
        /*transform: translateY(-50%);*/
    }
}

/* 사용자 메뉴 스타일 */
.user-menu {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.user-name {
    color: #7AF296 !important;
    padding: 8px 24px;
    border: 1px solid #7AF296;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.user-name:hover {
    background: rgba(122, 242, 150, 0.1);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #7AF296;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-dropdown a:hover {
    background: rgba(122, 242, 150, 0.1);
    color: #7AF296 !important;
}

/* 모바일에서 사용자 메뉴 */
@media (max-width: 991px) {
    .user-menu {
        position: fixed;
        right: 80px;
        top: 20px;
        z-index: 1002;
    }
    
    .user-dropdown {
        position: fixed;
        right: 80px;
        top: 60px;
    }
}


