.popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(91,91,91,.5);display:flex;justify-content:center;align-items:center;z-index:9999}.popup-container{position:relative;background:linear-gradient(180deg,#f0e2d8 50%,#303642 70%);border-radius:8px;padding:20px;max-width:500px;width:90%;text-align:center;box-shadow:0 4px 20px rgba(0,0,0,.25);animation:popup-fade-in .5s ease-in-out}.popup-close{position:absolute;top:10px;right:10px;background:#fff;border:none;font-size:18px;color:#000;cursor:pointer;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center}.popup-close:hover{background:#d6d6d6;color:#000}.popup-container h2{color:#fff;margin-bottom:10px;font-size:1.5rem}.popup-container p{color:#f0e2d8;margin-bottom:20px;font-size:1rem}.popup-action{display:inline-block;padding:10px 20px;background-color:#25ade5;color:#fff;text-align:center;border:none;border-radius:5px;cursor:pointer;margin-top:10px}.popup-action:hover{background:#f0e2d8;color:#303642}@keyframes popup-fade-in{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}