.smartum-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.popup-content {
    position: relative;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 400px;
    text-align: center;
    animation: popup-zoom 0.3s ease;
}

.popup-content h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    color: #6528e0;
    margin-bottom: 24px;
}

.popup-content p.fireworks{
    font-size: 52px;
    margin: 0;
    text-align: left;
    padding-left: 64px;
    padding-bottom: 12px;
}
.popup-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #333;
}

.popup-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #b200e4, #6528e0);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(101, 40, 224, 0.3);
    transition: transform 0.2s ease;
}

.popup-btn:hover {
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
}

@keyframes popup-zoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
