<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('common.css');
@import url('main.css');


/* 硫붿씤 �앹뾽 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

/* �ㅻ쾭�덉씠�� �ㅽ겕濡ㅻ컮留� �④린湲� */
.popup-overlay::-webkit-scrollbar {
    display: none;
}

.popup-content {
    position: relative;
    max-width: 80%;
    max-height: 90vh;
    overflow-y: auto;
    background-color: transparent; /* 諛곌꼍�� �쒓굅 */
    border: none; /* �뚮몢由� �쒓굅 */
    box-shadow: none; /* 洹몃┝�� �쒓굅 */
}

.popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* �ㅽ겕濡ㅻ컮 �ㅽ��쇰쭅 */
.popup-content::-webkit-scrollbar {
    width: 8px;
    display: block;
}

.popup-content::-webkit-scrollbar-track {
    background: rgba(35, 234, 228, 0.1);
    border-radius: 4px;
    margin: 50px 0;
}

.popup-content::-webkit-scrollbar-thumb {
    background: #23eae4;
    border-radius: 4px;
}

.popup-content::-webkit-scrollbar-thumb:hover {
    background: #1bc7c2;
}

/* 蹂몃Ц �ㅽ겕濡� 諛⑹�瑜� �꾪븳 �대옒�� */
body.popup-open {
    overflow: hidden;
}

.popup-actions {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}

.dont-show-again, .close-popup {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    margin-top:10px;
    background-color: #222;
    border-radius: 50%;
}
.dont-show-again .material-icons {
    display:inline-block;
    margin-left: 20px;
}
.popup-image-container {
    position: relative;
    width: 100%;
}

.popup-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.main-popup-button {
    position: absolute;
    bottom: calc(8% - 50px);
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: #23EAE4;
    color: #1b1b1b;
    text-align: center;
    padding: 17px 16px;
    border-radius: 4px;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    width: 520px;
    max-width: 85%;
}

.close-popup {
    position: absolute;
    top:20px;
    right:40px;
    padding: 6px;
}

/* 硫붿씤 �앹뾽 �� */

/*�⑷꺽�� 議고쉶*/

.sing-tit{
    font-size:32px;
    background: linear-gradient(to right, #23EAE4, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display:inline-block;
    margin-bottom: 12px;
}
.main-title2{
    margin-top: 40px;
}

label{
    display:block;
    margin-bottom:14px;
}

.passsearchButton {
    width: 320px;
    height: 65px;
    font-size: 20px;
    background-color: #23EAE4;
    color: #1b1b1b;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}
.serach-popup-button {
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: #23EAE4;
    color: #1b1b1b;
    text-align: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-size:20px;
    font-weight: bold;
    text-decoration: none;
    width: 320px;
    max-width:85%; /* Adjust as needed */
}

.info-email {
    width: 100%;
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size:14px;
}
.popup-actions2 {
    position: absolute;
    top: 86%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    width:80%;
    margin:0 auto;
    gap: 15px;
    justify-content: space-between;
    margin-top: 20px;
}

.search-popup-button, .search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px;
    font-size: 18px;
    background-color: #23EAE4;
    color: #1b1b1b;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

.search-close {
    background-color: #333;
    color: #fff;
}

/* 紐⑤컮�� �ъ씠利� (�붾㈃ �덈퉬媛� 480px �댄븯�� ��) */
@media screen and (max-width: 480px) {
    .popup-content {
        max-width: 90%;
        position: relative;
    }

    .main-popup-button {
        bottom: calc(8% - 40px);
        padding: 10px 20px;
        font-size: 16px;
        width: 80%;
        max-width: 280px;
    }

    .close-popup {
        position: absolute;
        top: 10px;
        right: 14px;
        padding: 4px;
        font-size: 12px;
    }

    .sing-tit{
        font-size:24px;
        margin-bottom: 6px;
    }

    .passsearchButton {
        width: 100%;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .info-email {
        font-size:11px;
    }

    .popup-actions2 {
        top: 83%;
    }

    .search-popup-button, .search-close {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        padding: 8px;
        font-size: 14px;
        font-weight: bold;
        background-color: #23EAE4;
        color: #1b1b1b;
        border-radius: 4px;
        font-weight: bold;
        text-decoration: none;
    }

    .search-close {
        background-color: #333;
        color: #fff;
    }
}</pre></body></html>