.popup-container{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;pointer-events:none;z-index:9999;transition:opacity .3s ease;background-color:rgba(0,0,0,.6)}.popup-container.show{opacity:1;pointer-events:auto}.popup-container.hide{opacity:0}.popup-box{background-color:#fff;padding:25px 20px;width:90%;max-width:400px;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.25);transform:scale(.9);opacity:0;animation:popup-show .3s forwards;text-align:center}@media (max-width:480px){.popup-box{padding:20px 15px}.popup-title{font-size:18px}.popup-button,.popup-text{font-size:14px}.popup-button{padding:10px}}@keyframes popup-show{to{transform:scale(1);opacity:1}}.popup-title{margin:0 0 12px;font-size:22px;font-weight:700;color:#333}.popup-text{font-size:15px;margin-bottom:20px;color:#555;line-height:1.4}.popup-button{width:100%;background-color:#a5e4d2;border:none;padding:12px;cursor:pointer;font-size:15px;font-weight:500;border-radius:6px;transition:background-color .3s ease}.popup-button:hover{background-color:#f9b7a1}