@charset "utf-8";
/* 팝업 기본 숨김 */
.soon-popup {position: fixed;top: 50%;left: 50%;transform: translate(-50%, -50%) scale(0.8);opacity: 0;pointer-events: none;transition: all 0.3s ease;z-index: 9999; cursor:pointer;}
/* 팝업 내용 */
.popup-content {background: #fff;color: #111827;font-weight: 600;font-size: 1.125rem;border-radius: 0.7rem;padding: 60px;box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);transform: scale(0.95);min-width:280px;animation: bounceIn 0.4s ease;}
.popup-content {text-align:center;}
.popup-content strong{display:block; font-size:30px; color:#222; padding-bottom:30px;}
.popup-content b{display:block; }
.popup-content i{display:block; color:#c6d2ff; font-size:77px;}
.popup-content small{display:block; font-size:12px; color:#999;}
.popup-content a{display:inline-block; padding:8px 30px; margin-top:30px; background:#4f46e5; border-radius:4px; color:#fff; font-size:14px; cursor:pointer;}
/* 팝업 활성화 상태 */
.soon-popup.show {opacity: 1;transform: translate(-50%, -50%) scale(1);pointer-events: auto;}
/* 튕김 애니메이션 */
@keyframes bounceIn {0% { transform: scale(0.7); opacity: 0; }60%{ transform: scale(1.1); opacity: 1; }100% { transform: scale(1); }}