<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* �앹뾽 湲곕낯 �ㅽ��� */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 80%;  /* �붾㈃ �덈퉬�� 80% �쒗븳 */
    width: auto;     /* �댁슜�� 留욊쾶 議곗젅 */
}

/* �대�吏� 諛섏쓳�� �ㅽ��� (蹂�寃쎈맂 遺�遺�) */
/* �대�吏� �믪씠 �쒗븳 媛뺥솕 */
.ad-image {
    max-width: 100%;
    max-height: 50vh;  /* �붾㈃ �믪씠�� 50%濡� 異뺤냼 (湲곗〈 70vh) */
    height: auto;
    border-radius: 5px;
    object-fit: contain;  /* �대�吏� 鍮꾩쑉 �좎� */
}

/* 紐⑤컮�� �몃줈 �붾㈃ ���� */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        padding: 10px;
    }
    .ad-image {
        max-height: 40vh;  /* 紐⑤컮�쇱뿉�� �� 異뺤냼 */
    }
}

/* 踰꾪듉 �ㅽ��� (蹂�寃� �놁쓬) */
.popup-buttons button {
    padding: 10px 15px;  /* 踰꾪듉 �ш린 �뺣� */
    font-size: 14px;     /* �고듃 �ъ씠利� 議곗젙 */
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#close-day {
    background: #4CAF50;
    color: white;
}

#close-now {
    background: #f44336;
    color: white;
}</pre></body></html>