/* Overlay */
.jam-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Card */
.jam-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: jamFadeUp 0.35s ease;
    position: relative;
}

/* Close */
.jam-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

/* Header */
.jam-modal-header {
    background: linear-gradient(135deg, #1e30f3, #6610f2);
    color: #ffffff;
    padding: 30px 20px 25px;
    text-align: center;
}

.jam-modal-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.jam-modal-header h3 {
    margin: 0;
    font-weight: 700;
}

/* Body */
.jam-modal-body {
    padding: 25px 25px 10px;
    text-align: center;
    color: #6c757d;
    font-size: 16px;
}

.jam-modal-body strong {
    color: #1e30f3;
}

/* Footer */
.jam-modal-footer {
    padding: 20px 25px 30px;
}

/* Animation */
@keyframes jamFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
