.watlum-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(239, 235, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s ease-out;
}

.watlum-modal-content {
    background-color: white;
    padding: 32px 24px;
    width: 90%;
    max-width: 460px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.watlum-modal-hint {
    color: #666;
    font-size: 12px;
    margin-top: 16px;
    opacity: 0.7;
}

.watlum-modal-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.watlum-modal-message {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.watlum-modal.show {
    display: flex;
    background-color: rgba(239, 235, 255, 0.95);
}

.watlum-modal.show .watlum-modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
