/* OVERLAY */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* BOX */
.popup-box {
    background: linear-gradient(145deg, #111, #1b1b1b);
    border-radius: 16px;
    padding: 45px 40px;
    max-width: 460px;
    width: 90%;
    color: #fff;
    text-align: center;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: popupIn .45s cubic-bezier(.16,1,.3,1);
}

/* ICON */
.popup-icon {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg,#ffffff,#d1d1d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TITLE */
.popup-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* TEXT */
.popup-text {
    font-size: 16px;
    line-height: 1.6;
    color: #bfbfbf;
    margin-bottom: 30px;
}

/* BUTTON */
.close-btn {
    background: linear-gradient(135deg,#ffffff,#d1d1d1);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    color: rgb(31, 31, 31);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.121);
}

/* ANIMATION */
@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .popup-box {
        padding: 35px 25px;
    }

    .popup-title {
        font-size: 20px;
    }
}
